|
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 */ |
|
0 commit comments