@@ -45,23 +45,23 @@ __all__ += [
4545
4646
4747cpdef dparray dpnp_bitwise_and(object x1_obj, object x2_obj, object dtype = None , dparray out = None , object where = True ):
48- return call_fptr_2in_1out (DPNP_FN_BITWISE_AND, x1_obj, x2_obj, dtype = dtype, out = out, where = where)
48+ return call_fptr_2in_1out_new (DPNP_FN_BITWISE_AND, x1_obj, x2_obj, dtype = dtype, out = out, where = where)
4949
5050
5151cpdef dparray dpnp_bitwise_or(object x1_obj, object x2_obj, object dtype = None , dparray out = None , object where = True ):
52- return call_fptr_2in_1out (DPNP_FN_BITWISE_OR, x1_obj, x2_obj, dtype = dtype, out = out, where = where)
52+ return call_fptr_2in_1out_new (DPNP_FN_BITWISE_OR, x1_obj, x2_obj, dtype = dtype, out = out, where = where)
5353
5454
5555cpdef dparray dpnp_bitwise_xor(object x1_obj, object x2_obj, object dtype = None , dparray out = None , object where = True ):
56- return call_fptr_2in_1out (DPNP_FN_BITWISE_XOR, x1_obj, x2_obj, dtype = dtype, out = out, where = where)
56+ return call_fptr_2in_1out_new (DPNP_FN_BITWISE_XOR, x1_obj, x2_obj, dtype = dtype, out = out, where = where)
5757
5858
5959cpdef dparray dpnp_invert(dparray arr):
6060 return call_fptr_1in_1out(DPNP_FN_INVERT, arr, arr.shape)
6161
6262
6363cpdef dparray dpnp_left_shift(object x1_obj, object x2_obj, object dtype = None , dparray out = None , object where = True ):
64- return call_fptr_2in_1out (DPNP_FN_LEFT_SHIFT, x1_obj, x2_obj, dtype = dtype, out = out, where = where)
64+ return call_fptr_2in_1out_new (DPNP_FN_LEFT_SHIFT, x1_obj, x2_obj, dtype = dtype, out = out, where = where)
6565
6666cpdef dparray dpnp_right_shift(object x1_obj, object x2_obj, object dtype = None , dparray out = None , object where = True ):
67- return call_fptr_2in_1out (DPNP_FN_RIGHT_SHIFT, x1_obj, x2_obj, dtype = dtype, out = out, where = where)
67+ return call_fptr_2in_1out_new (DPNP_FN_RIGHT_SHIFT, x1_obj, x2_obj, dtype = dtype, out = out, where = where)
0 commit comments