diff --git a/dpnp/tests/test_bitwise.py b/dpnp/tests/test_bitwise.py index 2ec2e7184701..29a2aadecba2 100644 --- a/dpnp/tests/test_bitwise.py +++ b/dpnp/tests/test_bitwise.py @@ -5,7 +5,6 @@ import dpnp from .helper import ( - assert_dtype_allclose, get_abs_array, get_integer_dtypes, numpy_version, diff --git a/dpnp/tests/test_indexing.py b/dpnp/tests/test_indexing.py index 69664ecccb14..07b5488f09ea 100644 --- a/dpnp/tests/test_indexing.py +++ b/dpnp/tests/test_indexing.py @@ -24,7 +24,6 @@ get_array, get_integer_dtypes, has_support_aspect64, - is_win_platform, numpy_version, ) from .third_party.cupy import testing diff --git a/dpnp/tests/test_linalg.py b/dpnp/tests/test_linalg.py index a25c237f846e..765532667b50 100644 --- a/dpnp/tests/test_linalg.py +++ b/dpnp/tests/test_linalg.py @@ -23,8 +23,6 @@ get_float_complex_dtypes, get_integer_float_dtypes, has_support_aspect64, - is_arl_or_mtl, - is_win_platform, numpy_version, ) from .third_party.cupy import testing @@ -110,8 +108,6 @@ def test_usm_ndarray_linalg_batch(func, gen_kwargs, func_kwargs): ) for _ in range(2) ] - elif func == "cholesky" and is_win_platform() and is_arl_or_mtl(): - pytest.skip("SAT-8206") else: dpt_args = [ dpt.asarray(generate_random_numpy_array(shape, **gen_kwargs)) @@ -161,8 +157,6 @@ class TestCholesky: def test_cholesky(self, array, dtype): a = numpy.array(array, dtype=dtype) ia = dpnp.array(a) - if ia.ndim > 2 and is_win_platform() and is_arl_or_mtl(): - pytest.skip("SAT-8206") result = dpnp.linalg.cholesky(ia) expected = numpy.linalg.cholesky(a) assert_dtype_allclose(result, expected) @@ -182,8 +176,6 @@ def test_cholesky(self, array, dtype): @pytest.mark.parametrize("dtype", get_all_dtypes(no_bool=True)) def test_cholesky_upper(self, array, dtype): ia = dpnp.array(array, dtype=dtype) - if ia.ndim > 2 and is_win_platform() and is_arl_or_mtl(): - pytest.skip("SAT-8206") result = dpnp.linalg.cholesky(ia, upper=True) if ia.ndim > 2: @@ -226,8 +218,6 @@ def test_cholesky_upper(self, array, dtype): def test_cholesky_upper_numpy(self, array, dtype): a = numpy.array(array, dtype=dtype) ia = dpnp.array(a) - if ia.ndim > 2 and is_win_platform() and is_arl_or_mtl(): - pytest.skip("SAT-8206") result = dpnp.linalg.cholesky(ia, upper=True) expected = numpy.linalg.cholesky(a, upper=True) assert_dtype_allclose(result, expected) diff --git a/dpnp/tests/test_random_state.py b/dpnp/tests/test_random_state.py index ae63f901e1f4..0c9c0a8b6017 100644 --- a/dpnp/tests/test_random_state.py +++ b/dpnp/tests/test_random_state.py @@ -4,7 +4,6 @@ import numpy import pytest from numpy.testing import ( - assert_allclose, assert_array_almost_equal, assert_array_equal, assert_equal, diff --git a/dpnp/tests/test_sycl_queue.py b/dpnp/tests/test_sycl_queue.py index 1ece65860d50..9b2634fad7e1 100644 --- a/dpnp/tests/test_sycl_queue.py +++ b/dpnp/tests/test_sycl_queue.py @@ -16,7 +16,6 @@ from .helper import ( generate_random_numpy_array, get_all_dtypes, - is_arl_or_mtl, is_win_platform, ) @@ -1516,8 +1515,6 @@ def test_cholesky(self, data, is_empty, device): else: dtype = dpnp.default_float_type(device) x = dpnp.array(data, dtype=dtype, device=device) - if x.ndim > 2 and is_win_platform() and is_arl_or_mtl(): - pytest.skip("SAT-8206") result = dpnp.linalg.cholesky(x) assert_sycl_queue_equal(result.sycl_queue, x.sycl_queue) diff --git a/dpnp/tests/test_usm_type.py b/dpnp/tests/test_usm_type.py index e97945e111a2..90d2dcf38f41 100644 --- a/dpnp/tests/test_usm_type.py +++ b/dpnp/tests/test_usm_type.py @@ -10,7 +10,7 @@ import dpnp from dpnp.dpnp_utils import get_usm_allocations -from .helper import generate_random_numpy_array, is_arl_or_mtl, is_win_platform +from .helper import generate_random_numpy_array list_of_usm_types = ["device", "shared", "host"] @@ -1366,8 +1366,6 @@ def test_cholesky(self, data, is_empty, usm_type): x = dpnp.empty(data, dtype=dtype, usm_type=usm_type) else: x = dpnp.array(data, dtype=dtype, usm_type=usm_type) - if x.ndim > 2 and is_win_platform() and is_arl_or_mtl(): - pytest.skip("SAT-8206") result = dpnp.linalg.cholesky(x) assert x.usm_type == result.usm_type diff --git a/dpnp/tests/test_utils.py b/dpnp/tests/test_utils.py index 89e97b75d5e5..eef9132e5b55 100644 --- a/dpnp/tests/test_utils.py +++ b/dpnp/tests/test_utils.py @@ -1,4 +1,3 @@ -import dpctl import dpctl.tensor as dpt import numpy import pytest diff --git a/dpnp/tests/third_party/cupy/linalg_tests/test_decomposition.py b/dpnp/tests/third_party/cupy/linalg_tests/test_decomposition.py index 1ddd48c85eb4..9948f4d0a920 100644 --- a/dpnp/tests/third_party/cupy/linalg_tests/test_decomposition.py +++ b/dpnp/tests/third_party/cupy/linalg_tests/test_decomposition.py @@ -6,9 +6,7 @@ import dpnp as cupy from dpnp.tests.helper import ( has_support_aspect64, - is_arl_or_mtl, is_cpu_device, - is_win_platform, ) from dpnp.tests.third_party.cupy import testing from dpnp.tests.third_party.cupy.testing import _condition @@ -84,9 +82,6 @@ def test_decomposition(self, dtype): # np.linalg.cholesky only uses a lower triangle of an array self.check_L(numpy.array([[1, 2], [1, 9]], dtype)) - @pytest.mark.skipif( - is_win_platform() and is_arl_or_mtl(), reason="SAT-8206" - ) @testing.for_dtypes( [ numpy.int32,