@@ -280,12 +280,6 @@ def test_svd_rank2_empty_array_compute_uv_false(self, xp):
280280 array , full_matrices = self .full_matrices , compute_uv = False
281281 )
282282
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- )
289283 @_condition .repeat (3 , 10 )
290284 def test_svd_rank3 (self ):
291285 self .check_usv ((2 , 3 , 4 ))
@@ -295,9 +289,6 @@ def test_svd_rank3(self):
295289 self .check_usv ((2 , 4 , 3 ))
296290 self .check_usv ((2 , 32 , 32 ))
297291
298- @pytest .mark .skipif (
299- is_cpu_device () and is_win_platform (), reason = "SAT-7145"
300- )
301292 @_condition .repeat (3 , 10 )
302293 def test_svd_rank3_loop (self ):
303294 # 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):
345336 array , full_matrices = self .full_matrices , compute_uv = False
346337 )
347338
348- @pytest .mark .skipif (
349- is_cpu_device () and is_win_platform (), reason = "SAT-7145"
350- )
351339 @_condition .repeat (3 , 10 )
352340 def test_svd_rank4 (self ):
353341 self .check_usv ((2 , 2 , 3 , 4 ))
@@ -357,9 +345,6 @@ def test_svd_rank4(self):
357345 self .check_usv ((2 , 2 , 4 , 3 ))
358346 self .check_usv ((2 , 2 , 32 , 32 ))
359347
360- @pytest .mark .skipif (
361- is_cpu_device () and is_win_platform (), reason = "SAT-7145"
362- )
363348 @_condition .repeat (3 , 10 )
364349 def test_svd_rank4_loop (self ):
365350 # This tests the loop-based batched gesvd on CUDA (_gesvd_batched)
0 commit comments