@@ -65,6 +65,7 @@ __all__ += [
65
65
" dpnp_negative" ,
66
66
" dpnp_power" ,
67
67
" dpnp_prod" ,
68
+ " dpnp_remainder" ,
68
69
" dpnp_sign" ,
69
70
" dpnp_subtract" ,
70
71
" dpnp_sum" ,
@@ -101,7 +102,7 @@ cpdef dparray dpnp_absolute(dparray input):
101
102
102
103
103
104
cpdef dparray dpnp_add(object x1_obj, object x2_obj, object dtype = None , dparray out = None , object where = True ):
104
- return call_fptr_2in_1out (DPNP_FN_ADD, x1_obj, x2_obj, dtype = dtype, out = out, where = where)
105
+ return call_fptr_2in_1out_new (DPNP_FN_ADD, x1_obj, x2_obj, dtype = dtype, out = out, where = where)
105
106
106
107
107
108
cpdef dparray dpnp_arctan2(object x1_obj, object x2_obj, object dtype = None , dparray out = None , object where = True ):
@@ -134,7 +135,7 @@ cpdef dparray dpnp_conjugate(dparray x1):
134
135
135
136
136
137
cpdef dparray dpnp_copysign(object x1_obj, object x2_obj, object dtype = None , dparray out = None , object where = True ):
137
- return call_fptr_2in_1out (DPNP_FN_COPYSIGN, x1_obj, x2_obj, dtype = dtype, out = out, where = where)
138
+ return call_fptr_2in_1out_new (DPNP_FN_COPYSIGN, x1_obj, x2_obj, dtype = dtype, out = out, where = where)
138
139
139
140
140
141
cpdef dparray dpnp_cross(object x1_obj, object x2_obj, object dtype = None , dparray out = None , object where = True ):
@@ -193,7 +194,7 @@ cpdef dparray dpnp_diff(dparray input, int n):
193
194
194
195
195
196
cpdef dparray dpnp_divide(object x1_obj, object x2_obj, object dtype = None , dparray out = None , object where = True ):
196
- return call_fptr_2in_1out (DPNP_FN_DIVIDE, x1_obj, x2_obj, dtype = dtype, out = out, where = where)
197
+ return call_fptr_2in_1out_new (DPNP_FN_DIVIDE, x1_obj, x2_obj, dtype = dtype, out = out, where = where)
197
198
198
199
199
200
cpdef dparray dpnp_ediff1d(dparray x1):
@@ -213,11 +214,11 @@ cpdef dparray dpnp_floor(dparray x1):
213
214
214
215
215
216
cpdef dparray dpnp_floor_divide(object x1_obj, object x2_obj, object dtype = None , dparray out = None , object where = True ):
216
- return call_fptr_2in_1out (DPNP_FN_FLOOR_DIVIDE, x1_obj, x2_obj, dtype = dtype, out = out, where = where)
217
+ return call_fptr_2in_1out_new (DPNP_FN_FLOOR_DIVIDE, x1_obj, x2_obj, dtype = dtype, out = out, where = where)
217
218
218
219
219
220
cpdef dparray dpnp_fmod(object x1_obj, object x2_obj, object dtype = None , dparray out = None , object where = True ):
220
- return call_fptr_2in_1out (DPNP_FN_FMOD, x1_obj, x2_obj, dtype = dtype, out = out, where = where)
221
+ return call_fptr_2in_1out_new (DPNP_FN_FMOD, x1_obj, x2_obj, dtype = dtype, out = out, where = where)
221
222
222
223
223
224
cpdef dparray dpnp_gradient(dparray y1, int dx = 1 ):
@@ -246,11 +247,11 @@ cpdef dparray dpnp_hypot(object x1_obj, object x2_obj, object dtype=None, dparra
246
247
247
248
248
249
cpdef dparray dpnp_maximum(object x1_obj, object x2_obj, object dtype = None , dparray out = None , object where = True ):
249
- return call_fptr_2in_1out (DPNP_FN_MAXIMUM, x1_obj, x2_obj, dtype = dtype, out = out, where = where)
250
+ return call_fptr_2in_1out_new (DPNP_FN_MAXIMUM, x1_obj, x2_obj, dtype = dtype, out = out, where = where)
250
251
251
252
252
253
cpdef dparray dpnp_minimum(object x1_obj, object x2_obj, object dtype = None , dparray out = None , object where = True ):
253
- return call_fptr_2in_1out (DPNP_FN_MINIMUM, x1_obj, x2_obj, dtype = dtype, out = out, where = where)
254
+ return call_fptr_2in_1out_new (DPNP_FN_MINIMUM, x1_obj, x2_obj, dtype = dtype, out = out, where = where)
254
255
255
256
256
257
cpdef tuple dpnp_modf(utils.dpnp_descriptor x1):
@@ -334,7 +335,7 @@ cpdef dparray dpnp_negative(dparray array1):
334
335
335
336
336
337
cpdef dparray dpnp_power(object x1_obj, object x2_obj, object dtype = None , dparray out = None , object where = True ):
337
- return call_fptr_2in_1out (DPNP_FN_POWER, x1_obj, x2_obj, dtype = dtype, out = out, where = where)
338
+ return call_fptr_2in_1out_new (DPNP_FN_POWER, x1_obj, x2_obj, dtype = dtype, out = out, where = where)
338
339
339
340
340
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 ):
@@ -370,7 +371,7 @@ cpdef dparray dpnp_prod(dparray input, object axis=None, object dtype=None, dpar
370
371
371
372
372
373
cpdef dparray dpnp_remainder(object x1_obj, object x2_obj, object dtype = None , dparray out = None , object where = True ):
373
- return call_fptr_2in_1out (DPNP_FN_REMAINDER, x1_obj, x2_obj, dtype = dtype, out = out, where = where)
374
+ return call_fptr_2in_1out_new (DPNP_FN_REMAINDER, x1_obj, x2_obj, dtype = dtype, out = out, where = where)
374
375
375
376
376
377
cpdef dparray dpnp_sign(dparray x1):
0 commit comments