Skip to content

Commit 6769469

Browse files
Add cuda to list_of_backend_str in test_sycl_queue.py
1 parent c83c062 commit 6769469

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

dpnp/tests/test_sycl_queue.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
)
2121

2222
list_of_backend_str = [
23+
"cuda",
2324
"host",
2425
"level_zero",
2526
"opencl",
@@ -39,9 +40,6 @@
3940
for device in available_devices:
4041
if device.default_selector_score < 0:
4142
pass
42-
elif device.backend.name in "cuda":
43-
valid_devices = [device]
44-
break
4543
elif device.backend.name not in list_of_backend_str:
4644
pass
4745
elif device.device_type.name not in list_of_device_type_str:

0 commit comments

Comments
 (0)