@@ -45,23 +45,23 @@ __all__ += [
45
45
46
46
47
47
cpdef 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)
49
49
50
50
51
51
cpdef 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)
53
53
54
54
55
55
cpdef 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)
57
57
58
58
59
59
cpdef dparray dpnp_invert(dparray arr):
60
60
return call_fptr_1in_1out(DPNP_FN_INVERT, arr, arr.shape)
61
61
62
62
63
63
cpdef 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)
65
65
66
66
cpdef 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