diff --git a/CHANGELOG.md b/CHANGELOG.md index 15d2ce7e69d4..1eab13988e8f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -121,6 +121,7 @@ In addition, this release completes implementation of `dpnp.fft` module and adds * Resolved a possible race condition in `dpnp.inv` [#1940](https://github.com/IntelPython/dpnp/pull/1940) * Resolved an issue with failing tests for `dpnp.append` when running on a device without fp64 support [#2034](https://github.com/IntelPython/dpnp/pull/2034) * Resolved an issue with input array of `usm_ndarray` passed into `dpnp.ix_` [#2047](https://github.com/IntelPython/dpnp/pull/2047) +* Added a workaround to prevent crash in tests on Windows in internal CI/CD (when running on either Lunar Lake or Arrow Lake) [#2062](https://github.com/IntelPython/dpnp/pull/2062) ## [0.15.0] - 05/25/2024 diff --git a/tests/test_sycl_queue.py b/tests/test_sycl_queue.py index c598d45c61e4..e1ae1d8e65dc 100644 --- a/tests/test_sycl_queue.py +++ b/tests/test_sycl_queue.py @@ -1032,7 +1032,10 @@ def test_random(func, kwargs, device, usm_type): assert device == res_array.sycl_device assert usm_type == res_array.usm_type - sycl_queue = dpctl.SyclQueue(device, property="in_order") + # 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") kwargs["device"] = None kwargs["sycl_queue"] = sycl_queue @@ -1075,7 +1078,10 @@ def test_random_state(func, args, kwargs, device, usm_type): assert device == res_array.sycl_device assert usm_type == res_array.usm_type - sycl_queue = dpctl.SyclQueue(device, property="in_order") + # 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") # test with in-order SYCL queue per a device and passed as argument seed = (147, 56, 896) if device.is_cpu else 987654