|
59 | 59 | enum class DPNPFuncName : size_t
|
60 | 60 | {
|
61 | 61 | DPNP_FN_NONE, /**< Very first element of the enumeration */
|
62 |
| - DPNP_FN_ABSOLUTE, /**< Used in numpy.absolute() impl */ |
63 |
| - DPNP_FN_ADD, /**< Used in numpy.add() impl */ |
64 | 62 | DPNP_FN_ALL, /**< Used in numpy.all() impl */
|
65 | 63 | DPNP_FN_ALLCLOSE, /**< Used in numpy.allclose() impl */
|
66 | 64 | DPNP_FN_ALLCLOSE_EXT, /**< Used in numpy.allclose() impl, requires extra
|
67 | 65 | parameters */
|
68 | 66 | DPNP_FN_ANY, /**< Used in numpy.any() impl */
|
69 | 67 | DPNP_FN_ARANGE, /**< Used in numpy.arange() impl */
|
70 |
| - DPNP_FN_ARCCOS, /**< Used in numpy.arccos() impl */ |
71 |
| - DPNP_FN_ARCCOSH, /**< Used in numpy.arccosh() impl */ |
72 |
| - DPNP_FN_ARCSIN, /**< Used in numpy.arcsin() impl */ |
73 |
| - DPNP_FN_ARCSINH, /**< Used in numpy.arcsinh() impl */ |
74 |
| - DPNP_FN_ARCTAN, /**< Used in numpy.arctan() impl */ |
75 |
| - DPNP_FN_ARCTAN2, /**< Used in numpy.arctan2() impl */ |
76 |
| - DPNP_FN_ARCTANH, /**< Used in numpy.arctanh() impl */ |
77 | 68 | DPNP_FN_ARGMAX, /**< Used in numpy.argmax() impl */
|
78 | 69 | DPNP_FN_ARGMIN, /**< Used in numpy.argmin() impl */
|
79 | 70 | DPNP_FN_ARGSORT, /**< Used in numpy.argsort() impl */
|
80 |
| - DPNP_FN_AROUND, /**< Used in numpy.around() impl */ |
81 |
| - DPNP_FN_ASTYPE, /**< Used in numpy.astype() impl */ |
82 |
| - DPNP_FN_BITWISE_AND, /**< Used in numpy.bitwise_and() impl */ |
83 |
| - DPNP_FN_BITWISE_OR, /**< Used in numpy.bitwise_or() impl */ |
84 |
| - DPNP_FN_BITWISE_XOR, /**< Used in numpy.bitwise_xor() impl */ |
85 |
| - DPNP_FN_CBRT, /**< Used in numpy.cbrt() impl */ |
86 |
| - DPNP_FN_CEIL, /**< Used in numpy.ceil() impl */ |
87 |
| - DPNP_FN_CHOLESKY, /**< Used in numpy.linalg.cholesky() impl */ |
88 |
| - DPNP_FN_CONJUGATE, /**< Used in numpy.conjugate() impl */ |
89 | 71 | DPNP_FN_CHOOSE, /**< Used in numpy.choose() impl */
|
90 | 72 | DPNP_FN_CHOOSE_EXT, /**< Used in numpy.choose() impl, requires extra
|
91 | 73 | parameters */
|
92 |
| - DPNP_FN_COPY, /**< Used in numpy.copy() impl */ |
93 |
| - DPNP_FN_COPY_EXT, /**< Used in numpy.copy() impl, requires extra parameters |
94 |
| - */ |
95 |
| - DPNP_FN_COPYSIGN, /**< Used in numpy.copysign() impl */ |
96 | 74 | DPNP_FN_COPYTO, /**< Used in numpy.copyto() impl */
|
97 | 75 | DPNP_FN_COPYTO_EXT, /**< Used in numpy.copyto() impl, requires extra
|
98 | 76 | parameters */
|
99 | 77 | DPNP_FN_CORRELATE, /**< Used in numpy.correlate() impl */
|
100 | 78 | DPNP_FN_CORRELATE_EXT, /**< Used in numpy.correlate() impl, requires extra
|
101 | 79 | parameters */
|
102 |
| - DPNP_FN_COS, /**< Used in numpy.cos() impl */ |
103 |
| - DPNP_FN_COSH, /**< Used in numpy.cosh() impl */ |
104 | 80 | DPNP_FN_COUNT_NONZERO, /**< Used in numpy.count_nonzero() impl */
|
105 | 81 | DPNP_FN_COV, /**< Used in numpy.cov() impl */
|
106 |
| - DPNP_FN_CROSS, /**< Used in numpy.cross() impl */ |
107 |
| - DPNP_FN_CUMPROD, /**< Used in numpy.cumprod() impl */ |
108 |
| - DPNP_FN_CUMSUM, /**< Used in numpy.cumsum() impl */ |
109 | 82 | DPNP_FN_DEGREES, /**< Used in numpy.degrees() impl */
|
110 | 83 | DPNP_FN_DEGREES_EXT, /**< Used in numpy.degrees() impl, requires extra
|
111 | 84 | parameters */
|
112 |
| - DPNP_FN_DET, /**< Used in numpy.linalg.det() impl */ |
113 | 85 | DPNP_FN_DIAG, /**< Used in numpy.diag() impl */
|
114 | 86 | DPNP_FN_DIAG_INDICES, /**< Used in numpy.diag_indices() impl */
|
115 | 87 | DPNP_FN_DIAGONAL, /**< Used in numpy.diagonal() impl */
|
116 |
| - DPNP_FN_DIVIDE, /**< Used in numpy.divide() impl */ |
117 | 88 | DPNP_FN_DOT, /**< Used in numpy.dot() impl */
|
118 | 89 | DPNP_FN_DOT_EXT, /**< Used in numpy.dot() impl, requires extra parameters */
|
119 | 90 | DPNP_FN_EDIFF1D, /**< Used in numpy.ediff1d() impl */
|
120 | 91 | DPNP_FN_EDIFF1D_EXT, /**< Used in numpy.ediff1d() impl, requires extra
|
121 | 92 | parameters */
|
122 |
| - DPNP_FN_EIG, /**< Used in numpy.linalg.eig() impl */ |
123 |
| - DPNP_FN_EIGVALS, /**< Used in numpy.linalg.eigvals() impl */ |
124 | 93 | DPNP_FN_ERF, /**< Used in scipy.special.erf impl */
|
125 | 94 | DPNP_FN_ERF_EXT, /**< Used in scipy.special.erf impl, requires extra
|
126 | 95 | parameters */
|
127 | 96 | DPNP_FN_EYE, /**< Used in numpy.eye() impl */
|
128 |
| - DPNP_FN_EXP, /**< Used in numpy.exp() impl */ |
129 |
| - DPNP_FN_EXP2, /**< Used in numpy.exp2() impl */ |
130 |
| - DPNP_FN_EXPM1, /**< Used in numpy.expm1() impl */ |
131 |
| - DPNP_FN_FABS, /**< Used in numpy.fabs() impl */ |
132 | 97 | DPNP_FN_FFT_FFT, /**< Used in numpy.fft.fft() impl */
|
133 | 98 | DPNP_FN_FFT_FFT_EXT, /**< Used in numpy.fft.fft() impl, requires extra
|
134 | 99 | parameters */
|
135 | 100 | DPNP_FN_FFT_RFFT, /**< Used in numpy.fft.rfft() impl */
|
136 | 101 | DPNP_FN_FFT_RFFT_EXT, /**< Used in numpy.fft.rfft() impl, requires extra
|
137 | 102 | parameters */
|
138 | 103 | DPNP_FN_FILL_DIAGONAL, /**< Used in numpy.fill_diagonal() impl */
|
139 |
| - DPNP_FN_FLATTEN, /**< Used in numpy.flatten() impl */ |
140 |
| - DPNP_FN_FLOOR, /**< Used in numpy.floor() impl */ |
141 |
| - DPNP_FN_FLOOR_DIVIDE, /**< Used in numpy.floor_divide() impl */ |
142 |
| - DPNP_FN_FMOD, /**< Used in numpy.fmod() impl */ |
143 | 104 | DPNP_FN_FMOD_EXT, /**< Used in numpy.fmod() impl, requires extra parameters
|
144 | 105 | */
|
145 | 106 | DPNP_FN_FULL, /**< Used in numpy.full() impl */
|
146 | 107 | DPNP_FN_FULL_LIKE, /**< Used in numpy.full_like() impl */
|
147 |
| - DPNP_FN_HYPOT, /**< Used in numpy.hypot() impl */ |
148 | 108 | DPNP_FN_IDENTITY, /**< Used in numpy.identity() impl */
|
149 | 109 | DPNP_FN_INITVAL, /**< Used in numpy ones, ones_like, zeros, zeros_like impls
|
150 | 110 | */
|
151 | 111 | DPNP_FN_INITVAL_EXT, /**< Used in numpy ones, ones_like, zeros, zeros_like
|
152 | 112 | impls */
|
153 |
| - DPNP_FN_INV, /**< Used in numpy.linalg.inv() impl */ |
154 | 113 | DPNP_FN_INVERT, /**< Used in numpy.invert() impl */
|
155 |
| - DPNP_FN_KRON, /**< Used in numpy.kron() impl */ |
156 |
| - DPNP_FN_LEFT_SHIFT, /**< Used in numpy.left_shift() impl */ |
157 |
| - DPNP_FN_LOG, /**< Used in numpy.log() impl */ |
158 |
| - DPNP_FN_LOG10, /**< Used in numpy.log10() impl */ |
159 |
| - DPNP_FN_LOG2, /**< Used in numpy.log2() impl */ |
160 |
| - DPNP_FN_LOG1P, /**< Used in numpy.log1p() impl */ |
161 |
| - DPNP_FN_MATMUL, /**< Used in numpy.matmul() impl */ |
162 |
| - DPNP_FN_MATRIX_RANK, /**< Used in numpy.linalg.matrix_rank() impl */ |
163 | 114 | DPNP_FN_MAX, /**< Used in numpy.max() impl */
|
164 |
| - DPNP_FN_MAXIMUM, /**< Used in numpy.fmax() impl */ |
165 | 115 | DPNP_FN_MAXIMUM_EXT, /**< Used in numpy.fmax() impl , requires extra
|
166 | 116 | parameters */
|
167 | 117 | DPNP_FN_MEAN, /**< Used in numpy.mean() impl */
|
168 | 118 | DPNP_FN_MEDIAN, /**< Used in numpy.median() impl */
|
169 | 119 | DPNP_FN_MEDIAN_EXT, /**< Used in numpy.median() impl, requires extra
|
170 | 120 | parameters */
|
171 | 121 | DPNP_FN_MIN, /**< Used in numpy.min() impl */
|
172 |
| - DPNP_FN_MINIMUM, /**< Used in numpy.fmin() impl */ |
173 | 122 | DPNP_FN_MINIMUM_EXT, /**< Used in numpy.fmax() impl, requires extra
|
174 | 123 | parameters */
|
175 | 124 | DPNP_FN_MODF, /**< Used in numpy.modf() impl */
|
176 | 125 | DPNP_FN_MODF_EXT, /**< Used in numpy.modf() impl, requires extra parameters
|
177 | 126 | */
|
178 | 127 | DPNP_FN_MULTIPLY, /**< Used in numpy.multiply() impl */
|
179 | 128 | DPNP_FN_NANVAR, /**< Used in numpy.nanvar() impl */
|
180 |
| - DPNP_FN_NEGATIVE, /**< Used in numpy.negative() impl */ |
181 | 129 | DPNP_FN_NONZERO, /**< Used in numpy.nonzero() impl */
|
182 | 130 | DPNP_FN_ONES, /**< Used in numpy.ones() impl */
|
183 | 131 | DPNP_FN_ONES_LIKE, /**< Used in numpy.ones_like() impl */
|
184 | 132 | DPNP_FN_PARTITION, /**< Used in numpy.partition() impl */
|
185 | 133 | DPNP_FN_PARTITION_EXT, /**< Used in numpy.partition() impl, requires extra
|
186 | 134 | parameters */
|
187 | 135 | DPNP_FN_PLACE, /**< Used in numpy.place() impl */
|
188 |
| - DPNP_FN_POWER, /**< Used in numpy.power() impl */ |
189 | 136 | DPNP_FN_PROD, /**< Used in numpy.prod() impl */
|
190 | 137 | DPNP_FN_PTP, /**< Used in numpy.ptp() impl */
|
191 | 138 | DPNP_FN_PUT, /**< Used in numpy.put() impl */
|
192 | 139 | DPNP_FN_PUT_ALONG_AXIS, /**< Used in numpy.put_along_axis() impl */
|
193 |
| - DPNP_FN_QR, /**< Used in numpy.linalg.qr() impl */ |
194 | 140 | DPNP_FN_RADIANS, /**< Used in numpy.radians() impl */
|
195 | 141 | DPNP_FN_RADIANS_EXT, /**< Used in numpy.radians() impl, requires extra
|
196 | 142 | parameters */
|
197 |
| - DPNP_FN_REMAINDER, /**< Used in numpy.remainder() impl */ |
198 |
| - DPNP_FN_RECIP, /**< Used in numpy.recip() impl */ |
199 | 143 | DPNP_FN_REPEAT, /**< Used in numpy.repeat() impl */
|
200 |
| - DPNP_FN_RIGHT_SHIFT, /**< Used in numpy.right_shift() impl */ |
201 | 144 | DPNP_FN_RNG_BETA, /**< Used in numpy.random.beta() impl */
|
202 | 145 | DPNP_FN_RNG_BETA_EXT, /**< Used in numpy.random.beta() impl, requires extra
|
203 | 146 | parameters */
|
@@ -316,32 +259,22 @@ enum class DPNPFuncName : size_t
|
316 | 259 | DPNP_FN_RNG_ZIPF_EXT, /**< Used in numpy.random.zipf() impl, requires extra
|
317 | 260 | parameters */
|
318 | 261 | DPNP_FN_SEARCHSORTED, /**< Used in numpy.searchsorted() impl */
|
319 |
| - DPNP_FN_SIGN, /**< Used in numpy.sign() impl */ |
320 |
| - DPNP_FN_SIN, /**< Used in numpy.sin() impl */ |
321 |
| - DPNP_FN_SINH, /**< Used in numpy.sinh() impl */ |
322 | 262 | DPNP_FN_SORT, /**< Used in numpy.sort() impl */
|
323 | 263 | DPNP_FN_SQRT, /**< Used in numpy.sqrt() impl */
|
324 | 264 | DPNP_FN_SQRT_EXT, /**< Used in numpy.sqrt() impl, requires extra parameters
|
325 | 265 | */
|
326 |
| - DPNP_FN_SQUARE, /**< Used in numpy.square() impl */ |
327 | 266 | DPNP_FN_STD, /**< Used in numpy.std() impl */
|
328 |
| - DPNP_FN_SUBTRACT, /**< Used in numpy.subtract() impl */ |
329 | 267 | DPNP_FN_SUBTRACT_EXT, /**< Used in numpy.subtract() impl, requires extra
|
330 | 268 | parameters */
|
331 | 269 | DPNP_FN_SUM, /**< Used in numpy.sum() impl */
|
332 |
| - DPNP_FN_SVD, /**< Used in numpy.linalg.svd() impl */ |
333 | 270 | DPNP_FN_TAKE, /**< Used in numpy.take() impl */
|
334 |
| - DPNP_FN_TAN, /**< Used in numpy.tan() impl */ |
335 |
| - DPNP_FN_TANH, /**< Used in numpy.tanh() impl */ |
336 | 271 | DPNP_FN_TRANSPOSE, /**< Used in numpy.transpose() impl */
|
337 | 272 | DPNP_FN_TRACE, /**< Used in numpy.trace() impl */
|
338 |
| - DPNP_FN_TRAPZ, /**< Used in numpy.trapz() impl */ |
339 | 273 | DPNP_FN_TRAPZ_EXT, /**< Used in numpy.trapz() impl, requires extra
|
340 | 274 | parameters */
|
341 | 275 | DPNP_FN_TRI, /**< Used in numpy.tri() impl */
|
342 | 276 | DPNP_FN_TRIL, /**< Used in numpy.tril() impl */
|
343 | 277 | DPNP_FN_TRIU, /**< Used in numpy.triu() impl */
|
344 |
| - DPNP_FN_TRUNC, /**< Used in numpy.trunc() impl */ |
345 | 278 | DPNP_FN_VANDER, /**< Used in numpy.vander() impl */
|
346 | 279 | DPNP_FN_VAR, /**< Used in numpy.var() impl */
|
347 | 280 | DPNP_FN_ZEROS, /**< Used in numpy.zeros() impl */
|
|
0 commit comments