diff --git a/dpnp/tests/test_product.py b/dpnp/tests/test_product.py index 763049e8791..4f50b222cac 100644 --- a/dpnp/tests/test_product.py +++ b/dpnp/tests/test_product.py @@ -12,8 +12,6 @@ assert_dtype_allclose, generate_random_numpy_array, get_all_dtypes, - is_gpu_device, - is_win_platform, numpy_version, ) from .third_party.cupy import testing @@ -1497,9 +1495,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", @@ -2211,9 +2206,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", diff --git a/dpnp/tests/test_umath.py b/dpnp/tests/test_umath.py index ca025fd27c5..306c4ec8319 100644 --- a/dpnp/tests/test_umath.py +++ b/dpnp/tests/test_umath.py @@ -21,9 +21,7 @@ get_float_dtypes, has_support_aspect16, has_support_aspect64, - is_cuda_device, is_gpu_device, - is_win_platform, ) # full list of umaths @@ -117,9 +115,6 @@ def test_umaths(test_cases): pytest.skip("dpctl-2031") elif umath in ["divmod"]: pytest.skip("Not implemented umath") - 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)