@@ -1202,9 +1202,9 @@ cdef class usm_ndarray:
1202
1202
def __truediv__ (first , other ):
1203
1203
" See comment in __add__"
1204
1204
if isinstance (first, usm_ndarray):
1205
- return _dispatch_binary_elementwise(first, " true_divide " , other)
1205
+ return _dispatch_binary_elementwise(first, " divide " , other)
1206
1206
elif isinstance (other, usm_ndarray):
1207
- return _dispatch_binary_elementwise2(first, " true_divide " , other)
1207
+ return _dispatch_binary_elementwise2(first, " divide " , other)
1208
1208
return NotImplemented
1209
1209
1210
1210
def __xor__ (first , other ):
@@ -1249,7 +1249,7 @@ cdef class usm_ndarray:
1249
1249
return _dispatch_binary_elementwise2(other, " subtract" , self )
1250
1250
1251
1251
def __rtruediv__ (self , other ):
1252
- return _dispatch_binary_elementwise2(other, " true_divide " , self )
1252
+ return _dispatch_binary_elementwise2(other, " divide " , self )
1253
1253
1254
1254
def __rxor__ (self , other ):
1255
1255
return _dispatch_binary_elementwise2(other, " logical_xor" , self )
0 commit comments