Skip to content
Merged
Changes from all commits
Commits
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
7 changes: 7 additions & 0 deletions dpnp/tests/test_mathematical.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@
has_support_aspect16,
has_support_aspect64,
is_intel_numpy,
is_ptl,
numpy_version,
)
from .third_party.cupy import testing
Expand Down Expand Up @@ -217,6 +218,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():
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)

Expand All @@ -234,6 +238,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():
pytest.skip("due to SAT-8336")

a = dpnp.ones((3, 4, 5, 6, 7), dtype=dtype)

if dpnp.issubdtype(a, dpnp.float32):
Expand Down
Loading