From 0b89830508c519e2ed3fae91c581356fcb513ed8 Mon Sep 17 00:00:00 2001 From: Anton Volkov Date: Wed, 16 Jul 2025 14:45:35 +0200 Subject: [PATCH] Remove temporary w/a obersing on Windows with in_order SYCL queue --- dpnp/tests/test_sycl_queue.py | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/dpnp/tests/test_sycl_queue.py b/dpnp/tests/test_sycl_queue.py index 0316c8a7510..31dfb74f2cf 100644 --- a/dpnp/tests/test_sycl_queue.py +++ b/dpnp/tests/test_sycl_queue.py @@ -772,10 +772,7 @@ def test_random(func, args, kwargs, device, usm_type): assert device == res_array.sycl_device assert usm_type == res_array.usm_type - # SAT-7414: w/a to avoid crash on Windows (observing on LNL and ARL) - # sycl_queue = dpctl.SyclQueue(device, property="in_order") - # TODO: remove the w/a once resolved - sycl_queue = dpctl.SyclQueue(device, property="enable_profiling") + sycl_queue = dpctl.SyclQueue(device, property="in_order") kwargs["device"] = None kwargs["sycl_queue"] = sycl_queue @@ -814,10 +811,7 @@ def test_random_state(func, args, kwargs, device, usm_type): assert device == res_array.sycl_device assert usm_type == res_array.usm_type - # SAT-7414: w/a to avoid crash on Windows (observing on LNL and ARL) - # sycl_queue = dpctl.SyclQueue(device, property="in_order") - # TODO: remove the w/a once resolved - sycl_queue = dpctl.SyclQueue(device, property="enable_profiling") + sycl_queue = dpctl.SyclQueue(device, property="in_order") # test with in-order SYCL queue per a device and passed as argument seed = (147, 56, 896) if device.is_cpu else 987654