@@ -280,12 +280,6 @@ def test_svd_rank2_empty_array_compute_uv_false(self, xp):
280
280
array , full_matrices = self .full_matrices , compute_uv = False
281
281
)
282
282
283
- # The issue was expected to be resolved once CMPLRLLVM-53771 is available,
284
- # which has to be included in DPC++ 2024.1.0, but problem still exists
285
- # on Windows
286
- @pytest .mark .skipif (
287
- is_cpu_device () and is_win_platform (), reason = "SAT-7145"
288
- )
289
283
@_condition .repeat (3 , 10 )
290
284
def test_svd_rank3 (self ):
291
285
self .check_usv ((2 , 3 , 4 ))
@@ -295,9 +289,6 @@ def test_svd_rank3(self):
295
289
self .check_usv ((2 , 4 , 3 ))
296
290
self .check_usv ((2 , 32 , 32 ))
297
291
298
- @pytest .mark .skipif (
299
- is_cpu_device () and is_win_platform (), reason = "SAT-7145"
300
- )
301
292
@_condition .repeat (3 , 10 )
302
293
def test_svd_rank3_loop (self ):
303
294
# This tests the loop-based batched gesvd on CUDA (_gesvd_batched)
@@ -345,9 +336,6 @@ def test_svd_rank3_empty_array_compute_uv_false2(self, xp):
345
336
array , full_matrices = self .full_matrices , compute_uv = False
346
337
)
347
338
348
- @pytest .mark .skipif (
349
- is_cpu_device () and is_win_platform (), reason = "SAT-7145"
350
- )
351
339
@_condition .repeat (3 , 10 )
352
340
def test_svd_rank4 (self ):
353
341
self .check_usv ((2 , 2 , 3 , 4 ))
@@ -357,9 +345,6 @@ def test_svd_rank4(self):
357
345
self .check_usv ((2 , 2 , 4 , 3 ))
358
346
self .check_usv ((2 , 2 , 32 , 32 ))
359
347
360
- @pytest .mark .skipif (
361
- is_cpu_device () and is_win_platform (), reason = "SAT-7145"
362
- )
363
348
@_condition .repeat (3 , 10 )
364
349
def test_svd_rank4_loop (self ):
365
350
# This tests the loop-based batched gesvd on CUDA (_gesvd_batched)
0 commit comments