Skip to content

Commit 64c2ce3

Browse files
author
Vahid Tavanashad
committed
update new_umaths_numpy_20 list
1 parent 356b6ee commit 64c2ce3

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

dpnp/tests/test_umath.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -75,8 +75,6 @@ def get_id(val):
7575
# implement missing umaths and to remove the list
7676
new_umaths_numpy_20 = [
7777
"bitwise_count", # SAT-7323
78-
"matvec", # SAT-7615
79-
"vecmat", # SAT-7615
8078
]
8179

8280

@@ -88,7 +86,7 @@ def test_umaths(test_cases):
8886
if umath in new_umaths_numpy_20:
8987
pytest.skip("new umaths from numpy 2.0 are not supported yet")
9088

91-
if umath == "matmul":
89+
if umath in ["matmul", "matvec", "vecmat"]:
9290
sh = (4, 4)
9391
elif umath in ["power", "pow"]:
9492
sh = (2, 3)

0 commit comments

Comments
 (0)