2323 get_float_complex_dtypes ,
2424 get_integer_float_dtypes ,
2525 has_support_aspect64 ,
26- is_arl_or_mtl ,
27- is_win_platform ,
2826 numpy_version ,
2927)
3028from .third_party .cupy import testing
@@ -110,8 +108,6 @@ def test_usm_ndarray_linalg_batch(func, gen_kwargs, func_kwargs):
110108 )
111109 for _ in range (2 )
112110 ]
113- elif func == "cholesky" and is_win_platform () and is_arl_or_mtl ():
114- pytest .skip ("SAT-8206" )
115111 else :
116112 dpt_args = [
117113 dpt .asarray (generate_random_numpy_array (shape , ** gen_kwargs ))
@@ -161,8 +157,6 @@ class TestCholesky:
161157 def test_cholesky (self , array , dtype ):
162158 a = numpy .array (array , dtype = dtype )
163159 ia = dpnp .array (a )
164- if ia .ndim > 2 and is_win_platform () and is_arl_or_mtl ():
165- pytest .skip ("SAT-8206" )
166160 result = dpnp .linalg .cholesky (ia )
167161 expected = numpy .linalg .cholesky (a )
168162 assert_dtype_allclose (result , expected )
@@ -182,8 +176,6 @@ def test_cholesky(self, array, dtype):
182176 @pytest .mark .parametrize ("dtype" , get_all_dtypes (no_bool = True ))
183177 def test_cholesky_upper (self , array , dtype ):
184178 ia = dpnp .array (array , dtype = dtype )
185- if ia .ndim > 2 and is_win_platform () and is_arl_or_mtl ():
186- pytest .skip ("SAT-8206" )
187179 result = dpnp .linalg .cholesky (ia , upper = True )
188180
189181 if ia .ndim > 2 :
@@ -226,8 +218,6 @@ def test_cholesky_upper(self, array, dtype):
226218 def test_cholesky_upper_numpy (self , array , dtype ):
227219 a = numpy .array (array , dtype = dtype )
228220 ia = dpnp .array (a )
229- if ia .ndim > 2 and is_win_platform () and is_arl_or_mtl ():
230- pytest .skip ("SAT-8206" )
231221 result = dpnp .linalg .cholesky (ia , upper = True )
232222 expected = numpy .linalg .cholesky (a , upper = True )
233223 assert_dtype_allclose (result , expected )
0 commit comments