23
23
get_float_complex_dtypes ,
24
24
get_integer_float_dtypes ,
25
25
has_support_aspect64 ,
26
- is_arl_or_mtl ,
27
- is_win_platform ,
28
26
numpy_version ,
29
27
)
30
28
from .third_party .cupy import testing
@@ -110,8 +108,6 @@ def test_usm_ndarray_linalg_batch(func, gen_kwargs, func_kwargs):
110
108
)
111
109
for _ in range (2 )
112
110
]
113
- elif func == "cholesky" and is_win_platform () and is_arl_or_mtl ():
114
- pytest .skip ("SAT-8206" )
115
111
else :
116
112
dpt_args = [
117
113
dpt .asarray (generate_random_numpy_array (shape , ** gen_kwargs ))
@@ -161,8 +157,6 @@ class TestCholesky:
161
157
def test_cholesky (self , array , dtype ):
162
158
a = numpy .array (array , dtype = dtype )
163
159
ia = dpnp .array (a )
164
- if ia .ndim > 2 and is_win_platform () and is_arl_or_mtl ():
165
- pytest .skip ("SAT-8206" )
166
160
result = dpnp .linalg .cholesky (ia )
167
161
expected = numpy .linalg .cholesky (a )
168
162
assert_dtype_allclose (result , expected )
@@ -182,8 +176,6 @@ def test_cholesky(self, array, dtype):
182
176
@pytest .mark .parametrize ("dtype" , get_all_dtypes (no_bool = True ))
183
177
def test_cholesky_upper (self , array , dtype ):
184
178
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" )
187
179
result = dpnp .linalg .cholesky (ia , upper = True )
188
180
189
181
if ia .ndim > 2 :
@@ -226,8 +218,6 @@ def test_cholesky_upper(self, array, dtype):
226
218
def test_cholesky_upper_numpy (self , array , dtype ):
227
219
a = numpy .array (array , dtype = dtype )
228
220
ia = dpnp .array (a )
229
- if ia .ndim > 2 and is_win_platform () and is_arl_or_mtl ():
230
- pytest .skip ("SAT-8206" )
231
221
result = dpnp .linalg .cholesky (ia , upper = True )
232
222
expected = numpy .linalg .cholesky (a , upper = True )
233
223
assert_dtype_allclose (result , expected )
0 commit comments