Skip to content

Commit 44ac5cc

Browse files
authored
Temporary mute all SYCL tests for OpenCL GPU device due to known issue (#1747)
1 parent e581830 commit 44ac5cc

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/test_sycl_queue.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,9 @@
3737
pass
3838
elif device.device_type.name not in list_of_device_type_str:
3939
pass
40+
elif device.backend.name in "opencl" and device.is_gpu:
41+
# due to reproted crash on Windows: CMPLRLLVM-55640
42+
pass
4043
else:
4144
valid_devices.append(device)
4245

@@ -474,9 +477,6 @@ def test_meshgrid(device_x, device_y):
474477
ids=[device.filter_string for device in valid_devices],
475478
)
476479
def test_1in_1out(func, data, device):
477-
if func in ("std", "var") and "opencl:gpu" in device.filter_string:
478-
pytest.skip("due to reproted crash on Windows: CMPLRLLVM-55640")
479-
480480
x = dpnp.array(data, device=device)
481481
result = getattr(dpnp, func)(x)
482482

0 commit comments

Comments
 (0)