Skip to content

Commit 37566f0

Browse files
author
Diptorup Deb
committed
Temp 4
1 parent bdd63d9 commit 37566f0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

numba_dpex/tests/experimental/kernel_api_overloads/spv_overloads/test_local_accessors.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@
2525
@dpex_exp.kernel
2626
def _kernel(nd_item: NdItem, a, slm):
2727
i = nd_item.get_global_linear_id()
28-
# j = nd_item.get_local_linear_id()
29-
j = i
28+
j = nd_item.get_local_linear_id()
29+
# j = i
3030
slm[j] = 0
3131
group_barrier(nd_item.get_group(), MemoryScope.WORK_GROUP)
3232

0 commit comments

Comments
 (0)