Skip to content

Commit

Permalink
Use safe_wraps for matmul (dask#4346)
Browse files Browse the repository at this point in the history
  • Loading branch information
hmaarrfk authored and mrocklin committed Jan 2, 2019
1 parent 9523c32 commit 7af6fea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dask/array/routines.py
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@ def vdot(a, b):
return dot(a.conj().ravel(), b.ravel())


@wraps(np.matmul)
@safe_wraps(np.matmul)
def matmul(a, b):
a = asanyarray(a)
b = asanyarray(b)
Expand Down

0 comments on commit 7af6fea

Please sign in to comment.