@@ -460,10 +460,6 @@ def test_det_singular_matrix(self, matrix):
460460
461461 assert_allclose (result , expected )
462462
463- # TODO: remove skipif when MKLD-13852 is resolved
464- # _getrf_batch does not raise an error with singular matrices.
465- # Skip running on cpu because dpnp uses _getrf_batch only on cpu.
466- @pytest .mark .skipif (is_cpu_device (), reason = "MKLD-13852" )
467463 def test_det_singular_matrix_3D (self ):
468464 a_np = numpy .array (
469465 [[[1 , 2 ], [3 , 4 ]], [[1 , 2 ], [1 , 2 ]], [[1 , 3 ], [3 , 1 ]]]
@@ -1761,9 +1757,6 @@ def test_inv_singular_matrix(self, matrix):
17611757 assert_raises (numpy .linalg .LinAlgError , numpy .linalg .inv , a_np )
17621758 assert_raises (dpnp .linalg .LinAlgError , dpnp .linalg .inv , a_dp )
17631759
1764- # TODO: remove skip when MKLD-13852 is resolved
1765- # _getrf_batch does not raise an error with singular matrices.
1766- @pytest .mark .skip ("MKLD-13852" )
17671760 def test_inv_singular_matrix_3D (self ):
17681761 a_np = numpy .array (
17691762 [[[1 , 2 ], [3 , 4 ]], [[1 , 2 ], [1 , 2 ]], [[1 , 3 ], [3 , 1 ]]]
@@ -2815,10 +2808,6 @@ def test_slogdet_singular_matrix(self, matrix):
28152808 assert_allclose (sign_result , sign_expected )
28162809 assert_allclose (logdet_result , logdet_expected )
28172810
2818- # TODO: remove skipif when MKLD-13852 is resolved
2819- # _getrf_batch does not raise an error with singular matrices.
2820- # Skip running on cpu because dpnp uses _getrf_batch only on cpu.
2821- @pytest .mark .skipif (is_cpu_device (), reason = "MKLD-13852" )
28222811 def test_slogdet_singular_matrix_3D (self ):
28232812 a_np = numpy .array (
28242813 [[[1 , 2 ], [3 , 4 ]], [[1 , 2 ], [1 , 2 ]], [[1 , 3 ], [3 , 1 ]]]
0 commit comments