We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 10db385 commit 1b713d2Copy full SHA for 1b713d2
dpctl/tests/test_sycl_device_factory.py
@@ -31,7 +31,7 @@
31
]
32
33
argument_list_2 = [
34
- ("host", "host_device"),
+ ("host", "host"),
35
("level_zero", "gpu"),
36
("opencl", "gpu"),
37
("opencl", "cpu"),
@@ -44,7 +44,7 @@
44
45
46
list_of_device_type_str = [
47
- "host_device",
+ "host",
48
"gpu",
49
"cpu",
50
@@ -55,7 +55,7 @@ def string_to_device_type(dty_str):
55
return dty.accelerator
56
elif dty_str == "cpu":
57
return dty.cpu
58
- elif dty_str == "host_device":
+ elif dty_str == "host":
59
return dty.host_device
60
elif dty_str == "gpu":
61
return dty.gpu
0 commit comments