We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b5d361f commit f94ef5eCopy full SHA for f94ef5e
dpctl/tensor/_usmarray.pyx
@@ -961,7 +961,7 @@ cdef class usm_ndarray:
961
def __rfloordiv__(self, other):
962
return _dispatch_binary_elementwise2(other, "floor_divide", self)
963
964
- def __rlshift__(self, other, mod):
+ def __rlshift__(self, other):
965
return _dispatch_binary_elementwise2(other, "left_shift", self)
966
967
def __rmatmul__(self, other):
@@ -976,10 +976,10 @@ cdef class usm_ndarray:
976
def __ror__(self, other):
977
return _dispatch_binary_elementwise(self, "logical_or", other)
978
979
- def __rpow__(self, other, mod):
+ def __rpow__(self, other):
980
return _dispatch_binary_elementwise2(other, "power", self)
981
982
- def __rrshift__(self, other, mod):
+ def __rrshift__(self, other):
983
return _dispatch_binary_elementwise2(other, "right_shift", self)
984
985
def __rsub__(self, other):
0 commit comments