Skip to content
Snippets Groups Projects
Verified Commit 0edfff96 authored by Justin Carpentier's avatar Justin Carpentier
Browse files

test/user_types: enforce testing of matmul operation

parent 4d7cb520
No related branches found
No related tags found
No related merge requests found
......@@ -32,6 +32,9 @@ def test(dtype):
assert not (mat > mat).all()
assert not (mat < mat).all()
mat2 = mat.dot(mat.T)
mat2 = np.matmul(mat,mat.T)
def test_cast(from_dtype,to_dtype):
np.can_cast(from_dtype,to_dtype)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment