Skip to content

Commit 0ca0538

Browse files
committed
Get rid of 'has_aspect_host' property in tests
1 parent 5139df1 commit 0ca0538

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

tests/test_sycl_queue.py

+1-3
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,8 @@
1717
"cpu",
1818
]
1919

20-
available_devices = [d for d in dpctl.get_devices() if not d.has_aspect_host]
21-
2220
valid_devices = []
23-
for device in available_devices:
21+
for device in dpctl.get_devices():
2422
if device.default_selector_score < 0:
2523
pass
2624
elif device.backend.name not in list_of_backend_str:

0 commit comments

Comments
 (0)