Skip to content

Commit 987af9e

Browse files
Change name of _tensor_impl function in roll implementation
1 parent 558765f commit 987af9e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dpctl/tensor/_manipulation_functions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -429,7 +429,7 @@ def roll(X, shift, axis=None):
429429
res = dpt.empty(
430430
X.shape, dtype=X.dtype, usm_type=X.usm_type, sycl_queue=X.sycl_queue
431431
)
432-
hev, _ = ti._copy_usm_ndarray_for_roll(
432+
hev, _ = ti._copy_usm_ndarray_for_roll_1d(
433433
src=X, dst=res, shift=shift, sycl_queue=X.sycl_queue
434434
)
435435
hev.wait()

0 commit comments

Comments
 (0)