Skip to content

Commit

Permalink
Allow casting in cn.dot, to match numpy's behavior (nv-legate#598)
Browse files Browse the repository at this point in the history
  • Loading branch information
manopapad authored and rohany committed Sep 25, 2022
1 parent fa11dc7 commit 39c6b6c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cunumeric/array.py
Original file line number Diff line number Diff line change
Expand Up @@ -2545,7 +2545,7 @@ def dot(self, rhs: Any, out: Union[ndarray, None] = None) -> ndarray:
self,
rhs,
out=out,
casting="no",
casting="unsafe",
)

def dump(self, file: Union[str, Path]) -> None:
Expand Down

0 comments on commit 39c6b6c

Please sign in to comment.