Skip to content

Commit 1d3453e

Browse files
committed
Address review comments on test_submit_local_accessor_arg
Also slips in a fix to the shape of the local_accessor
1 parent b5887df commit 1d3453e

File tree

1 file changed

+3
-7
lines changed

1 file changed

+3
-7
lines changed

dpctl/tests/test_sycl_kernel_submit.py

+3-7
Original file line numberDiff line numberDiff line change
@@ -308,13 +308,9 @@ def test_submit_local_accessor_arg():
308308
try:
309309
e = q.submit(
310310
krn,
311-
[x.usm_data, dpctl.LocalAccessor("i8", (lws, 1, 1))],
312-
[
313-
gws,
314-
],
315-
[
316-
lws,
317-
],
311+
[x.usm_data, dpctl.LocalAccessor("i8", (lws,))],
312+
[gws],
313+
[lws],
318314
)
319315
e.wait()
320316
except dpctl._sycl_queue.SyclKernelSubmitError:

0 commit comments

Comments
 (0)