Skip to content

Commit d60b4fe

Browse files
committed
Mute tests with dpnp.cumlogsumexp for PTL
1 parent 96bb408 commit d60b4fe

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

dpnp/tests/test_mathematical.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,8 @@
3333
has_support_aspect16,
3434
has_support_aspect64,
3535
is_intel_numpy,
36+
is_ptl,
37+
is_win_platform,
3638
numpy_version,
3739
)
3840
from .third_party.cupy import testing
@@ -217,6 +219,9 @@ def _get_exp_array(self, a, axis, dtype):
217219
@pytest.mark.parametrize("axis", [None, 2, -1])
218220
@pytest.mark.parametrize("include_initial", [True, False])
219221
def test_basic(self, dtype, axis, include_initial):
222+
if axis is None and is_ptl() and not is_win_platform():
223+
pytest.skip("due to SAT-8336")
224+
220225
a = dpnp.ones((3, 4, 5, 6, 7), dtype=dtype)
221226
res = dpnp.cumlogsumexp(a, axis=axis, include_initial=include_initial)
222227

@@ -234,6 +239,9 @@ def test_basic(self, dtype, axis, include_initial):
234239
@pytest.mark.parametrize("axis", [None, 2, -1])
235240
@pytest.mark.parametrize("include_initial", [True, False])
236241
def test_include_initial(self, dtype, axis, include_initial):
242+
if axis is None and is_ptl() and not is_win_platform():
243+
pytest.skip("due to SAT-8336")
244+
237245
a = dpnp.ones((3, 4, 5, 6, 7), dtype=dtype)
238246

239247
if dpnp.issubdtype(a, dpnp.float32):

0 commit comments

Comments
 (0)