@@ -772,10 +772,7 @@ def test_random(func, args, kwargs, device, usm_type):
772
772
assert device == res_array .sycl_device
773
773
assert usm_type == res_array .usm_type
774
774
775
- # SAT-7414: w/a to avoid crash on Windows (observing on LNL and ARL)
776
- # sycl_queue = dpctl.SyclQueue(device, property="in_order")
777
- # TODO: remove the w/a once resolved
778
- sycl_queue = dpctl .SyclQueue (device , property = "enable_profiling" )
775
+ sycl_queue = dpctl .SyclQueue (device , property = "in_order" )
779
776
kwargs ["device" ] = None
780
777
kwargs ["sycl_queue" ] = sycl_queue
781
778
@@ -814,10 +811,7 @@ def test_random_state(func, args, kwargs, device, usm_type):
814
811
assert device == res_array .sycl_device
815
812
assert usm_type == res_array .usm_type
816
813
817
- # SAT-7414: w/a to avoid crash on Windows (observing on LNL and ARL)
818
- # sycl_queue = dpctl.SyclQueue(device, property="in_order")
819
- # TODO: remove the w/a once resolved
820
- sycl_queue = dpctl .SyclQueue (device , property = "enable_profiling" )
814
+ sycl_queue = dpctl .SyclQueue (device , property = "in_order" )
821
815
822
816
# test with in-order SYCL queue per a device and passed as argument
823
817
seed = (147 , 56 , 896 ) if device .is_cpu else 987654
0 commit comments