diff --git a/tests/test_sycl_queue.py b/tests/test_sycl_queue.py index 4b0d21eae40a..7a7bcd53e0be 100644 --- a/tests/test_sycl_queue.py +++ b/tests/test_sycl_queue.py @@ -417,6 +417,9 @@ def test_meshgrid(device_x, device_y): ids=[device.filter_string for device in valid_devices], ) 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") + x = dpnp.array(data, device=device) result = getattr(dpnp, func)(x)