From fc225f925678dccf78337470ba92360fde677b5e Mon Sep 17 00:00:00 2001 From: Anton Volkov Date: Thu, 14 Mar 2024 16:04:24 +0100 Subject: [PATCH] Temporary mute all SYCL tests for OpenCL GPU device due to known issue --- tests/test_sycl_queue.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/test_sycl_queue.py b/tests/test_sycl_queue.py index 7dc49af820a3..f82e82f98d41 100644 --- a/tests/test_sycl_queue.py +++ b/tests/test_sycl_queue.py @@ -37,6 +37,9 @@ pass elif device.device_type.name not in list_of_device_type_str: pass + elif device.backend.name in "opencl" and device.is_gpu: + # due to reproted crash on Windows: CMPLRLLVM-55640 + pass else: valid_devices.append(device) @@ -474,9 +477,6 @@ 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)