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