Skip to content

Temporary mute all SYCL tests for OpenCL GPU device due to known issue #1747

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Mar 14, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions tests/test_sycl_queue.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down Expand Up @@ -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)

Expand Down