@@ -102,11 +102,11 @@ cpdef dparray dpnp_absolute(dparray input):
102
102
103
103
104
104
cpdef dparray dpnp_add(object x1_obj, object x2_obj, object dtype = None , dparray out = None , object where = True ):
105
- return call_fptr_2in_1out_new (DPNP_FN_ADD, x1_obj, x2_obj, dtype = dtype, out = out, where = where)
105
+ return call_fptr_2in_1out (DPNP_FN_ADD, x1_obj, x2_obj, dtype = dtype, out = out, where = where)
106
106
107
107
108
108
cpdef dparray dpnp_arctan2(object x1_obj, object x2_obj, object dtype = None , dparray out = None , object where = True ):
109
- return call_fptr_2in_1out_new (DPNP_FN_ARCTAN2, x1_obj, x2_obj, dtype = dtype, out = out, where = where)
109
+ return call_fptr_2in_1out (DPNP_FN_ARCTAN2, x1_obj, x2_obj, dtype = dtype, out = out, where = where)
110
110
111
111
112
112
cpdef dpnp_around(dparray x1, int decimals):
@@ -135,11 +135,11 @@ cpdef dparray dpnp_conjugate(dparray x1):
135
135
136
136
137
137
cpdef dparray dpnp_copysign(object x1_obj, object x2_obj, object dtype = None , dparray out = None , object where = True ):
138
- return call_fptr_2in_1out_new (DPNP_FN_COPYSIGN, x1_obj, x2_obj, dtype = dtype, out = out, where = where)
138
+ return call_fptr_2in_1out (DPNP_FN_COPYSIGN, x1_obj, x2_obj, dtype = dtype, out = out, where = where)
139
139
140
140
141
141
cpdef dparray dpnp_cross(object x1_obj, object x2_obj, object dtype = None , dparray out = None , object where = True ):
142
- return call_fptr_2in_1out_new (DPNP_FN_CROSS, x1_obj, x2_obj, dtype = dtype, out = out, where = where)
142
+ return call_fptr_2in_1out (DPNP_FN_CROSS, x1_obj, x2_obj, dtype = dtype, out = out, where = where)
143
143
144
144
145
145
cpdef dparray dpnp_cumprod(dparray x1):
@@ -194,7 +194,7 @@ cpdef dparray dpnp_diff(dparray input, int n):
194
194
195
195
196
196
cpdef dparray dpnp_divide(object x1_obj, object x2_obj, object dtype = None , dparray out = None , object where = True ):
197
- return call_fptr_2in_1out_new (DPNP_FN_DIVIDE, x1_obj, x2_obj, dtype = dtype, out = out, where = where)
197
+ return call_fptr_2in_1out (DPNP_FN_DIVIDE, x1_obj, x2_obj, dtype = dtype, out = out, where = where)
198
198
199
199
200
200
cpdef dparray dpnp_ediff1d(dparray x1):
@@ -214,11 +214,11 @@ cpdef dparray dpnp_floor(dparray x1):
214
214
215
215
216
216
cpdef dparray dpnp_floor_divide(object x1_obj, object x2_obj, object dtype = None , dparray out = None , object where = True ):
217
- return call_fptr_2in_1out_new (DPNP_FN_FLOOR_DIVIDE, x1_obj, x2_obj, dtype = dtype, out = out, where = where)
217
+ return call_fptr_2in_1out (DPNP_FN_FLOOR_DIVIDE, x1_obj, x2_obj, dtype = dtype, out = out, where = where)
218
218
219
219
220
220
cpdef dparray dpnp_fmod(object x1_obj, object x2_obj, object dtype = None , dparray out = None , object where = True ):
221
- return call_fptr_2in_1out_new (DPNP_FN_FMOD, x1_obj, x2_obj, dtype = dtype, out = out, where = where)
221
+ return call_fptr_2in_1out (DPNP_FN_FMOD, x1_obj, x2_obj, dtype = dtype, out = out, where = where)
222
222
223
223
224
224
cpdef dparray dpnp_gradient(dparray y1, int dx = 1 ):
@@ -243,15 +243,15 @@ cpdef dparray dpnp_gradient(dparray y1, int dx=1):
243
243
244
244
245
245
cpdef dparray dpnp_hypot(object x1_obj, object x2_obj, object dtype = None , dparray out = None , object where = True ):
246
- return call_fptr_2in_1out_new (DPNP_FN_HYPOT, x1_obj, x2_obj, dtype = dtype, out = out, where = where)
246
+ return call_fptr_2in_1out (DPNP_FN_HYPOT, x1_obj, x2_obj, dtype = dtype, out = out, where = where)
247
247
248
248
249
249
cpdef dparray dpnp_maximum(object x1_obj, object x2_obj, object dtype = None , dparray out = None , object where = True ):
250
- return call_fptr_2in_1out_new (DPNP_FN_MAXIMUM, x1_obj, x2_obj, dtype = dtype, out = out, where = where)
250
+ return call_fptr_2in_1out (DPNP_FN_MAXIMUM, x1_obj, x2_obj, dtype = dtype, out = out, where = where)
251
251
252
252
253
253
cpdef dparray dpnp_minimum(object x1_obj, object x2_obj, object dtype = None , dparray out = None , object where = True ):
254
- return call_fptr_2in_1out_new (DPNP_FN_MINIMUM, x1_obj, x2_obj, dtype = dtype, out = out, where = where)
254
+ return call_fptr_2in_1out (DPNP_FN_MINIMUM, x1_obj, x2_obj, dtype = dtype, out = out, where = where)
255
255
256
256
257
257
cpdef tuple dpnp_modf(utils.dpnp_descriptor x1):
@@ -274,7 +274,7 @@ cpdef tuple dpnp_modf(utils.dpnp_descriptor x1):
274
274
275
275
276
276
cpdef dparray dpnp_multiply(object x1_obj, object x2_obj, object dtype = None , dparray out = None , object where = True ):
277
- return call_fptr_2in_1out_new (DPNP_FN_MULTIPLY, x1_obj, x2_obj, dtype = dtype, out = out, where = where)
277
+ return call_fptr_2in_1out (DPNP_FN_MULTIPLY, x1_obj, x2_obj, dtype = dtype, out = out, where = where)
278
278
279
279
280
280
cpdef dparray dpnp_nancumprod(dparray x1):
@@ -335,7 +335,7 @@ cpdef dparray dpnp_negative(dparray array1):
335
335
336
336
337
337
cpdef dparray dpnp_power(object x1_obj, object x2_obj, object dtype = None , dparray out = None , object where = True ):
338
- return call_fptr_2in_1out_new (DPNP_FN_POWER, x1_obj, x2_obj, dtype = dtype, out = out, where = where)
338
+ return call_fptr_2in_1out (DPNP_FN_POWER, x1_obj, x2_obj, dtype = dtype, out = out, where = where)
339
339
340
340
341
341
cpdef dparray dpnp_prod(dparray input , object axis = None , object dtype = None , dparray out = None , cpp_bool keepdims = False , object initial = None , object where = True ):
@@ -371,15 +371,15 @@ cpdef dparray dpnp_prod(dparray input, object axis=None, object dtype=None, dpar
371
371
372
372
373
373
cpdef dparray dpnp_remainder(object x1_obj, object x2_obj, object dtype = None , dparray out = None , object where = True ):
374
- return call_fptr_2in_1out_new (DPNP_FN_REMAINDER, x1_obj, x2_obj, dtype = dtype, out = out, where = where)
374
+ return call_fptr_2in_1out (DPNP_FN_REMAINDER, x1_obj, x2_obj, dtype = dtype, out = out, where = where)
375
375
376
376
377
377
cpdef dparray dpnp_sign(dparray x1):
378
378
return call_fptr_1in_1out(DPNP_FN_SIGN, x1, x1.shape)
379
379
380
380
381
381
cpdef dparray dpnp_subtract(object x1_obj, object x2_obj, object dtype = None , dparray out = None , object where = True ):
382
- return call_fptr_2in_1out_new (DPNP_FN_SUBTRACT, x1_obj, x2_obj, dtype = dtype, out = out, where = where)
382
+ return call_fptr_2in_1out (DPNP_FN_SUBTRACT, x1_obj, x2_obj, dtype = dtype, out = out, where = where)
383
383
384
384
385
385
cpdef dparray dpnp_sum(dparray input , object axis = None , object dtype = None , dparray out = None , cpp_bool keepdims = False , object initial = None , object where = True ):
0 commit comments