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 71ea559Copy full SHA for 71ea559
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):
@@ -979,7 +979,7 @@ cdef class usm_ndarray:
979
def __rpow__(self, other, mod):
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