|
58 | 58 | */
|
59 | 59 | enum class DPNPFuncName : size_t
|
60 | 60 | {
|
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 |
| - DPNP_FN_ADD_EXT, /**< Used in numpy.add() impl, requires extra parameters */ |
65 |
| - DPNP_FN_ALL, /**< Used in numpy.all() impl */ |
| 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 | + DPNP_FN_ALL, /**< Used in numpy.all() impl */ |
66 | 65 | DPNP_FN_ALLCLOSE, /**< Used in numpy.allclose() impl */
|
67 | 66 | DPNP_FN_ALLCLOSE_EXT, /**< Used in numpy.allclose() impl, requires extra
|
68 | 67 | parameters */
|
@@ -123,8 +122,6 @@ enum class DPNPFuncName : size_t
|
123 | 122 | DPNP_FN_DIAGONAL_EXT, /**< Used in numpy.diagonal() impl, requires extra
|
124 | 123 | parameters */
|
125 | 124 | DPNP_FN_DIVIDE, /**< Used in numpy.divide() impl */
|
126 |
| - DPNP_FN_DIVIDE_EXT, /**< Used in numpy.divide() impl, requires extra |
127 |
| - parameters */ |
128 | 125 | DPNP_FN_DOT, /**< Used in numpy.dot() impl */
|
129 | 126 | DPNP_FN_DOT_EXT, /**< Used in numpy.dot() impl, requires extra parameters */
|
130 | 127 | DPNP_FN_EDIFF1D, /**< Used in numpy.ediff1d() impl */
|
@@ -158,8 +155,6 @@ enum class DPNPFuncName : size_t
|
158 | 155 | DPNP_FN_FLATTEN, /**< Used in numpy.flatten() impl */
|
159 | 156 | DPNP_FN_FLOOR, /**< Used in numpy.floor() impl */
|
160 | 157 | DPNP_FN_FLOOR_DIVIDE, /**< Used in numpy.floor_divide() impl */
|
161 |
| - DPNP_FN_FLOOR_DIVIDE_EXT, /**< Used in numpy.floor_divide() impl, requires |
162 |
| - extra parameters */ |
163 | 158 | DPNP_FN_FMOD, /**< Used in numpy.fmod() impl */
|
164 | 159 | DPNP_FN_FMOD_EXT, /**< Used in numpy.fmod() impl, requires extra parameters
|
165 | 160 | */
|
@@ -194,17 +189,15 @@ enum class DPNPFuncName : size_t
|
194 | 189 | DPNP_FN_MINIMUM_EXT, /**< Used in numpy.fmax() impl, requires extra
|
195 | 190 | parameters */
|
196 | 191 | DPNP_FN_MODF, /**< Used in numpy.modf() impl */
|
197 |
| - DPNP_FN_MODF_EXT, /**< Used in numpy.modf() impl, requires extra parameters |
198 |
| - */ |
199 |
| - DPNP_FN_MULTIPLY, /**< Used in numpy.multiply() impl */ |
200 |
| - DPNP_FN_MULTIPLY_EXT, /**< Used in numpy.multiply() impl, requires extra |
201 |
| - parameters */ |
202 |
| - DPNP_FN_NANVAR, /**< Used in numpy.nanvar() impl */ |
203 |
| - DPNP_FN_NEGATIVE, /**< Used in numpy.negative() impl */ |
204 |
| - DPNP_FN_NONZERO, /**< Used in numpy.nonzero() impl */ |
205 |
| - DPNP_FN_ONES, /**< Used in numpy.ones() impl */ |
206 |
| - DPNP_FN_ONES_LIKE, /**< Used in numpy.ones_like() impl */ |
207 |
| - DPNP_FN_PARTITION, /**< Used in numpy.partition() impl */ |
| 192 | + DPNP_FN_MODF_EXT, /**< Used in numpy.modf() impl, requires extra parameters |
| 193 | + */ |
| 194 | + DPNP_FN_MULTIPLY, /**< Used in numpy.multiply() impl */ |
| 195 | + DPNP_FN_NANVAR, /**< Used in numpy.nanvar() impl */ |
| 196 | + DPNP_FN_NEGATIVE, /**< Used in numpy.negative() impl */ |
| 197 | + DPNP_FN_NONZERO, /**< Used in numpy.nonzero() impl */ |
| 198 | + DPNP_FN_ONES, /**< Used in numpy.ones() impl */ |
| 199 | + DPNP_FN_ONES_LIKE, /**< Used in numpy.ones_like() impl */ |
| 200 | + DPNP_FN_PARTITION, /**< Used in numpy.partition() impl */ |
208 | 201 | DPNP_FN_PARTITION_EXT, /**< Used in numpy.partition() impl, requires extra
|
209 | 202 | parameters */
|
210 | 203 | DPNP_FN_PLACE, /**< Used in numpy.place() impl */
|
@@ -346,34 +339,32 @@ enum class DPNPFuncName : size_t
|
346 | 339 | DPNP_FN_SINH, /**< Used in numpy.sinh() impl */
|
347 | 340 | DPNP_FN_SORT, /**< Used in numpy.sort() impl */
|
348 | 341 | DPNP_FN_SQRT, /**< Used in numpy.sqrt() impl */
|
349 |
| - DPNP_FN_SQRT_EXT, /**< Used in numpy.sqrt() impl, requires extra parameters |
350 |
| - */ |
351 |
| - DPNP_FN_SQUARE, /**< Used in numpy.square() impl */ |
352 |
| - DPNP_FN_STD, /**< Used in numpy.std() impl */ |
353 |
| - DPNP_FN_SUBTRACT, /**< Used in numpy.subtract() impl */ |
354 |
| - DPNP_FN_SUBTRACT_EXT, /**< Used in numpy.subtract() impl, requires extra |
355 |
| - parameters */ |
356 |
| - DPNP_FN_SUM, /**< Used in numpy.sum() impl */ |
357 |
| - DPNP_FN_SVD, /**< Used in numpy.linalg.svd() impl */ |
358 |
| - DPNP_FN_TAKE, /**< Used in numpy.take() impl */ |
359 |
| - DPNP_FN_TAN, /**< Used in numpy.tan() impl */ |
360 |
| - DPNP_FN_TANH, /**< Used in numpy.tanh() impl */ |
361 |
| - DPNP_FN_TRANSPOSE, /**< Used in numpy.transpose() impl */ |
362 |
| - DPNP_FN_TRACE, /**< Used in numpy.trace() impl */ |
363 |
| - DPNP_FN_TRACE_EXT, /**< Used in numpy.trace() impl, requires extra |
364 |
| - parameters */ |
365 |
| - DPNP_FN_TRAPZ, /**< Used in numpy.trapz() impl */ |
366 |
| - DPNP_FN_TRAPZ_EXT, /**< Used in numpy.trapz() impl, requires extra |
367 |
| - parameters */ |
368 |
| - DPNP_FN_TRI, /**< Used in numpy.tri() impl */ |
369 |
| - DPNP_FN_TRIL, /**< Used in numpy.tril() impl */ |
370 |
| - DPNP_FN_TRIU, /**< Used in numpy.triu() impl */ |
371 |
| - DPNP_FN_TRUNC, /**< Used in numpy.trunc() impl */ |
372 |
| - DPNP_FN_VANDER, /**< Used in numpy.vander() impl */ |
373 |
| - DPNP_FN_VAR, /**< Used in numpy.var() impl */ |
374 |
| - DPNP_FN_ZEROS, /**< Used in numpy.zeros() impl */ |
375 |
| - DPNP_FN_ZEROS_LIKE, /**< Used in numpy.zeros_like() impl */ |
376 |
| - DPNP_FN_LAST, /**< The latest element of the enumeration */ |
| 342 | + DPNP_FN_SQRT_EXT, /**< Used in numpy.sqrt() impl, requires extra parameters |
| 343 | + */ |
| 344 | + DPNP_FN_SQUARE, /**< Used in numpy.square() impl */ |
| 345 | + DPNP_FN_STD, /**< Used in numpy.std() impl */ |
| 346 | + DPNP_FN_SUBTRACT, /**< Used in numpy.subtract() impl */ |
| 347 | + DPNP_FN_SUM, /**< Used in numpy.sum() impl */ |
| 348 | + DPNP_FN_SVD, /**< Used in numpy.linalg.svd() impl */ |
| 349 | + DPNP_FN_TAKE, /**< Used in numpy.take() impl */ |
| 350 | + DPNP_FN_TAN, /**< Used in numpy.tan() impl */ |
| 351 | + DPNP_FN_TANH, /**< Used in numpy.tanh() impl */ |
| 352 | + DPNP_FN_TRANSPOSE, /**< Used in numpy.transpose() impl */ |
| 353 | + DPNP_FN_TRACE, /**< Used in numpy.trace() impl */ |
| 354 | + DPNP_FN_TRACE_EXT, /**< Used in numpy.trace() impl, requires extra |
| 355 | + parameters */ |
| 356 | + DPNP_FN_TRAPZ, /**< Used in numpy.trapz() impl */ |
| 357 | + DPNP_FN_TRAPZ_EXT, /**< Used in numpy.trapz() impl, requires extra |
| 358 | + parameters */ |
| 359 | + DPNP_FN_TRI, /**< Used in numpy.tri() impl */ |
| 360 | + DPNP_FN_TRIL, /**< Used in numpy.tril() impl */ |
| 361 | + DPNP_FN_TRIU, /**< Used in numpy.triu() impl */ |
| 362 | + DPNP_FN_TRUNC, /**< Used in numpy.trunc() impl */ |
| 363 | + DPNP_FN_VANDER, /**< Used in numpy.vander() impl */ |
| 364 | + DPNP_FN_VAR, /**< Used in numpy.var() impl */ |
| 365 | + DPNP_FN_ZEROS, /**< Used in numpy.zeros() impl */ |
| 366 | + DPNP_FN_ZEROS_LIKE, /**< Used in numpy.zeros_like() impl */ |
| 367 | + DPNP_FN_LAST, /**< The latest element of the enumeration */ |
377 | 368 | };
|
378 | 369 |
|
379 | 370 | /**
|
|
0 commit comments