Skip to content

unmute vecmat and matvec tests #2519

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft
wants to merge 24 commits into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
cbcd5b1
include skipped tests
vtavana Jul 8, 2025
8d2fb2c
Merge branch 'master' into fix-vecmat-win-failure
vtavana Jul 10, 2025
4ad215e
Merge branch 'master' into fix-vecmat-win-failure
vtavana Jul 11, 2025
b2c7a0b
Merge branch 'master' into fix-vecmat-win-failure
vtavana Jul 12, 2025
8a24e8f
Merge branch 'master' into fix-vecmat-win-failure
vtavana Jul 12, 2025
092151a
Merge branch 'master' into fix-vecmat-win-failure
vtavana Jul 12, 2025
4c0ce9b
Merge branch 'master' into fix-vecmat-win-failure
vtavana Jul 13, 2025
89fcec2
Merge branch 'master' into fix-vecmat-win-failure
vtavana Jul 15, 2025
d252a14
Merge branch 'master' into fix-vecmat-win-failure
vtavana Jul 16, 2025
17396aa
Merge branch 'master' into fix-vecmat-win-failure
vtavana Jul 17, 2025
7c00aae
Merge branch 'master' into fix-vecmat-win-failure
vtavana Jul 18, 2025
0ee311c
Merge branch 'master' into fix-vecmat-win-failure
vtavana Jul 21, 2025
1e85e0d
Merge branch 'master' into fix-vecmat-win-failure
vtavana Jul 21, 2025
4704a0a
Merge branch 'master' into fix-vecmat-win-failure
vtavana Jul 23, 2025
488753e
Merge branch 'master' into fix-vecmat-win-failure
vtavana Jul 24, 2025
52df11d
Merge branch 'master' into fix-vecmat-win-failure
vtavana Jul 25, 2025
1e53882
Merge branch 'master' into fix-vecmat-win-failure
vtavana Jul 25, 2025
12f7dad
Merge branch 'master' into fix-vecmat-win-failure
vtavana Jul 25, 2025
fca8e12
Merge branch 'master' into fix-vecmat-win-failure
vtavana Jul 26, 2025
9f6101e
Merge branch 'master' into fix-vecmat-win-failure
vtavana Jul 28, 2025
ee673a1
Merge branch 'master' into fix-vecmat-win-failure
vtavana Jul 29, 2025
5cd6276
Merge branch 'master' into fix-vecmat-win-failure
vtavana Jul 29, 2025
c62eb25
Merge branch 'master' into fix-vecmat-win-failure
vtavana Jul 29, 2025
80a9352
Merge branch 'master' into fix-vecmat-win-failure
vtavana Jul 31, 2025
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
8 changes: 0 additions & 8 deletions dpnp/tests/test_product.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,7 @@
assert_dtype_allclose,
generate_random_numpy_array,
get_all_dtypes,
is_gpu_device,
is_ptl,
is_win_platform,
numpy_version,
)
from .third_party.cupy import testing
Expand Down Expand Up @@ -1499,9 +1497,6 @@ def test_invalid_axes(self, xp):

@testing.with_requires("numpy>=2.2")
class TestMatvec:
@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 Expand Up @@ -2213,9 +2208,6 @@ def test_error(self, xp):

@testing.with_requires("numpy>=2.2")
class TestVecmat:
@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
4 changes: 0 additions & 4 deletions dpnp/tests/test_umath.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@
has_support_aspect64,
is_cuda_device,
is_gpu_device,
is_win_platform,
)

# full list of umaths
Expand Down Expand Up @@ -122,9 +121,6 @@ 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 in ["vecmat", "matvec"]:
if is_win_platform() and not is_gpu_device():
pytest.skip("SAT-8073")

expected = getattr(numpy, umath)(*args)
result = getattr(dpnp, umath)(*iargs)
Expand Down
Loading