blob: 46d97f6a0dfd02504a2f305e5619dc25107fab52 [file] [log] [blame]
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001/*
Usama Arif0a5a57a2019-05-23 14:20:33 +01002 * Copyright (c) 2016-2019 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 */
24#ifndef __ARM_COMPUTE_NEMATH_H__
25#define __ARM_COMPUTE_NEMATH_H__
26
27#include <arm_neon.h>
28
29namespace arm_compute
30{
Georgios Pinitasd8e765b2017-08-02 13:44:33 +010031/** Calculate floor of a vector.
32 *
33 * @param[in] val Input vector value in F32 format.
34 *
35 * @return The calculated floor vector.
36 */
37float32x4_t vfloorq_f32(float32x4_t val);
38
Usama Arif0a5a57a2019-05-23 14:20:33 +010039/** Calculate round value of a vector to nearest with ties to even.
40 *
41 * @param[in] val Input vector value in F32 format.
42 *
43 * @return The calculated round vector.
44 */
45float32x4_t vroundq_rte_f32(float32x4_t val);
46
Anthony Barbier6ff3b192017-09-04 18:44:23 +010047/** Calculate inverse square root.
48 *
49 * @param[in] x Input value.
50 *
51 * @return The calculated inverse square root.
52 */
Georgios Pinitascdf51452017-08-31 14:21:36 +010053float32x2_t vinvsqrt_f32(float32x2_t x);
Anthony Barbier6ff3b192017-09-04 18:44:23 +010054
Pablo Tello8fda1cb2017-07-05 15:20:38 +010055/** Calculate inverse square root.
56 *
57 * @param[in] x Input value.
58 *
59 * @return The calculated inverse square root.
60 */
Georgios Pinitascdf51452017-08-31 14:21:36 +010061float32x4_t vinvsqrtq_f32(float32x4_t x);
62
63/** Calculate reciprocal.
64 *
65 * @param[in] x Input value.
66 *
67 * @return The calculated reciprocal.
68 */
69float32x2_t vinv_f32(float32x2_t x);
Pablo Tello8fda1cb2017-07-05 15:20:38 +010070
Anthony Barbier6ff3b192017-09-04 18:44:23 +010071/** Calculate reciprocal.
72 *
73 * @param[in] x Input value.
74 *
75 * @return The calculated reciprocal.
76 */
77float32x4_t vinvq_f32(float32x4_t x);
78
79/** Perform a 7th degree polynomial approximation using Estrin's method.
80 *
81 * @param[in] x Input vector value in F32 format.
82 * @param[in] coeffs Polynomial coefficients table.
83 *
84 * @return The calculated approximation.
85 */
86float32x4_t vtaylor_polyq_f32(float32x4_t x, const std::array<float32x4_t, 8> &coeffs);
87
88/** Calculate exponential
89 *
90 * @param[in] x Input vector value in F32 format.
91 *
92 * @return The calculated exponent.
93 */
94float32x4_t vexpq_f32(float32x4_t x);
95
96/** Calculate logarithm
97 *
98 * @param[in] x Input vector value in F32 format.
99 *
100 * @return The calculated logarithm.
101 */
102float32x4_t vlogq_f32(float32x4_t x);
103
104/** Calculate hyperbolic tangent.
105 *
106 * tanh(x) = (e^2x - 1)/(e^2x + 1)
107 *
108 * @note We clamp x to [-5,5] to avoid overflowing issues.
109 *
110 * @param[in] val Input vector value in F32 format.
111 *
112 * @return The calculated Hyperbolic Tangent.
113 */
114float32x4_t vtanhq_f32(float32x4_t val);
115
116/** Calculate n power of a number.
117 *
118 * pow(x,n) = e^(n*log(x))
119 *
120 * @param[in] val Input vector value in F32 format.
121 * @param[in] n Powers to raise the input to.
122 *
123 * @return The calculated power.
124 */
125float32x4_t vpowq_f32(float32x4_t val, float32x4_t n);
Pablo Tellodf246182017-07-03 16:25:09 +0100126
Ioan-Cristian Szabo5edbd1c2017-11-13 13:34:08 +0000127#ifdef __ARM_FEATURE_FP16_VECTOR_ARITHMETIC
Pablo Tello91654c42017-07-05 11:32:17 +0100128/** Calculate hyperbolic tangent.
129 *
130 * tanh(x) = (e^2x - 1)/(e^2x + 1)
131 *
132 * @note We clamp x to [-5,5] to avoid overflowing issues.
133 *
Usama Arif0a5a57a2019-05-23 14:20:33 +0100134 * @param[in] val Input vector value in F16 format.
Pablo Tello91654c42017-07-05 11:32:17 +0100135 *
136 * @return The calculated Hyperbolic Tangent.
137 */
138float16x8_t vtanhq_f16(float16x8_t val);
Georgios Pinitascdf51452017-08-31 14:21:36 +0100139
Usama Arif0a5a57a2019-05-23 14:20:33 +0100140/** Calculate round value of a vector to nearest with ties to even.
141 *
142 * @param[in] val Input vector value in F16 format.
143 *
144 * @return The calculated round vector.
145 */
146float16x8_t vroundq_rte_f16(float16x8_t val);
147
Georgios Pinitascdf51452017-08-31 14:21:36 +0100148/** Calculate reciprocal.
149 *
150 * @param[in] x Input value.
151 *
152 * @return The calculated reciprocal.
153 */
154float16x4_t vinv_f16(float16x4_t x);
155
156/** Calculate reciprocal.
157 *
158 * @param[in] x Input value.
159 *
160 * @return The calculated reciprocal.
161 */
162float16x8_t vinvq_f16(float16x8_t x);
163
164/** Calculate inverse square root.
165 *
166 * @param[in] x Input value.
167 *
168 * @return The calculated inverse square root.
169 */
170float16x4_t vinvsqrt_f16(float16x4_t x);
171
Pablo Tello91654c42017-07-05 11:32:17 +0100172/** Calculate inverse square root.
173 *
174 * @param[in] x Input value.
175 *
176 * @return The calculated inverse square root.
177 */
178float16x8_t vinvsqrtq_f16(float16x8_t x);
Georgios Pinitascdf51452017-08-31 14:21:36 +0100179
Pablo Tellodf246182017-07-03 16:25:09 +0100180/** Calculate exponential
181 *
182 * @param[in] x Input vector value in F16 format.
183 *
184 * @return The calculated exponent.
185 */
186float16x8_t vexpq_f16(float16x8_t x);
Georgios Pinitascdf51452017-08-31 14:21:36 +0100187
Pablo Tellodf246182017-07-03 16:25:09 +0100188/** Calculate n power of a number.
189 *
190 * pow(x,n) = e^(n*log(x))
191 *
192 * @param[in] val Input vector value in F16 format.
193 * @param[in] n Powers to raise the input to.
194 *
195 * @return The calculated power.
196 */
197float16x8_t vpowq_f16(float16x8_t val, float16x8_t n);
Ioan-Cristian Szabo5edbd1c2017-11-13 13:34:08 +0000198#endif /* __ARM_FEATURE_FP16_VECTOR_ARITHMETIC */
Gian Marco Iodice356f6432017-09-22 11:32:21 +0100199} // namespace arm_compute
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100200#include "arm_compute/core/NEON/NEMath.inl"
201#endif /* __ARM_COMPUTE_NEMATH_H__ */