Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Apply the same temporary w/a to tests with dpnp.matvec
  • Loading branch information
antonwolfy committed Jul 7, 2025
commit 22aef148e7a25e6aa21f06cbed462febcdf11f24
3 changes: 3 additions & 0 deletions dpnp/tests/test_product.py
Original file line number Diff line number Diff line change
Expand Up @@ -1443,6 +1443,9 @@ class TestMatvec:
def setup_method(self):
numpy.random.seed(42)

@pytest.mark.skipif(
is_win_platform() and not is_gpu_device(), reason="SAT-8073"
)
@pytest.mark.parametrize("dtype", get_all_dtypes(no_none=True))
@pytest.mark.parametrize(
"shape1, shape2",
Expand Down
2 changes: 1 addition & 1 deletion dpnp/tests/test_umath.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ def test_umaths(test_cases):
pytest.skip("dpnp.modf is not supported with dpnp.float16")
elif is_cuda_device():
pytest.skip("dpnp.modf is not supported on CUDA device")
elif umath == "vecmat":
elif umath in ["vecmat", "matvec"]:
if is_win_platform() and not is_gpu_device():
pytest.skip("SAT-8073")

Expand Down
Loading