Skip to content

Commit

Permalink
Include matmul in list of supported ops.
Browse files Browse the repository at this point in the history
  • Loading branch information
vyasr committed Feb 25, 2022
1 parent c58570c commit 70a13a0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/cudf/cudf/core/mixins/binops.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"__add__",
"__sub__",
"__mul__",
# "__matmul__",
"__matmul__",
"__truediv__",
"__floordiv__",
"__mod__",
Expand All @@ -27,7 +27,7 @@
"__radd__",
"__rsub__",
"__rmul__",
# "__rmatmul__",
"__rmatmul__",
"__rtruediv__",
"__rfloordiv__",
"__rmod__",
Expand Down

0 comments on commit 70a13a0

Please sign in to comment.