We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fc42d7c commit 22aef14Copy full SHA for 22aef14
2 files changed
dpnp/tests/test_product.py
@@ -1443,6 +1443,9 @@ class TestMatvec:
1443
def setup_method(self):
1444
numpy.random.seed(42)
1445
1446
+ @pytest.mark.skipif(
1447
+ is_win_platform() and not is_gpu_device(), reason="SAT-8073"
1448
+ )
1449
@pytest.mark.parametrize("dtype", get_all_dtypes(no_none=True))
1450
@pytest.mark.parametrize(
1451
"shape1, shape2",
dpnp/tests/test_umath.py
@@ -122,7 +122,7 @@ def test_umaths(test_cases):
122
pytest.skip("dpnp.modf is not supported with dpnp.float16")
123
elif is_cuda_device():
124
pytest.skip("dpnp.modf is not supported on CUDA device")
125
- elif umath == "vecmat":
+ elif umath in ["vecmat", "matvec"]:
126
if is_win_platform() and not is_gpu_device():
127
pytest.skip("SAT-8073")
128
0 commit comments