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 12
12
assert_dtype_allclose ,
13
13
generate_random_numpy_array ,
14
14
get_all_dtypes ,
15
- is_gpu_device ,
16
15
is_ptl ,
17
- is_win_platform ,
18
16
numpy_version ,
19
17
)
20
18
from .third_party .cupy import testing
@@ -1443,9 +1441,6 @@ class TestMatvec:
1443
1441
def setup_method (self ):
1444
1442
numpy .random .seed (42 )
1445
1443
1446
- @pytest .mark .skipif (
1447
- is_win_platform () and not is_gpu_device (), reason = "SAT-8073"
1448
- )
1449
1444
@pytest .mark .parametrize ("dtype" , get_all_dtypes (no_none = True ))
1450
1445
@pytest .mark .parametrize (
1451
1446
"shape1, shape2" ,
@@ -2172,9 +2167,6 @@ class TestVecmat:
2172
2167
def setup_method (self ):
2173
2168
numpy .random .seed (42 )
2174
2169
2175
- @pytest .mark .skipif (
2176
- is_win_platform () and not is_gpu_device (), reason = "SAT-8073"
2177
- )
2178
2170
@pytest .mark .parametrize ("dtype" , get_all_dtypes (no_none = True ))
2179
2171
@pytest .mark .parametrize (
2180
2172
"shape1, shape2" ,
Original file line number Diff line number Diff line change 23
23
has_support_aspect64 ,
24
24
is_cuda_device ,
25
25
is_gpu_device ,
26
- is_win_platform ,
27
26
)
28
27
29
28
# full list of umaths
@@ -122,9 +121,6 @@ def test_umaths(test_cases):
122
121
pytest .skip ("dpnp.modf is not supported with dpnp.float16" )
123
122
elif is_cuda_device ():
124
123
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" )
128
124
129
125
expected = getattr (numpy , umath )(* args )
130
126
result = getattr (dpnp , umath )(* iargs )
You can’t perform that action at this time.
0 commit comments