We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4978005 commit 60054e5Copy full SHA for 60054e5
dpnp/tests/test_umath.py
@@ -9,6 +9,7 @@
9
)
10
11
import dpnp
12
+import dpnp.backend.extensions.vm._vm_impl as vmi
13
14
from .helper import (
15
assert_dtype_allclose,
@@ -108,6 +109,12 @@ def test_umaths(test_cases):
108
109
pytest.skip("dpctl-1652")
110
elif umath in ["ceil", "floor", "trunc"] and args[0].dtype == dpnp.bool:
111
pytest.skip("dpctl-2030")
112
+ elif (
113
+ umath == "tan"
114
+ and dpnp.issubdtype(args[0].dtype, dpnp.complexfloating)
115
+ and not (vmi._is_available() and has_support_aspect64())
116
+ ):
117
+ pytest.skip("dpctl-2031")
118
elif umath in ["divmod", "frexp"]:
119
pytest.skip("Not implemented umath")
120
elif umath == "modf":
0 commit comments