Skip to content

Commit bbb46bd

Browse files
Remove pytest skip for Windows in TestSVD
1 parent 4fb8d6a commit bbb46bd

File tree

1 file changed

+0
-15
lines changed

1 file changed

+0
-15
lines changed

tests/third_party/cupy/linalg_tests/test_decomposition.py

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -279,12 +279,6 @@ def test_svd_rank2_empty_array_compute_uv_false(self, xp):
279279
array, full_matrices=self.full_matrices, compute_uv=False
280280
)
281281

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-
)
288282
@_condition.repeat(3, 10)
289283
def test_svd_rank3(self):
290284
self.check_usv((2, 3, 4))
@@ -294,9 +288,6 @@ def test_svd_rank3(self):
294288
self.check_usv((2, 4, 3))
295289
self.check_usv((2, 32, 32))
296290

297-
@pytest.mark.skipif(
298-
is_cpu_device() and is_win_platform(), reason="SAT-7145"
299-
)
300291
@_condition.repeat(3, 10)
301292
def test_svd_rank3_loop(self):
302293
# 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):
344335
array, full_matrices=self.full_matrices, compute_uv=False
345336
)
346337

347-
@pytest.mark.skipif(
348-
is_cpu_device() and is_win_platform(), reason="SAT-7145"
349-
)
350338
@_condition.repeat(3, 10)
351339
def test_svd_rank4(self):
352340
self.check_usv((2, 2, 3, 4))
@@ -356,9 +344,6 @@ def test_svd_rank4(self):
356344
self.check_usv((2, 2, 4, 3))
357345
self.check_usv((2, 2, 32, 32))
358346

359-
@pytest.mark.skipif(
360-
is_cpu_device() and is_win_platform(), reason="SAT-7145"
361-
)
362347
@_condition.repeat(3, 10)
363348
def test_svd_rank4_loop(self):
364349
# This tests the loop-based batched gesvd on CUDA (_gesvd_batched)

0 commit comments

Comments
 (0)