Skip to content

Commit 94ad65b

Browse files
authored
Temorary mute tests due to known issue with OpenCL GPU (#1672)
1 parent 7a56304 commit 94ad65b

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

tests/test_sycl_queue.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -417,6 +417,9 @@ def test_meshgrid(device_x, device_y):
417417
ids=[device.filter_string for device in valid_devices],
418418
)
419419
def test_1in_1out(func, data, device):
420+
if func in ("std", "var") and "opencl:gpu" in device.filter_string:
421+
pytest.skip("due to reproted crash on Windows: CMPLRLLVM-55640")
422+
420423
x = dpnp.array(data, device=device)
421424
result = getattr(dpnp, func)(x)
422425

0 commit comments

Comments
 (0)