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 e581830 commit 44ac5ccCopy full SHA for 44ac5cc
tests/test_sycl_queue.py
@@ -37,6 +37,9 @@
37
pass
38
elif device.device_type.name not in list_of_device_type_str:
39
40
+ elif device.backend.name in "opencl" and device.is_gpu:
41
+ # due to reproted crash on Windows: CMPLRLLVM-55640
42
+ pass
43
else:
44
valid_devices.append(device)
45
@@ -474,9 +477,6 @@ def test_meshgrid(device_x, device_y):
474
477
ids=[device.filter_string for device in valid_devices],
475
478
)
476
479
def test_1in_1out(func, data, device):
- if func in ("std", "var") and "opencl:gpu" in device.filter_string:
- pytest.skip("due to reproted crash on Windows: CMPLRLLVM-55640")
-
480
x = dpnp.array(data, device=device)
481
result = getattr(dpnp, func)(x)
482
0 commit comments