From ba558576b29e2e0bfecf00d1124a2e1bd745e4ba Mon Sep 17 00:00:00 2001 From: Anton Volkov Date: Mon, 19 Jan 2026 08:09:21 -0800 Subject: [PATCH 1/2] Mute tests with dpnp.cumlogsumexp for PTL --- dpnp/tests/test_mathematical.py | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/dpnp/tests/test_mathematical.py b/dpnp/tests/test_mathematical.py index 77c65991e9c..74dd4389845 100644 --- a/dpnp/tests/test_mathematical.py +++ b/dpnp/tests/test_mathematical.py @@ -33,6 +33,8 @@ has_support_aspect16, has_support_aspect64, is_intel_numpy, + is_ptl, + is_win_platform, numpy_version, ) from .third_party.cupy import testing @@ -217,6 +219,9 @@ def _get_exp_array(self, a, axis, dtype): @pytest.mark.parametrize("axis", [None, 2, -1]) @pytest.mark.parametrize("include_initial", [True, False]) def test_basic(self, dtype, axis, include_initial): + if axis is None and is_ptl() and not is_win_platform(): + pytest.skip("due to SAT-8336") + a = dpnp.ones((3, 4, 5, 6, 7), dtype=dtype) res = dpnp.cumlogsumexp(a, axis=axis, include_initial=include_initial) @@ -234,6 +239,9 @@ def test_basic(self, dtype, axis, include_initial): @pytest.mark.parametrize("axis", [None, 2, -1]) @pytest.mark.parametrize("include_initial", [True, False]) def test_include_initial(self, dtype, axis, include_initial): + if axis is None and is_ptl() and not is_win_platform(): + pytest.skip("due to SAT-8336") + a = dpnp.ones((3, 4, 5, 6, 7), dtype=dtype) if dpnp.issubdtype(a, dpnp.float32): From ac7c2f4f4db8bd656edbe5207cc0999798c60787 Mon Sep 17 00:00:00 2001 From: Anton Volkov Date: Mon, 19 Jan 2026 09:42:25 -0800 Subject: [PATCH 2/2] The issue is visible on Windows as well --- dpnp/tests/test_mathematical.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/dpnp/tests/test_mathematical.py b/dpnp/tests/test_mathematical.py index 74dd4389845..1418a5a7fed 100644 --- a/dpnp/tests/test_mathematical.py +++ b/dpnp/tests/test_mathematical.py @@ -34,7 +34,6 @@ has_support_aspect64, is_intel_numpy, is_ptl, - is_win_platform, numpy_version, ) from .third_party.cupy import testing @@ -219,7 +218,7 @@ def _get_exp_array(self, a, axis, dtype): @pytest.mark.parametrize("axis", [None, 2, -1]) @pytest.mark.parametrize("include_initial", [True, False]) def test_basic(self, dtype, axis, include_initial): - if axis is None and is_ptl() and not is_win_platform(): + if axis is None and is_ptl(): pytest.skip("due to SAT-8336") a = dpnp.ones((3, 4, 5, 6, 7), dtype=dtype) @@ -239,7 +238,7 @@ def test_basic(self, dtype, axis, include_initial): @pytest.mark.parametrize("axis", [None, 2, -1]) @pytest.mark.parametrize("include_initial", [True, False]) def test_include_initial(self, dtype, axis, include_initial): - if axis is None and is_ptl() and not is_win_platform(): + if axis is None and is_ptl(): pytest.skip("due to SAT-8336") a = dpnp.ones((3, 4, 5, 6, 7), dtype=dtype)