Skip to content

Commit

Permalink
Update kp_sampler_skip.cpp: fix dst_ptr type to uint32_t
Browse files Browse the repository at this point in the history
  • Loading branch information
vlkale authored Jan 13, 2024
1 parent eec50b5 commit c8abfe2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion common/kokkos-sampler/kp_sampler_skip.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -335,7 +335,7 @@ void kokkosp_begin_deep_copy(SpaceHandle dst_handle,
invoke_ktools_fence(0);
}
(*beginDeepCopyCallee)(dst_handle.name, dst_name, dst_ptr, src_handle.name, src_name, src_ptr,
(unsigned long long)(size));
(uint64_t) size);
}
}
}
Expand Down

0 comments on commit c8abfe2

Please sign in to comment.