From 0834c45ef7d2af37ff6d7f4f5ab7a6d1b780763b Mon Sep 17 00:00:00 2001 From: Anton Volkov Date: Tue, 30 Jan 2024 17:12:12 +0100 Subject: [PATCH] Temorary mute tests due to known issue with OpenCL GPU --- tests/test_sycl_queue.py | 3 +++ 1 file changed, 3 insertions(+) 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)