File tree Expand file tree Collapse file tree 2 files changed +0
-12
lines changed Expand file tree Collapse file tree 2 files changed +0
-12
lines changed Original file line number Diff line number Diff line change 1212 assert_dtype_allclose ,
1313 generate_random_numpy_array ,
1414 get_all_dtypes ,
15- is_gpu_device ,
1615 is_ptl ,
17- is_win_platform ,
1816 numpy_version ,
1917)
2018from .third_party .cupy import testing
@@ -1443,9 +1441,6 @@ class TestMatvec:
14431441 def setup_method (self ):
14441442 numpy .random .seed (42 )
14451443
1446- @pytest .mark .skipif (
1447- is_win_platform () and not is_gpu_device (), reason = "SAT-8073"
1448- )
14491444 @pytest .mark .parametrize ("dtype" , get_all_dtypes (no_none = True ))
14501445 @pytest .mark .parametrize (
14511446 "shape1, shape2" ,
@@ -2172,9 +2167,6 @@ class TestVecmat:
21722167 def setup_method (self ):
21732168 numpy .random .seed (42 )
21742169
2175- @pytest .mark .skipif (
2176- is_win_platform () and not is_gpu_device (), reason = "SAT-8073"
2177- )
21782170 @pytest .mark .parametrize ("dtype" , get_all_dtypes (no_none = True ))
21792171 @pytest .mark .parametrize (
21802172 "shape1, shape2" ,
Original file line number Diff line number Diff line change 2323 has_support_aspect64 ,
2424 is_cuda_device ,
2525 is_gpu_device ,
26- is_win_platform ,
2726)
2827
2928# full list of umaths
@@ -122,9 +121,6 @@ def test_umaths(test_cases):
122121 pytest .skip ("dpnp.modf is not supported with dpnp.float16" )
123122 elif is_cuda_device ():
124123 pytest .skip ("dpnp.modf is not supported on CUDA device" )
125- elif umath in ["vecmat" , "matvec" ]:
126- if is_win_platform () and not is_gpu_device ():
127- pytest .skip ("SAT-8073" )
128124
129125 expected = getattr (numpy , umath )(* args )
130126 result = getattr (dpnp , umath )(* iargs )
You can’t perform that action at this time.
0 commit comments