Skip to content

Commit e89e3d6

Browse files
antonwolfyvlad-perevezentsev
authored andcommitted
Enable muted tests for dpnp.cumlogsumexp (#2842)
There was a w/a implemented in scope of [dpctl#2275](IntelPython/dpctl#2275). Thus the PR enables the previously muted tests for `dpnp.cumlogsumexp`.
1 parent c83f72b commit e89e3d6

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

dpnp/tests/test_mathematical.py

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@
1717
from dpnp.tensor._numpy_helper import normalize_axis_index
1818

1919
from .helper import (
20-
LTS_VERSION,
2120
assert_dtype_allclose,
2221
generate_random_numpy_array,
2322
get_abs_array,
@@ -31,7 +30,6 @@
3130
has_support_aspect16,
3231
has_support_aspect64,
3332
is_intel_numpy,
34-
is_lts_driver,
3533
numpy_version,
3634
)
3735
from .third_party.cupy import testing
@@ -216,9 +214,6 @@ def _get_exp_array(self, a, axis, dtype):
216214
@pytest.mark.parametrize("axis", [None, 2, -1])
217215
@pytest.mark.parametrize("include_initial", [True, False])
218216
def test_basic(self, dtype, axis, include_initial):
219-
if axis is None and not is_lts_driver(version=LTS_VERSION.V1_6):
220-
pytest.skip("due to SAT-8336")
221-
222217
a = dpnp.ones((3, 4, 5, 6, 7), dtype=dtype)
223218
res = dpnp.cumlogsumexp(a, axis=axis, include_initial=include_initial)
224219

@@ -236,9 +231,6 @@ def test_basic(self, dtype, axis, include_initial):
236231
@pytest.mark.parametrize("axis", [None, 2, -1])
237232
@pytest.mark.parametrize("include_initial", [True, False])
238233
def test_include_initial(self, dtype, axis, include_initial):
239-
if axis is None and not is_lts_driver(version=LTS_VERSION.V1_6):
240-
pytest.skip("due to SAT-8336")
241-
242234
a = dpnp.ones((3, 4, 5, 6, 7), dtype=dtype)
243235

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

0 commit comments

Comments
 (0)