blob: bdd747c4e9b2dea4fc2fdeddca2315d5a2e31e34 [file] [log] [blame]
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001/*
2 * Copyright (c) 2016, 2017 ARM Limited.
3 *
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
25namespace arm_compute
26{
27/* Exponent polynomial coefficients */
28const std::array<float32x4_t, 8> exp_tab =
29{
30 {
31 vdupq_n_f32(1.f),
32 vdupq_n_f32(0.0416598916054f),
33 vdupq_n_f32(0.500000596046f),
34 vdupq_n_f32(0.0014122662833f),
35 vdupq_n_f32(1.00000011921f),
36 vdupq_n_f32(0.00833693705499f),
37 vdupq_n_f32(0.166665703058f),
38 vdupq_n_f32(0.000195780929062f),
39 }
40};
41
42/* Logarithm polynomial coefficients */
43const std::array<float32x4_t, 8> log_tab =
44{
45 {
46 vdupq_n_f32(-2.29561495781f),
47 vdupq_n_f32(-2.47071170807f),
48 vdupq_n_f32(-5.68692588806f),
49 vdupq_n_f32(-0.165253549814f),
50 vdupq_n_f32(5.17591238022f),
51 vdupq_n_f32(0.844007015228f),
52 vdupq_n_f32(4.58445882797f),
53 vdupq_n_f32(0.0141278216615f),
54 }
55};
56
Georgios Pinitasd8e765b2017-08-02 13:44:33 +010057inline float32x4_t vfloorq_f32(float32x4_t val)
58{
59 static const float32x4_t CONST_1 = vdupq_n_f32(1.f);
60
61 const int32x4_t z = vcvtq_s32_f32(val);
62 const float32x4_t r = vcvtq_f32_s32(z);
63
64 return vbslq_f32(vcgtq_f32(r, val), vsubq_f32(r, CONST_1), r);
65}
66
Anthony Barbier6ff3b192017-09-04 18:44:23 +010067inline float32x4_t vinvsqrtq_f32(float32x4_t x)
68{
69 float32x4_t sqrt_reciprocal = vrsqrteq_f32(x);
70 sqrt_reciprocal = vmulq_f32(vrsqrtsq_f32(vmulq_f32(x, sqrt_reciprocal), sqrt_reciprocal), sqrt_reciprocal);
71 sqrt_reciprocal = vmulq_f32(vrsqrtsq_f32(vmulq_f32(x, sqrt_reciprocal), sqrt_reciprocal), sqrt_reciprocal);
72
73 return sqrt_reciprocal;
74}
75
76inline float32x4_t vinvq_f32(float32x4_t x)
77{
78 float32x4_t recip = vrecpeq_f32(x);
79 recip = vmulq_f32(vrecpsq_f32(x, recip), recip);
80 recip = vmulq_f32(vrecpsq_f32(x, recip), recip);
81 return recip;
82}
83
84inline float32x4_t vtaylor_polyq_f32(float32x4_t x, const std::array<float32x4_t, 8> &coeffs)
85{
86 float32x4_t A = vmlaq_f32(coeffs[0], coeffs[4], x);
87 float32x4_t B = vmlaq_f32(coeffs[2], coeffs[6], x);
88 float32x4_t C = vmlaq_f32(coeffs[1], coeffs[5], x);
89 float32x4_t D = vmlaq_f32(coeffs[3], coeffs[7], x);
90 float32x4_t x2 = vmulq_f32(x, x);
91 float32x4_t x4 = vmulq_f32(x2, x2);
92 float32x4_t res = vmlaq_f32(vmlaq_f32(A, B, x2), vmlaq_f32(C, D, x2), x4);
93 return res;
94}
95
96inline float32x4_t vexpq_f32(float32x4_t x)
97{
Georgios Pinitasee122542017-06-26 15:54:06 +010098 static const float32x4_t CONST_LN2 = vdupq_n_f32(0.6931471805f); // ln(2)
99 static const float32x4_t CONST_INV_LN2 = vdupq_n_f32(1.4426950408f); // 1/ln(2)
100 static const float32x4_t CONST_0 = vdupq_n_f32(0.f);
101 static const int32x4_t CONST_NEGATIVE_126 = vdupq_n_s32(-126);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100102
103 // Perform range reduction [-log(2),log(2)]
104 int32x4_t m = vcvtq_s32_f32(vmulq_f32(x, CONST_INV_LN2));
105 float32x4_t val = vmlsq_f32(x, vcvtq_f32_s32(m), CONST_LN2);
106
107 // Polynomial Approximation
108 float32x4_t poly = vtaylor_polyq_f32(val, exp_tab);
109
110 // Reconstruct
Georgios Pinitasee122542017-06-26 15:54:06 +0100111 poly = vreinterpretq_f32_s32(vqaddq_s32(vreinterpretq_s32_f32(poly), vqshlq_n_s32(m, 23)));
112 poly = vbslq_f32(vcltq_s32(m, CONST_NEGATIVE_126), CONST_0, poly);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100113
114 return poly;
115}
116
117inline float32x4_t vlogq_f32(float32x4_t x)
118{
119 static const int32x4_t CONST_127 = vdupq_n_s32(127); // 127
120 static const float32x4_t CONST_LN2 = vdupq_n_f32(0.6931471805f); // ln(2)
121
122 // Extract exponent
123 int32x4_t m = vsubq_s32(vreinterpretq_s32_u32(vshrq_n_u32(vreinterpretq_u32_f32(x), 23)), CONST_127);
124 float32x4_t val = vreinterpretq_f32_s32(vsubq_s32(vreinterpretq_s32_f32(x), vshlq_n_s32(m, 23)));
125
126 // Polynomial Approximation
127 float32x4_t poly = vtaylor_polyq_f32(val, log_tab);
128
129 // Reconstruct
130 poly = vmlaq_f32(poly, vcvtq_f32_s32(m), CONST_LN2);
131
132 return poly;
133}
134
135inline float32x4_t vtanhq_f32(float32x4_t val)
136{
137 static const float32x4_t CONST_1 = vdupq_n_f32(1.f);
138 static const float32x4_t CONST_2 = vdupq_n_f32(2.f);
139 static const float32x4_t CONST_MIN_TANH = vdupq_n_f32(-10.f);
140 static const float32x4_t CONST_MAX_TANH = vdupq_n_f32(10.f);
141
142 float32x4_t x = vminq_f32(vmaxq_f32(val, CONST_MIN_TANH), CONST_MAX_TANH);
143 float32x4_t exp2x = vexpq_f32(vmulq_f32(CONST_2, x));
144 float32x4_t num = vsubq_f32(exp2x, CONST_1);
145 float32x4_t den = vaddq_f32(exp2x, CONST_1);
146 float32x4_t tanh = vmulq_f32(num, vinvq_f32(den));
147 return tanh;
148}
149
150inline float32x4_t vpowq_f32(float32x4_t val, float32x4_t n)
151{
152 return vexpq_f32(vmulq_f32(n, vlogq_f32(val)));
153}
Pablo Tellodf246182017-07-03 16:25:09 +0100154#ifdef ARM_COMPUTE_ENABLE_FP16
155/* Exponent polynomial coefficients */
156const std::array<float16x8_t, 8> exp_tab_f16 =
157{
158 {
159 vdupq_n_f16(1.f),
160 vdupq_n_f16(0.0416598916054f),
161 vdupq_n_f16(0.500000596046f),
162 vdupq_n_f16(0.0014122662833f),
163 vdupq_n_f16(1.00000011921f),
164 vdupq_n_f16(0.00833693705499f),
165 vdupq_n_f16(0.166665703058f),
166 vdupq_n_f16(0.000195780929062f),
167 }
168};
169
170/* Logarithm polynomial coefficients */
171const std::array<float16x8_t, 8> log_tab_f16 =
172{
173 {
174 vdupq_n_f16(-2.29561495781f),
175 vdupq_n_f16(-2.47071170807f),
176 vdupq_n_f16(-5.68692588806f),
177 vdupq_n_f16(-0.165253549814f),
178 vdupq_n_f16(5.17591238022f),
179 vdupq_n_f16(0.844007015228f),
180 vdupq_n_f16(4.58445882797f),
181 vdupq_n_f16(0.0141278216615f),
182 }
183};
Pablo Tello8fda1cb2017-07-05 15:20:38 +0100184
Pablo Tello91654c42017-07-05 11:32:17 +0100185inline float16x8_t vinvsqrtq_f16(float16x8_t x)
186{
187 float16x8_t sqrt_reciprocal = vrsqrteq_f16(x);
188 sqrt_reciprocal = vmulq_f16(vrsqrtsq_f16(vmulq_f16(x, sqrt_reciprocal), sqrt_reciprocal), sqrt_reciprocal);
189 sqrt_reciprocal = vmulq_f16(vrsqrtsq_f16(vmulq_f16(x, sqrt_reciprocal), sqrt_reciprocal), sqrt_reciprocal);
Pablo Tello91654c42017-07-05 11:32:17 +0100190 return sqrt_reciprocal;
191}
Pablo Tellodf246182017-07-03 16:25:09 +0100192
193inline float16x8_t vinvq_f16(float16x8_t x)
194{
195 float16x8_t recip = vrecpeq_f16(x);
196 recip = vmulq_f16(vrecpsq_f16(x, recip), recip);
197 recip = vmulq_f16(vrecpsq_f16(x, recip), recip);
198 return recip;
199}
200
Pablo Tello91654c42017-07-05 11:32:17 +0100201inline float16x8_t vtanhq_f16(float16x8_t val)
202{
203 const float16x8_t CONST_1 = vdupq_n_f16(1.f);
204 const float16x8_t CONST_2 = vdupq_n_f16(2.f);
205 const float16x8_t CONST_MIN_TANH = vdupq_n_f16(-10.f);
206 const float16x8_t CONST_MAX_TANH = vdupq_n_f16(10.f);
207
208 const float16x8_t x = vminq_f16(vmaxq_f16(val, CONST_MIN_TANH), CONST_MAX_TANH);
209 const float16x8_t exp2x = vexpq_f16(vmulq_f16(CONST_2, x));
210 const float16x8_t num = vsubq_f16(exp2x, CONST_1);
211 const float16x8_t den = vaddq_f16(exp2x, CONST_1);
212 const float16x8_t tanh = vmulq_f16(num, vinvq_f16(den));
213 return tanh;
214}
215
Pablo Tellodf246182017-07-03 16:25:09 +0100216inline float16x8_t vtaylor_polyq_f16(float16x8_t x, const std::array<float16x8_t, 8> &coeffs)
217{
218 const float16x8_t A = vaddq_f16(coeffs[0], vmulq_f16(coeffs[4], x));
219 const float16x8_t B = vaddq_f16(coeffs[2], vmulq_f16(coeffs[6], x));
220 const float16x8_t C = vaddq_f16(coeffs[1], vmulq_f16(coeffs[5], x));
221 const float16x8_t D = vaddq_f16(coeffs[3], vmulq_f16(coeffs[7], x));
222 const float16x8_t x2 = vmulq_f16(x, x);
223 const float16x8_t x4 = vmulq_f16(x2, x2);
224 const float16x8_t res = vaddq_f16(vaddq_f16(A, vmulq_f16(B, x2)), vmulq_f16(vaddq_f16(C, vmulq_f16(D, x2)), x4));
225 return res;
226}
227
228inline float16x8_t vexpq_f16(float16x8_t x)
229{
230 static const float16x8_t CONST_LN2 = vdupq_n_f16(0.6931471805f); // ln(2)
231 static const float16x8_t CONST_INV_LN2 = vdupq_n_f16(1.4426950408f); // 1/ln(2)
232 static const float16x8_t CONST_0 = vdupq_n_f16(0.f);
233 static const int16x8_t CONST_NEGATIVE_126 = vdupq_n_s16(-126);
234
235 // Perform range reduction [-log(2),log(2)]
236 const int16x8_t m = vcvtq_s16_f16(vmulq_f16(x, CONST_INV_LN2));
237 const float16x8_t val = vsubq_f16(x, vmulq_f16(vcvtq_f16_s16(m), CONST_LN2));
238
239 // Polynomial Approximation
240 float16x8_t poly = vtaylor_polyq_f16(val, exp_tab_f16);
241
242 // Reconstruct
243 poly = vreinterpretq_f16_s16(vqaddq_s16(vreinterpretq_s16_f16(poly), vqshlq_n_s16(m, 9)));
244 poly = vbslq_f16(vcltq_s16(m, CONST_NEGATIVE_126), CONST_0, poly);
245
246 return poly;
247}
248
249inline float16x8_t vlogq_f16(float16x8_t x)
250{
251 static const int16x8_t CONST_127 = vdupq_n_s16(127); // 127
252 static const float16x8_t CONST_LN2 = vdupq_n_f16(0.6931471805f); // ln(2)
253
254 // Extract exponent
255 const int16x8_t m = vsubq_s16(vreinterpretq_s16_u16(vshrq_n_u16(vreinterpretq_u16_f16(x), 9)), CONST_127);
256 const float16x8_t val = vreinterpretq_f16_s16(vsubq_s16(vreinterpretq_s16_f16(x), vshlq_n_s16(m, 9)));
257
258 // Polynomial Approximation
259 float16x8_t poly = vtaylor_polyq_f16(val, log_tab_f16);
260
261 // Reconstruct
262 poly = vaddq_f16(poly, vmulq_f16(vcvtq_f16_s16(m), CONST_LN2));
263
264 return poly;
265}
266
267inline float16x8_t vpowq_f16(float16x8_t val, float16x8_t n)
268{
269 return vexpq_f16(vmulq_f16(n, vlogq_f16(val)));
270}
271#endif /* ARM_COMPUTE_ENABLE_FP16 */
272}