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 356b6ee commit 64c2ce3Copy full SHA for 64c2ce3
dpnp/tests/test_umath.py
@@ -75,8 +75,6 @@ def get_id(val):
75
# implement missing umaths and to remove the list
76
new_umaths_numpy_20 = [
77
"bitwise_count", # SAT-7323
78
- "matvec", # SAT-7615
79
- "vecmat", # SAT-7615
80
]
81
82
@@ -88,7 +86,7 @@ def test_umaths(test_cases):
88
86
if umath in new_umaths_numpy_20:
89
87
pytest.skip("new umaths from numpy 2.0 are not supported yet")
90
91
- if umath == "matmul":
+ if umath in ["matmul", "matvec", "vecmat"]:
92
sh = (4, 4)
93
elif umath in ["power", "pow"]:
94
sh = (2, 3)
0 commit comments