@@ -102,11 +102,11 @@ cpdef dparray dpnp_absolute(dparray input):
102102
103103
104104cpdef 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)
106106
107107
108108cpdef 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)
110110
111111
112112cpdef dpnp_around(dparray x1, int decimals):
@@ -135,11 +135,11 @@ cpdef dparray dpnp_conjugate(dparray x1):
135135
136136
137137cpdef 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)
139139
140140
141141cpdef 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)
143143
144144
145145cpdef dparray dpnp_cumprod(dparray x1):
@@ -194,7 +194,7 @@ cpdef dparray dpnp_diff(dparray input, int n):
194194
195195
196196cpdef 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)
198198
199199
200200cpdef dparray dpnp_ediff1d(dparray x1):
@@ -214,11 +214,11 @@ cpdef dparray dpnp_floor(dparray x1):
214214
215215
216216cpdef 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)
218218
219219
220220cpdef 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)
222222
223223
224224cpdef dparray dpnp_gradient(dparray y1, int dx = 1 ):
@@ -243,15 +243,15 @@ cpdef dparray dpnp_gradient(dparray y1, int dx=1):
243243
244244
245245cpdef 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)
247247
248248
249249cpdef 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)
251251
252252
253253cpdef 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)
255255
256256
257257cpdef tuple dpnp_modf(utils.dpnp_descriptor x1):
@@ -274,7 +274,7 @@ cpdef tuple dpnp_modf(utils.dpnp_descriptor x1):
274274
275275
276276cpdef 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)
278278
279279
280280cpdef dparray dpnp_nancumprod(dparray x1):
@@ -335,7 +335,7 @@ cpdef dparray dpnp_negative(dparray array1):
335335
336336
337337cpdef 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)
339339
340340
341341cpdef 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
371371
372372
373373cpdef 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)
375375
376376
377377cpdef dparray dpnp_sign(dparray x1):
378378 return call_fptr_1in_1out(DPNP_FN_SIGN, x1, x1.shape)
379379
380380
381381cpdef 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)
383383
384384
385385cpdef 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