|
59 | 59 | */
|
60 | 60 | enum class DPNPFuncName : size_t
|
61 | 61 | {
|
62 |
| - DPNP_FN_NONE, /**< Very first element of the enumeration */ |
63 |
| - DPNP_FN_ADD, /**< Used in numpy.add() implementation */ |
64 |
| - DPNP_FN_ARCCOS, /**< Used in numpy.arccos() implementation */ |
65 |
| - DPNP_FN_ARCCOSH, /**< Used in numpy.arccosh() implementation */ |
66 |
| - DPNP_FN_ARCSIN, /**< Used in numpy.arcsin() implementation */ |
67 |
| - DPNP_FN_ARCSINH, /**< Used in numpy.arcsinh() implementation */ |
68 |
| - DPNP_FN_ARCTAN, /**< Used in numpy.arctan() implementation */ |
69 |
| - DPNP_FN_ARCTAN2, /**< Used in numpy.arctan2() implementation */ |
70 |
| - DPNP_FN_ARCTANH, /**< Used in numpy.arctanh() implementation */ |
71 |
| - DPNP_FN_ARGMAX, /**< Used in numpy.argmax() implementation */ |
72 |
| - DPNP_FN_ARGMIN, /**< Used in numpy.argmin() implementation */ |
73 |
| - DPNP_FN_ARGSORT, /**< Used in numpy.argsort() implementation */ |
74 |
| - DPNP_FN_CBRT, /**< Used in numpy.cbrt() implementation */ |
75 |
| - DPNP_FN_CEIL, /**< Used in numpy.ceil() implementation */ |
76 |
| - DPNP_FN_COS, /**< Used in numpy.cos() implementation */ |
77 |
| - DPNP_FN_COSH, /**< Used in numpy.cosh() implementation */ |
78 |
| - DPNP_FN_COV, /**< Used in numpy.cov() implementation */ |
79 |
| - DPNP_FN_DEGREES, /**< Used in numpy.degrees() implementation */ |
80 |
| - DPNP_FN_DIVIDE, /**< Used in numpy.divide() implementation */ |
81 |
| - DPNP_FN_DOT, /**< Used in numpy.dot() implementation */ |
82 |
| - DPNP_FN_EIG, /**< Used in numpy.linalg.eig() implementation */ |
83 |
| - DPNP_FN_EXP, /**< Used in numpy.exp() implementation */ |
84 |
| - DPNP_FN_EXP2, /**< Used in numpy.exp2() implementation */ |
85 |
| - DPNP_FN_EXPM1, /**< Used in numpy.expm1() implementation */ |
86 |
| - DPNP_FN_FABS, /**< Used in numpy.fabs() implementation */ |
87 |
| - DPNP_FN_FLOOR, /**< Used in numpy.floor() implementation */ |
88 |
| - DPNP_FN_FMOD, /**< Used in numpy.fmod() implementation */ |
89 |
| - DPNP_FN_GAUSSIAN, /**< Used in numpy.random.randn() implementation */ |
90 |
| - DPNP_FN_HYPOT, /**< Used in numpy.hypot() implementation */ |
91 |
| - DPNP_FN_LOG, /**< Used in numpy.log() implementation */ |
92 |
| - DPNP_FN_LOG10, /**< Used in numpy.log10() implementation */ |
93 |
| - DPNP_FN_LOG2, /**< Used in numpy.log2() implementation */ |
94 |
| - DPNP_FN_LOG1P, /**< Used in numpy.log1p() implementation */ |
95 |
| - DPNP_FN_MATMUL, /**< Used in numpy.matmul() implementation */ |
96 |
| - DPNP_FN_MAXIMUM, /**< Used in numpy.maximum() implementation */ |
97 |
| - DPNP_FN_MINIMUM, /**< Used in numpy.minimum() implementation */ |
98 |
| - DPNP_FN_MULTIPLY, /**< Used in numpy.multiply() implementation */ |
99 |
| - DPNP_FN_POWER, /**< Used in numpy.random.power() implementation */ |
100 |
| - DPNP_FN_PROD, /**< Used in numpy.prod() implementation */ |
101 |
| - DPNP_FN_UNIFORM, /**< Used in numpy.random.uniform() implementation */ |
102 |
| - DPNP_FN_RADIANS, /**< Used in numpy.radians() implementation */ |
103 |
| - DPNP_FN_RANDOM, /**< Used in numpy.random.random() implementation */ |
104 |
| - DPNP_FN_RECIP, /**< Used in numpy.recip() implementation */ |
105 |
| - DPNP_FN_SIGN, /**< Used in numpy.sign() implementation */ |
106 |
| - DPNP_FN_SIN, /**< Used in numpy.sin() implementation */ |
107 |
| - DPNP_FN_SINH, /**< Used in numpy.sinh() implementation */ |
108 |
| - DPNP_FN_SORT, /**< Used in numpy.sort() implementation */ |
109 |
| - DPNP_FN_SQRT, /**< Used in numpy.sqrt() implementation */ |
| 62 | + DPNP_FN_NONE, /**< Very first element of the enumeration */ |
| 63 | + DPNP_FN_ADD, /**< Used in numpy.add() implementation */ |
| 64 | + DPNP_FN_ARCCOS, /**< Used in numpy.arccos() implementation */ |
| 65 | + DPNP_FN_ARCCOSH, /**< Used in numpy.arccosh() implementation */ |
| 66 | + DPNP_FN_ARCSIN, /**< Used in numpy.arcsin() implementation */ |
| 67 | + DPNP_FN_ARCSINH, /**< Used in numpy.arcsinh() implementation */ |
| 68 | + DPNP_FN_ARCTAN, /**< Used in numpy.arctan() implementation */ |
| 69 | + DPNP_FN_ARCTAN2, /**< Used in numpy.arctan2() implementation */ |
| 70 | + DPNP_FN_ARCTANH, /**< Used in numpy.arctanh() implementation */ |
| 71 | + DPNP_FN_ARGMAX, /**< Used in numpy.argmax() implementation */ |
| 72 | + DPNP_FN_ARGMIN, /**< Used in numpy.argmin() implementation */ |
| 73 | + DPNP_FN_ARGSORT, /**< Used in numpy.argsort() implementation */ |
| 74 | + DPNP_FN_CBRT, /**< Used in numpy.cbrt() implementation */ |
| 75 | + DPNP_FN_CEIL, /**< Used in numpy.ceil() implementation */ |
| 76 | + DPNP_FN_COS, /**< Used in numpy.cos() implementation */ |
| 77 | + DPNP_FN_COSH, /**< Used in numpy.cosh() implementation */ |
| 78 | + DPNP_FN_COV, /**< Used in numpy.cov() implementation */ |
| 79 | + DPNP_FN_DEGREES, /**< Used in numpy.degrees() implementation */ |
| 80 | + DPNP_FN_DIVIDE, /**< Used in numpy.divide() implementation */ |
| 81 | + DPNP_FN_DOT, /**< Used in numpy.dot() implementation */ |
| 82 | + DPNP_FN_EIG, /**< Used in numpy.linalg.eig() implementation */ |
| 83 | + DPNP_FN_EXP, /**< Used in numpy.exp() implementation */ |
| 84 | + DPNP_FN_EXP2, /**< Used in numpy.exp2() implementation */ |
| 85 | + DPNP_FN_EXPM1, /**< Used in numpy.expm1() implementation */ |
| 86 | + DPNP_FN_FABS, /**< Used in numpy.fabs() implementation */ |
| 87 | + DPNP_FN_FLOOR, /**< Used in numpy.floor() implementation */ |
| 88 | + DPNP_FN_FMOD, /**< Used in numpy.fmod() implementation */ |
| 89 | + DPNP_FN_GAUSSIAN, /**< Used in numpy.random.randn() implementation */ |
| 90 | + DPNP_FN_HYPOT, /**< Used in numpy.hypot() implementation */ |
| 91 | + DPNP_FN_LOG, /**< Used in numpy.log() implementation */ |
| 92 | + DPNP_FN_LOG10, /**< Used in numpy.log10() implementation */ |
| 93 | + DPNP_FN_LOG2, /**< Used in numpy.log2() implementation */ |
| 94 | + DPNP_FN_LOG1P, /**< Used in numpy.log1p() implementation */ |
| 95 | + DPNP_FN_MATMUL, /**< Used in numpy.matmul() implementation */ |
| 96 | + DPNP_FN_MAX, /**< Used in numpy.max() implementation */ |
| 97 | + DPNP_FN_MAXIMUM, /**< Used in numpy.maximum() implementation */ |
| 98 | + DPNP_FN_MEAN, /**< Used in numpy.mean() implementation */ |
| 99 | + DPNP_FN_MEDIAN, /**< Used in numpy.median() implementation */ |
| 100 | + DPNP_FN_MIN, /**< Used in numpy.min() implementation */ |
| 101 | + DPNP_FN_MINIMUM, /**< Used in numpy.minimum() implementation */ |
| 102 | + DPNP_FN_MULTIPLY, /**< Used in numpy.multiply() implementation */ |
| 103 | + DPNP_FN_POWER, /**< Used in numpy.random.power() implementation */ |
| 104 | + DPNP_FN_PROD, /**< Used in numpy.prod() implementation */ |
| 105 | + DPNP_FN_UNIFORM, /**< Used in numpy.random.uniform() implementation */ |
| 106 | + DPNP_FN_RADIANS, /**< Used in numpy.radians() implementation */ |
| 107 | + DPNP_FN_RANDOM, /**< Used in numpy.random.random() implementation */ |
| 108 | + DPNP_FN_RECIP, /**< Used in numpy.recip() implementation */ |
| 109 | + DPNP_FN_SIGN, /**< Used in numpy.sign() implementation */ |
| 110 | + DPNP_FN_SIN, /**< Used in numpy.sin() implementation */ |
| 111 | + DPNP_FN_SINH, /**< Used in numpy.sinh() implementation */ |
| 112 | + DPNP_FN_SORT, /**< Used in numpy.sort() implementation */ |
| 113 | + DPNP_FN_SQRT, /**< Used in numpy.sqrt() implementation */ |
110 | 114 | DPNP_FN_SQUARE, /**< Used in numpy.square() implementation */
|
111 |
| - DPNP_FN_SUBTRACT, /**< Used in numpy.subtract() implementation */ |
112 |
| - DPNP_FN_SUM, /**< Used in numpy.sum() implementation */ |
113 |
| - DPNP_FN_TAN, /**< Used in numpy.tan() implementation */ |
| 115 | + DPNP_FN_SUBTRACT, /**< Used in numpy.subtract() implementation */ |
| 116 | + DPNP_FN_SUM, /**< Used in numpy.sum() implementation */ |
| 117 | + DPNP_FN_TAN, /**< Used in numpy.tan() implementation */ |
114 | 118 | DPNP_FN_TANH, /**< Used in numpy.tanh() implementation */
|
115 | 119 | DPNP_FN_TRANSPOSE, /**< Used in numpy.transpose() implementation */
|
116 |
| - DPNP_FN_TRUNC, /**< Used in numpy.trunc() implementation */ |
117 |
| - DPNP_FN_LAST /**< The latest element of the enumeration */ |
| 120 | + DPNP_FN_TRUNC, /**< Used in numpy.trunc() implementation */ |
| 121 | + DPNP_FN_LAST /**< The latest element of the enumeration */ |
118 | 122 | };
|
119 | 123 |
|
120 | 124 | /**
|
|
0 commit comments