Skip to content

Commit 8e6e0cd

Browse files
Unskip TestSVD for windows
1 parent 3ad8ba5 commit 8e6e0cd

File tree

1 file changed

+0
-15
lines changed

1 file changed

+0
-15
lines changed

dpnp/tests/third_party/cupy/linalg_tests/test_decomposition.py

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)