Skip to content

Commit

Permalink
Fixed missed uses of size_t
Browse files Browse the repository at this point in the history
  • Loading branch information
ndgrigorian committed Dec 30, 2024
1 parent e20b7d8 commit 753226a
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ class trunc_contig_kernel;

template <typename argTy>
sycl::event trunc_contig_impl(sycl::queue &exec_q,
size_t nelems,
std::size_t nelems,
const char *arg_p,
char *res_p,
const std::vector<sycl::event> &depends = {})
Expand Down Expand Up @@ -179,7 +179,7 @@ template <typename T1, typename T2, typename T3> class trunc_strided_kernel;
template <typename argTy>
sycl::event
trunc_strided_impl(sycl::queue &exec_q,
size_t nelems,
std::size_t nelems,
int nd,
const ssize_t *shape_and_strides,
const char *arg_p,
Expand Down

0 comments on commit 753226a

Please sign in to comment.