Skip to content

Commit 2472ba0

Browse files
committed
Enable umath and third party tests
1 parent ba43ffe commit 2472ba0

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

dpnp/tests/test_umath.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ def test_umaths(test_cases):
115115
and not (vmi._is_available() and has_support_aspect64())
116116
):
117117
pytest.skip("dpctl-2031")
118-
elif umath in ["divmod", "frexp"]:
118+
elif umath in ["divmod"]:
119119
pytest.skip("Not implemented umath")
120120
elif umath == "modf":
121121
if args[0].dtype == dpnp.float16:

dpnp/tests/third_party/cupy/math_tests/test_floating.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
1+
from __future__ import annotations
2+
13
import unittest
24

35
import numpy
4-
import pytest
56

67
import dpnp as cupy
78
from dpnp.tests.helper import has_support_aspect64
@@ -38,7 +39,6 @@ def test_ldexp(self, xp, ftype, itype):
3839
b = xp.array([-3, -2, -1, 0, 1, 2, 3], dtype=itype)
3940
return xp.ldexp(a, b)
4041

41-
@pytest.mark.skip("frexp() is not implemented yet")
4242
@testing.for_float_dtypes()
4343
def test_frexp(self, dtype):
4444
numpy_a = numpy.array(

0 commit comments

Comments
 (0)