blob: 8118c4701fba1122b984d2024af3fc6dec3d58da [file] [log] [blame]
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001/*
Sang-Hoon Parkdcf3c7e2021-03-04 17:03:46 +00002 * Copyright (c) 2016-2021 Arm Limited.
Anthony Barbier6ff3b192017-09-04 18:44:23 +01003 *
4 * SPDX-License-Identifier: MIT
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to
8 * deal in the Software without restriction, including without limitation the
9 * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
10 * sell copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice shall be included in all
14 * copies or substantial portions of the Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22 * SOFTWARE.
23 */
Manuel Bottini21079dd2019-10-29 17:20:09 +000024#ifndef ARM_COMPUTE_NEMATH_H
25#define ARM_COMPUTE_NEMATH_H
Anthony Barbier6ff3b192017-09-04 18:44:23 +010026
27#include <arm_neon.h>
morgolock3155f772020-05-11 16:00:04 +010028#include <array>
Anthony Barbier6ff3b192017-09-04 18:44:23 +010029
30namespace arm_compute
31{
Georgios Pinitasd8e765b2017-08-02 13:44:33 +010032/** Calculate floor of a vector.
33 *
34 * @param[in] val Input vector value in F32 format.
35 *
36 * @return The calculated floor vector.
37 */
38float32x4_t vfloorq_f32(float32x4_t val);
39
Usama Arif0a5a57a2019-05-23 14:20:33 +010040/** Calculate round value of a vector to nearest with ties to even.
41 *
42 * @param[in] val Input vector value in F32 format.
43 *
44 * @return The calculated round vector.
45 */
46float32x4_t vroundq_rte_f32(float32x4_t val);
47
Anthony Barbier6ff3b192017-09-04 18:44:23 +010048/** Calculate inverse square root.
49 *
50 * @param[in] x Input value.
51 *
52 * @return The calculated inverse square root.
53 */
Georgios Pinitascdf51452017-08-31 14:21:36 +010054float32x2_t vinvsqrt_f32(float32x2_t x);
Anthony Barbier6ff3b192017-09-04 18:44:23 +010055
Pablo Tello8fda1cb2017-07-05 15:20:38 +010056/** Calculate inverse square root.
57 *
58 * @param[in] x Input value.
59 *
60 * @return The calculated inverse square root.
61 */
Georgios Pinitascdf51452017-08-31 14:21:36 +010062float32x4_t vinvsqrtq_f32(float32x4_t x);
63
64/** Calculate reciprocal.
65 *
66 * @param[in] x Input value.
67 *
68 * @return The calculated reciprocal.
69 */
70float32x2_t vinv_f32(float32x2_t x);
Pablo Tello8fda1cb2017-07-05 15:20:38 +010071
Anthony Barbier6ff3b192017-09-04 18:44:23 +010072/** Calculate reciprocal.
73 *
74 * @param[in] x Input value.
75 *
76 * @return The calculated reciprocal.
77 */
78float32x4_t vinvq_f32(float32x4_t x);
79
80/** Perform a 7th degree polynomial approximation using Estrin's method.
81 *
82 * @param[in] x Input vector value in F32 format.
83 * @param[in] coeffs Polynomial coefficients table.
84 *
85 * @return The calculated approximation.
86 */
87float32x4_t vtaylor_polyq_f32(float32x4_t x, const std::array<float32x4_t, 8> &coeffs);
88
89/** Calculate exponential
90 *
91 * @param[in] x Input vector value in F32 format.
92 *
93 * @return The calculated exponent.
94 */
95float32x4_t vexpq_f32(float32x4_t x);
96
97/** Calculate logarithm
98 *
99 * @param[in] x Input vector value in F32 format.
100 *
101 * @return The calculated logarithm.
102 */
103float32x4_t vlogq_f32(float32x4_t x);
104
105/** Calculate hyperbolic tangent.
106 *
107 * tanh(x) = (e^2x - 1)/(e^2x + 1)
108 *
109 * @note We clamp x to [-5,5] to avoid overflowing issues.
110 *
111 * @param[in] val Input vector value in F32 format.
112 *
113 * @return The calculated Hyperbolic Tangent.
114 */
115float32x4_t vtanhq_f32(float32x4_t val);
116
117/** Calculate n power of a number.
118 *
119 * pow(x,n) = e^(n*log(x))
120 *
121 * @param[in] val Input vector value in F32 format.
122 * @param[in] n Powers to raise the input to.
123 *
124 * @return The calculated power.
125 */
126float32x4_t vpowq_f32(float32x4_t val, float32x4_t n);
Pablo Tellodf246182017-07-03 16:25:09 +0100127
Manuel Bottini7bb56c62019-06-26 15:17:09 +0100128/** Round to the nearest division by a power-of-two using exponent
129 *
130 * @note This function calculates the following expression: (x + 2^n -1 ) / 2^n where n = exponent
131 *
132 * @param[in] x Vector of 4 elements
Georgios Pinitasdbdea0d2019-10-16 19:21:40 +0100133 * @param[in] exponent Vector of 4 elements with integer value used to round to nearest division by a power-of-two
134 *
135 * @return the nearest division by a power-of-two using exponent
136 */
137int32x4_t rounding_divide_by_pow2(int32x4_t x, int32x4_t exponent);
138
139/** Round to the nearest division by a power-of-two using exponent
140 *
141 * @note This function calculates the following expression: (x + 2^n -1 ) / 2^n where n = exponent
142 *
143 * @param[in] x Vector of 4 elements
Manuel Bottini7bb56c62019-06-26 15:17:09 +0100144 * @param[in] exponent Integer value used to round to nearest division by a power-of-two
145 *
146 * @return the nearest division by a power-of-two using exponent
147 */
148int32x4_t rounding_divide_by_pow2(int32x4_t x, int exponent);
149
150/** Round to the nearest division by a power-of-two using exponent
151 *
152 * @note This function calculates the following expression: (x + 2^n -1 ) / 2^n where n = exponent
153 *
154 * @param[in] x Element to divide.
155 * @param[in] exponent Integer value used to round to nearest division by a power-of-two
156 *
157 * @return the nearest division by a power-of-two using exponent
158 */
159int32_t rounding_divide_by_pow2(int32_t x, int exponent);
160
Manuel Bottini21079dd2019-10-29 17:20:09 +0000161/** Converts from uint8x16 to float32x4x4_t
162 *
163 * @param[in] in Vector of uint8 to be converted
164 *
165 * @return Converted vector of float
166 */
167float32x4x4_t convert_uint8x16_to_float32x4x4(const uint8x16_t &in);
168
Sang-Hoon Parkc3a74202019-11-22 16:05:46 +0000169/** Converts from int8x16 to float32x4x4_t
170 *
171 * @param[in] in Vector of int8 to be converted
172 *
173 * @return Converted vector of float
174 */
175float32x4x4_t convert_int8x16_to_float32x4x4(const int8x16_t &in);
176
Manuel Bottini4370cff2020-02-07 16:31:59 +0000177/** Converts to float32x4x4_t from the specified templated 16 elements vectors
178 *
179 * @param[in] in Vector of float to be converted
180 *
181 * @return Converted vector of float
182 */
183template <typename T>
184float32x4x4_t convert_to_float32x4x4(const T &in);
185
Manuel Bottini21079dd2019-10-29 17:20:09 +0000186/** Converts from two float32x4x3_t to just one uint8x8x3_t
187 *
188 * @param[in] in1 First input vector of float to be converted
189 * @param[in] in2 Second input vector of float to be converted
190 * @param[out] out Converted output vector uint8 to store the result
191 */
192void convert_float32x4x3_to_uint8x8x3(const float32x4x3_t &in1, const float32x4x3_t &in2, uint8x8x3_t &out);
193
194/** Converts from two float32x4x4_t to just one uint8x16_t
195 *
196 * @param[in] in Vector of float to be converted
197 * @param[out] out Converted vector of uint8 to store the result
198 */
Sang-Hoon Parkc3a74202019-11-22 16:05:46 +0000199void convert_float32x4x4_to_uint8x16(const float32x4x4_t &in, uint8x16_t &out);
200
201/** Converts from float32x4x4_t to just one int8x16_t
202 *
203 * @param[in] in Vector of float to be converted
204 * @param[out] out Converted vector of uint8 to store the result
205 */
206void convert_float32x4x4_to_int8x16(const float32x4x4_t &in, int8x16_t &out);
Manuel Bottini21079dd2019-10-29 17:20:09 +0000207
Sang-Hoon Parkdcf3c7e2021-03-04 17:03:46 +0000208/** Converts from float vector to integer vector
209 *
210 * @param[in] in Float vector to converted
211 *
212 * @return The converted integer vector
213 */
214template <typename float_vec_type, typename int_vec_type>
215int_vec_type convert_float_to_int(const float_vec_type &in);
216
217/** Converts from integer vector to float vector
218 *
219 * @param[in] in Integer vector to converted
220 *
221 * @return The converted float vector
222 */
223template <typename float_vec_type, typename int_vec_type>
224float_vec_type convert_int_to_float(const int_vec_type &in);
225
Manuel Bottinied753262019-05-15 15:30:47 +0100226/** Calculate sine.
227 *
228 * @param[in] val Input vector value in radians, F32 format.
229 *
230 * @return The calculated sine.
231 */
232float32x4_t vsinq_f32(float32x4_t val);
233
234/** Calculate sine.
235 *
236 * @param[in] val Input vector value in radians, F32 format.
237 *
238 * @return The calculated sine.
239 */
240float32x2_t vsin_f32(float32x2_t val);
241
Sheri Zhang5dda2172021-10-15 19:54:17 +0100242/** Reduce a vector to be a scalar by accumulating all lanes in the vector
243 *
244 * @param[in] v Vector to be reduced.
245 *
246 * @return the wrapped-around number.
247 */
248float vreduce(const float32x4_t &v);
249
Ioan-Cristian Szabo5edbd1c2017-11-13 13:34:08 +0000250#ifdef __ARM_FEATURE_FP16_VECTOR_ARITHMETIC
Pablo Tello91654c42017-07-05 11:32:17 +0100251/** Calculate hyperbolic tangent.
252 *
253 * tanh(x) = (e^2x - 1)/(e^2x + 1)
254 *
255 * @note We clamp x to [-5,5] to avoid overflowing issues.
256 *
Usama Arif0a5a57a2019-05-23 14:20:33 +0100257 * @param[in] val Input vector value in F16 format.
Pablo Tello91654c42017-07-05 11:32:17 +0100258 *
259 * @return The calculated Hyperbolic Tangent.
260 */
261float16x8_t vtanhq_f16(float16x8_t val);
Georgios Pinitascdf51452017-08-31 14:21:36 +0100262
Usama Arif0a5a57a2019-05-23 14:20:33 +0100263/** Calculate round value of a vector to nearest with ties to even.
264 *
265 * @param[in] val Input vector value in F16 format.
266 *
267 * @return The calculated round vector.
268 */
269float16x8_t vroundq_rte_f16(float16x8_t val);
270
Georgios Pinitascdf51452017-08-31 14:21:36 +0100271/** Calculate reciprocal.
272 *
273 * @param[in] x Input value.
274 *
275 * @return The calculated reciprocal.
276 */
277float16x4_t vinv_f16(float16x4_t x);
278
279/** Calculate reciprocal.
280 *
281 * @param[in] x Input value.
282 *
283 * @return The calculated reciprocal.
284 */
285float16x8_t vinvq_f16(float16x8_t x);
286
287/** Calculate inverse square root.
288 *
289 * @param[in] x Input value.
290 *
291 * @return The calculated inverse square root.
292 */
293float16x4_t vinvsqrt_f16(float16x4_t x);
294
Pablo Tello91654c42017-07-05 11:32:17 +0100295/** Calculate inverse square root.
296 *
297 * @param[in] x Input value.
298 *
299 * @return The calculated inverse square root.
300 */
301float16x8_t vinvsqrtq_f16(float16x8_t x);
Georgios Pinitascdf51452017-08-31 14:21:36 +0100302
Pablo Tellodf246182017-07-03 16:25:09 +0100303/** Calculate exponential
304 *
305 * @param[in] x Input vector value in F16 format.
306 *
307 * @return The calculated exponent.
308 */
309float16x8_t vexpq_f16(float16x8_t x);
Georgios Pinitascdf51452017-08-31 14:21:36 +0100310
Pablo Tellodf246182017-07-03 16:25:09 +0100311/** Calculate n power of a number.
312 *
313 * pow(x,n) = e^(n*log(x))
314 *
315 * @param[in] val Input vector value in F16 format.
316 * @param[in] n Powers to raise the input to.
317 *
318 * @return The calculated power.
319 */
320float16x8_t vpowq_f16(float16x8_t val, float16x8_t n);
Manuel Bottinied753262019-05-15 15:30:47 +0100321
322/** Calculate sine.
323 *
324 * @param[in] val Input vector value in radians, F16 format.
325 *
326 * @return The calculated sine.
327 */
328float16x8_t vsinq_f16(float16x8_t val);
329
Sheri Zhang5dda2172021-10-15 19:54:17 +0100330/** Reduce a vector to be a scalar by accumulating all lanes in the vector
331 *
332 * @param[in] v Vector to be reduced.
333 *
334 * @return the wrapped-around number.
335 */
336float16_t vreduce(const float16x8_t &v);
Ioan-Cristian Szabo5edbd1c2017-11-13 13:34:08 +0000337#endif /* __ARM_FEATURE_FP16_VECTOR_ARITHMETIC */
Gian Marco Iodice356f6432017-09-22 11:32:21 +0100338} // namespace arm_compute
Georgios Pinitasddb93bb2020-10-02 16:38:59 +0100339#include "src/core/NEON/NEMath.inl"
Manuel Bottini21079dd2019-10-29 17:20:09 +0000340#endif /* ARM_COMPUTE_NEMATH_H */