We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 002d2da commit cdb8e96Copy full SHA for cdb8e96
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
from dpnp.dpnp_utils import map_dtype_to_device
14
15
from .helper import (
@@ -109,6 +110,12 @@ def test_umaths(test_cases):
109
110
pytest.skip("dpctl-1652")
111
elif umath in ["ceil", "floor", "trunc"] and args[0].dtype == dpnp.bool:
112
pytest.skip("dpctl-2030")
113
+ elif (
114
+ umath == "tan"
115
+ and dpnp.issubdtype(args[0].dtype, dpnp.complexfloating)
116
+ and not (vmi._is_available() and has_support_aspect64())
117
+ ):
118
+ pytest.skip("dpctl-2031")
119
elif umath in ["divmod", "frexp"]:
120
pytest.skip("Not implemented umath")
121
elif umath == "modf":
0 commit comments