File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -94,7 +94,7 @@ def unique_values(x: dpt.usm_ndarray) -> dpt.usm_ndarray:
94
94
)
95
95
host_tasks .append (ht_ev )
96
96
ht_ev , sort_ev = _sort_ascending (
97
- src = fx ,
97
+ src = tmp ,
98
98
trailing_dims_to_sort = 1 ,
99
99
dst = s ,
100
100
sycl_queue = exec_q ,
@@ -181,7 +181,7 @@ def unique_counts(x: dpt.usm_ndarray) -> UniqueCountsResult:
181
181
)
182
182
host_tasks .append (ht_ev )
183
183
ht_ev , sort_ev = _sort_ascending (
184
- src = fx ,
184
+ src = tmp ,
185
185
dst = s ,
186
186
trailing_dims_to_sort = 1 ,
187
187
sycl_queue = exec_q ,
@@ -301,7 +301,7 @@ def unique_inverse(x):
301
301
)
302
302
host_tasks .append (ht_ev )
303
303
ht_ev , sort_ev = _argsort_ascending (
304
- src = fx ,
304
+ src = tmp ,
305
305
trailing_dims_to_sort = 1 ,
306
306
dst = sorting_ids ,
307
307
sycl_queue = exec_q ,
@@ -462,7 +462,7 @@ def unique_all(x: dpt.usm_ndarray) -> UniqueAllResult:
462
462
)
463
463
host_tasks .append (ht_ev )
464
464
ht_ev , sort_ev = _argsort_ascending (
465
- src = fx ,
465
+ src = tmp ,
466
466
trailing_dims_to_sort = 1 ,
467
467
dst = sorting_ids ,
468
468
sycl_queue = exec_q ,
You can’t perform that action at this time.
0 commit comments