blob: b67396c5a129e2273bf63509de3e358949a1d708 [file] [log] [blame]
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001/*
Georgios Pinitas5a594532018-12-03 14:30:05 +00002 * Copyright (c) 2017-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#include "arm_compute/core/NEON/kernels/NEActivationLayerKernel.h"
25
Anthony Barbiereaefd002018-07-20 17:49:35 +010026#include "arm_compute/core/CPP/Validate.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010027#include "arm_compute/core/Helpers.h"
28#include "arm_compute/core/ITensor.h"
Michel Iwaniec5dfeae62017-11-29 10:48:23 +000029#include "arm_compute/core/NEON/NEAsymm.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010030#include "arm_compute/core/NEON/NEFixedPoint.h"
31#include "arm_compute/core/NEON/NEMath.h"
Georgios Pinitas5a594532018-12-03 14:30:05 +000032#include "arm_compute/core/NEON/wrapper/wrapper.h"
Michel Iwaniec5dfeae62017-11-29 10:48:23 +000033#include "arm_compute/core/QAsymm8.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010034#include "arm_compute/core/TensorInfo.h"
35#include "arm_compute/core/Utils.h"
36#include "arm_compute/core/Validate.h"
37#include "arm_compute/core/Window.h"
38
39#include <arm_neon.h>
40#include <array>
41#include <cmath>
42#include <map>
43
44using namespace arm_compute;
Michalis Spyrouafa5d812017-11-30 14:25:57 +000045namespace
46{
47Status validate_arguments(const ITensorInfo *input, const ITensorInfo *output)
48{
Anthony Barbiereaefd002018-07-20 17:49:35 +010049 ARM_COMPUTE_RETURN_ERROR_ON_CPU_F16_UNSUPPORTED(input);
Vidhya Sudhan Loganathan7485d5a2018-07-04 09:34:00 +010050 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input, 1, DataType::U8, DataType::QASYMM8, DataType::F16, DataType::F32);
Michalis Spyrouafa5d812017-11-30 14:25:57 +000051
52 // Checks performed when output is configured
53 if((output != nullptr) && (output->total_size() != 0))
54 {
55 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_SHAPES(input, output);
56 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input, output);
Michalis Spyrouafa5d812017-11-30 14:25:57 +000057 }
58
59 return Status{};
60}
61
62std::pair<Status, Window> validate_and_configure_window(ITensorInfo *input, ITensorInfo *output)
63{
Georgios Pinitas5a594532018-12-03 14:30:05 +000064 // Configure kernel window
65 Window win = calculate_max_window(*input, Steps());
Michalis Spyrouafa5d812017-11-30 14:25:57 +000066
Georgios Pinitas5a594532018-12-03 14:30:05 +000067 if(output != nullptr)
Michalis Spyrouafa5d812017-11-30 14:25:57 +000068 {
Georgios Pinitas5a594532018-12-03 14:30:05 +000069 // Output auto inizialitation if not yet initialized
70 auto_init_if_empty(*output, *input->clone());
Michalis Spyrouafa5d812017-11-30 14:25:57 +000071
Georgios Pinitas5a594532018-12-03 14:30:05 +000072 // NEActivationLayerKernel doesn't need padding so update_window_and_padding() can be skipped
73 Coordinates coord;
74 coord.set_num_dimensions(output->num_dimensions());
75 output->set_valid_region(ValidRegion(coord, output->tensor_shape()));
Michalis Spyrouafa5d812017-11-30 14:25:57 +000076 }
77
Georgios Pinitas5a594532018-12-03 14:30:05 +000078 return std::make_pair(Status{}, win);
Michalis Spyrouafa5d812017-11-30 14:25:57 +000079}
80} // namespace
Anthony Barbier6ff3b192017-09-04 18:44:23 +010081
82NEActivationLayerKernel::NEActivationLayerKernel()
Gian Marco Iodiceb30dcc52017-06-20 09:07:21 +010083 : _input(nullptr), _output(nullptr), _func(nullptr), _act_info(ActivationFunction::LOGISTIC)
Anthony Barbier6ff3b192017-09-04 18:44:23 +010084{
85}
86
Gian Marco Iodiceb30dcc52017-06-20 09:07:21 +010087void NEActivationLayerKernel::configure(ITensor *input, ITensor *output, ActivationLayerInfo activation_info)
Anthony Barbier6ff3b192017-09-04 18:44:23 +010088{
Michalis Spyrouafa5d812017-11-30 14:25:57 +000089 ARM_COMPUTE_ERROR_ON_NULLPTR(input);
Anthony Barbier6ff3b192017-09-04 18:44:23 +010090
Gian Marco Iodiceb30dcc52017-06-20 09:07:21 +010091 _input = input;
92 _act_info = activation_info;
93 _output = input;
Anthony Barbier6ff3b192017-09-04 18:44:23 +010094
Gian Marco Iodiceb30dcc52017-06-20 09:07:21 +010095 if(output != nullptr)
96 {
Gian Marco Iodiceb30dcc52017-06-20 09:07:21 +010097 _output = output;
98 }
Anthony Barbier6ff3b192017-09-04 18:44:23 +010099
Michalis Spyrouafa5d812017-11-30 14:25:57 +0000100 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(input->info(), (output != nullptr) ? output->info() : nullptr));
101
Georgios Pinitas5a594532018-12-03 14:30:05 +0000102 ARM_COMPUTE_ERROR_ON_MSG((input->info()->data_type() == DataType::QASYMM8) && (activation_info.activation() != ActivationLayerInfo::ActivationFunction::RELU)
Isabella Gottardi03bb5502019-01-31 17:45:07 +0000103 && (activation_info.activation() != ActivationLayerInfo::ActivationFunction::LU_BOUNDED_RELU) && (activation_info.activation() != ActivationLayerInfo::ActivationFunction::BOUNDED_RELU)
104 && (activation_info.activation() != ActivationLayerInfo::ActivationFunction::LOGISTIC),
105 "For QASYMM8 only logistic, relu and lower/upper bounded relu are supported");
Michel Iwaniec5dfeae62017-11-29 10:48:23 +0000106
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100107 // Activation functions : FP32
108 static std::map<ActivationFunction, ActivationFunctionExecutorPtr> act_map_f32 =
109 {
110 { ActivationFunction::ABS, &NEActivationLayerKernel::activation<ActivationFunction::ABS, float> },
111 { ActivationFunction::LINEAR, &NEActivationLayerKernel::activation<ActivationFunction::LINEAR, float> },
112 { ActivationFunction::LOGISTIC, &NEActivationLayerKernel::activation<ActivationFunction::LOGISTIC, float> },
113 { ActivationFunction::RELU, &NEActivationLayerKernel::activation<ActivationFunction::RELU, float> },
114 { ActivationFunction::BOUNDED_RELU, &NEActivationLayerKernel::activation<ActivationFunction::BOUNDED_RELU, float> },
Georgios Pinitas64ebe5b2017-09-01 17:44:24 +0100115 { ActivationFunction::LU_BOUNDED_RELU, &NEActivationLayerKernel::activation<ActivationFunction::LU_BOUNDED_RELU, float> },
Georgios Pinitas579c0492017-07-12 16:12:12 +0100116 { ActivationFunction::LEAKY_RELU, &NEActivationLayerKernel::activation<ActivationFunction::LEAKY_RELU, float> },
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100117 { ActivationFunction::SOFT_RELU, &NEActivationLayerKernel::activation<ActivationFunction::SOFT_RELU, float> },
118 { ActivationFunction::SQRT, &NEActivationLayerKernel::activation<ActivationFunction::SQRT, float> },
119 { ActivationFunction::SQUARE, &NEActivationLayerKernel::activation<ActivationFunction::SQUARE, float> },
120 { ActivationFunction::TANH, &NEActivationLayerKernel::activation<ActivationFunction::TANH, float> },
121 };
Pablo Tello91654c42017-07-05 11:32:17 +0100122
Ioan-Cristian Szabo5edbd1c2017-11-13 13:34:08 +0000123#ifdef __ARM_FEATURE_FP16_VECTOR_ARITHMETIC
Pablo Tello91654c42017-07-05 11:32:17 +0100124 // Activation functions : FP16
125 static std::map<ActivationFunction, ActivationFunctionExecutorPtr> act_map_f16 =
126 {
127 { ActivationFunction::ABS, &NEActivationLayerKernel::activation<ActivationFunction::ABS, float16_t> },
128 { ActivationFunction::LINEAR, &NEActivationLayerKernel::activation<ActivationFunction::LINEAR, float16_t> },
129 { ActivationFunction::LOGISTIC, &NEActivationLayerKernel::activation<ActivationFunction::LOGISTIC, float16_t> },
130 { ActivationFunction::RELU, &NEActivationLayerKernel::activation<ActivationFunction::RELU, float16_t> },
131 { ActivationFunction::BOUNDED_RELU, &NEActivationLayerKernel::activation<ActivationFunction::BOUNDED_RELU, float16_t> },
Georgios Pinitas64ebe5b2017-09-01 17:44:24 +0100132 { ActivationFunction::LU_BOUNDED_RELU, &NEActivationLayerKernel::activation<ActivationFunction::LU_BOUNDED_RELU, float16_t> },
Georgios Pinitas3463a8b2018-08-23 13:11:53 +0100133 { ActivationFunction::LEAKY_RELU, &NEActivationLayerKernel::activation<ActivationFunction::LEAKY_RELU, float16_t> },
Pablo Tello91654c42017-07-05 11:32:17 +0100134 { ActivationFunction::SOFT_RELU, &NEActivationLayerKernel::activation<ActivationFunction::SOFT_RELU, float16_t> },
135 { ActivationFunction::SQRT, &NEActivationLayerKernel::activation<ActivationFunction::SQRT, float16_t> },
136 { ActivationFunction::SQUARE, &NEActivationLayerKernel::activation<ActivationFunction::SQUARE, float16_t> },
137 { ActivationFunction::TANH, &NEActivationLayerKernel::activation<ActivationFunction::TANH, float16_t> },
138 };
Ioan-Cristian Szabo5edbd1c2017-11-13 13:34:08 +0000139#endif /* __ARM_FEATURE_FP16_VECTOR_ARITHMETIC*/
Pablo Tello91654c42017-07-05 11:32:17 +0100140
Michel Iwaniec5dfeae62017-11-29 10:48:23 +0000141 // Activation functions : QASYMM8
142 static std::map<ActivationFunction, ActivationFunctionExecutorPtr> act_map_qasymm8 =
143 {
Isabella Gottardi03bb5502019-01-31 17:45:07 +0000144 { ActivationFunction::LOGISTIC, &NEActivationLayerKernel::activation<ActivationFunction::LOGISTIC, qasymm8_t> },
Isabella Gottardi5d62c012019-01-29 15:05:41 +0000145 { ActivationFunction::BOUNDED_RELU, &NEActivationLayerKernel::activation<ActivationFunction::BOUNDED_RELU, qasymm8_t> },
Michel Iwaniec5dfeae62017-11-29 10:48:23 +0000146 { ActivationFunction::LU_BOUNDED_RELU, &NEActivationLayerKernel::activation<ActivationFunction::LU_BOUNDED_RELU, qasymm8_t> },
Michele Di Giorgiodde3ad92018-01-23 16:55:24 +0000147 { ActivationFunction::RELU, &NEActivationLayerKernel::activation<ActivationFunction::RELU, qasymm8_t> },
Michel Iwaniec5dfeae62017-11-29 10:48:23 +0000148 };
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100149
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100150 switch(input->info()->data_type())
151 {
Michel Iwaniec5dfeae62017-11-29 10:48:23 +0000152 case DataType::QASYMM8:
153 _func = act_map_qasymm8[activation_info.activation()];
154 break;
Georgios Pinitasccc65d42017-06-27 17:39:11 +0100155 case DataType::F32:
156 _func = act_map_f32[activation_info.activation()];
157 break;
Ioan-Cristian Szabo5edbd1c2017-11-13 13:34:08 +0000158#ifdef __ARM_FEATURE_FP16_VECTOR_ARITHMETIC
Pablo Tello91654c42017-07-05 11:32:17 +0100159 case DataType::F16:
160 _func = act_map_f16[activation_info.activation()];
161 break;
Ioan-Cristian Szabo5edbd1c2017-11-13 13:34:08 +0000162#endif /* __ARM_FEATURE_FP16_VECTOR_ARITHMETIC */
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100163 default:
164 ARM_COMPUTE_ERROR("Unsupported data type.");
165 }
166
Gian Marco Iodiceb30dcc52017-06-20 09:07:21 +0100167 // Configure kernel window
Michalis Spyrouafa5d812017-11-30 14:25:57 +0000168 auto win_config = validate_and_configure_window(input->info(), (output != nullptr) ? output->info() : nullptr);
169 ARM_COMPUTE_ERROR_THROW_ON(win_config.first);
170 ICPPKernel::configure(win_config.second);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100171}
172
Pablo Tello91654c42017-07-05 11:32:17 +0100173template <ActivationLayerInfo::ActivationFunction F, typename T>
Georgios Pinitas5a594532018-12-03 14:30:05 +0000174typename std::enable_if<arm_compute::utils::traits::is_floating_point<T>::value, void>::type
175NEActivationLayerKernel::activation(const Window &window)
Pablo Tello91654c42017-07-05 11:32:17 +0100176{
Georgios Pinitas5a594532018-12-03 14:30:05 +0000177 /** NEON vector tag type. */
178 using ExactTagType = typename wrapper::traits::neon_bitvector_tag_t<T, wrapper::traits::BitWidth::W128>;
Pablo Tello91654c42017-07-05 11:32:17 +0100179
Georgios Pinitas5a594532018-12-03 14:30:05 +0000180 const int window_step_x = 16 / sizeof(T);
181 const auto window_start_x = static_cast<int>(window.x().start());
182 const auto window_end_x = static_cast<int>(window.x().end());
183 const ActivationFunction act = F;
Pablo Tello91654c42017-07-05 11:32:17 +0100184
Georgios Pinitas5a594532018-12-03 14:30:05 +0000185 Window win_collapsed = window.collapse_if_possible(window, Window::DimZ);
186 win_collapsed.set(Window::DimX, Window::Dimension(0, 1, 1));
Georgios Pinitas3463a8b2018-08-23 13:11:53 +0100187
Georgios Pinitas5a594532018-12-03 14:30:05 +0000188 Iterator input(_input, win_collapsed);
189 Iterator output(_output, win_collapsed);
Pablo Tello91654c42017-07-05 11:32:17 +0100190
Georgios Pinitas5a594532018-12-03 14:30:05 +0000191 const auto const_1 = wrapper::vdup_n(static_cast<T>(1.f), ExactTagType{});
192 const auto const_0 = wrapper::vdup_n(static_cast<T>(0.f), ExactTagType{});
193 const auto va = wrapper::vdup_n(static_cast<T>(_act_info.a()), ExactTagType{});
194 const auto vb = wrapper::vdup_n(static_cast<T>(_act_info.b()), ExactTagType{});
195 const auto a = static_cast<T>(_act_info.a());
196 const auto b = static_cast<T>(_act_info.b());
197
198 execute_window_loop(win_collapsed, [&](const Coordinates & id)
Pablo Tello91654c42017-07-05 11:32:17 +0100199 {
Georgios Pinitas5a594532018-12-03 14:30:05 +0000200 const auto input_ptr = reinterpret_cast<const T *>(input.ptr());
201 const auto output_ptr = reinterpret_cast<T *>(output.ptr());
Pablo Tello91654c42017-07-05 11:32:17 +0100202
Georgios Pinitas5a594532018-12-03 14:30:05 +0000203 wrapper::traits::neon_bitvector_t<T, wrapper::traits::BitWidth::W128> tmp;
Pablo Tello91654c42017-07-05 11:32:17 +0100204
Georgios Pinitas5a594532018-12-03 14:30:05 +0000205 // Compute S elements per iteration
206 int x = window_start_x;
207 for(; x <= (window_end_x - window_step_x); x += window_step_x)
Pablo Tello91654c42017-07-05 11:32:17 +0100208 {
Georgios Pinitas5a594532018-12-03 14:30:05 +0000209 const auto vin = wrapper::vloadq(input_ptr + x);
210 switch(act)
Georgios Pinitas3463a8b2018-08-23 13:11:53 +0100211 {
Georgios Pinitas5a594532018-12-03 14:30:05 +0000212 case ActivationFunction::ABS:
213 tmp = wrapper::vabs(vin);
214 break;
215 case ActivationFunction::LINEAR:
216 tmp = wrapper::vmla(vb, va, vin);
217 break;
218 case ActivationFunction::LOGISTIC:
219 tmp = wrapper::vinv(wrapper::vadd(const_1, wrapper::vexpq(wrapper::vneg(vin))));
220 break;
221 case ActivationFunction::RELU:
222 tmp = wrapper::vmax(const_0, vin);
223 break;
224 case ActivationFunction::BOUNDED_RELU:
225 tmp = wrapper::vmin(va, wrapper::vmax(const_0, vin));
226 break;
227 case ActivationFunction::LU_BOUNDED_RELU:
228 tmp = wrapper::vmin(va, wrapper::vmax(vb, vin));
229 break;
230 case ActivationFunction::LEAKY_RELU:
231 tmp = wrapper::vbsl(wrapper::vcgt(vin, const_0), vin, wrapper::vmul(va, vin));
232 break;
233 case ActivationFunction::SOFT_RELU:
234 tmp = wrapper::vlog(wrapper::vadd(const_1, wrapper::vexpq(vin)));
235 break;
236 case ActivationFunction::SQRT:
237 tmp = wrapper::vinv(wrapper::vinvsqrt(vin));
238 break;
239 case ActivationFunction::SQUARE:
240 tmp = wrapper::vmul(vin, vin);
241 break;
242 case ActivationFunction::TANH:
243 tmp = wrapper::vmul(va, wrapper::vtanh(wrapper::vmul(vb, vin)));
244 break;
245 default:
246 ARM_COMPUTE_ERROR("Unsupported activation function");
Georgios Pinitas3463a8b2018-08-23 13:11:53 +0100247 }
Georgios Pinitas5a594532018-12-03 14:30:05 +0000248 wrapper::vstore(output_ptr + x, tmp);
Pablo Tello91654c42017-07-05 11:32:17 +0100249 }
250
Georgios Pinitas5a594532018-12-03 14:30:05 +0000251 // Compute left-over elements
252 for(; x < window_end_x; ++x)
Georgios Pinitasf525eab2018-01-30 14:47:39 +0000253 {
Georgios Pinitas5a594532018-12-03 14:30:05 +0000254 const T in = *(reinterpret_cast<const T *>(input_ptr + x));
255 T tmp;
256 switch(act)
Georgios Pinitasf525eab2018-01-30 14:47:39 +0000257 {
Georgios Pinitas5a594532018-12-03 14:30:05 +0000258 case ActivationFunction::ABS:
259 tmp = std::abs(in);
260 break;
261 case ActivationFunction::LINEAR:
262 tmp = a * in + b;
263 break;
264 case ActivationFunction::LOGISTIC:
265 tmp = static_cast<T>(1) / (static_cast<T>(1) + std::exp(-in));
266 break;
267 case ActivationFunction::RELU:
268 tmp = std::max<T>(static_cast<T>(0), in);
269 break;
270 case ActivationFunction::BOUNDED_RELU:
271 tmp = std::min<T>(a, std::max(static_cast<T>(0), in));
272 break;
273 case ActivationFunction::LU_BOUNDED_RELU:
274 tmp = std::min<T>(a, std::max<T>(b, in));
275 break;
276 case ActivationFunction::LEAKY_RELU:
277 tmp = (in > 0) ? in : a * in;
278 break;
279 case ActivationFunction::SOFT_RELU:
280 tmp = std::log(static_cast<T>(1) + std::exp(in));
281 break;
282 case ActivationFunction::SQRT:
283 tmp = std::sqrt(in);
284 break;
285 case ActivationFunction::SQUARE:
286 tmp = in * in;
287 break;
288 case ActivationFunction::TANH:
289 tmp = a * std::tanh(b * in);
290 break;
291 default:
292 ARM_COMPUTE_ERROR("Unsupported activation function");
Georgios Pinitasf525eab2018-01-30 14:47:39 +0000293 }
Georgios Pinitas5a594532018-12-03 14:30:05 +0000294 *(output_ptr + x) = tmp;
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100295 }
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100296 },
297 input, output);
298}
299
300template <ActivationLayerInfo::ActivationFunction F, typename T>
Michel Iwaniec5dfeae62017-11-29 10:48:23 +0000301typename std::enable_if<std::is_same<T, qasymm8_t>::value, void>::type NEActivationLayerKernel::activation(const Window &window)
302{
Georgios Pinitas5a594532018-12-03 14:30:05 +0000303 const int window_step_x = 16 / sizeof(T);
304 const auto window_start_x = static_cast<int>(window.x().start());
305 const auto window_end_x = static_cast<int>(window.x().end());
306 const ActivationFunction act = F;
307
308 Window win_collapsed = window.collapse_if_possible(window, Window::DimZ);
309 win_collapsed.set(Window::DimX, Window::Dimension(0, 1, 1));
310
311 Iterator input(_input, win_collapsed);
312 Iterator output(_output, win_collapsed);
313
314 const QuantizationInfo qi_in = _input->info()->quantization_info();
315 const QuantizationInfo qi_out = _output->info()->quantization_info();
316 const qasymm8x16_t va = vdupq_n_u8(sqcvt_qasymm8_f32(_act_info.a(), qi_in.scale, qi_in.offset));
317 const qasymm8x16_t vb = vdupq_n_u8(sqcvt_qasymm8_f32(_act_info.b(), qi_in.scale, qi_in.offset));
318 const qasymm8_t a = sqcvt_qasymm8_f32(_act_info.a(), qi_in.scale, qi_in.offset);
319 const qasymm8_t b = sqcvt_qasymm8_f32(_act_info.b(), qi_in.scale, qi_in.offset);
320 const qasymm8_t const_0 = sqcvt_qasymm8_f32(0.f, qi_in.scale, qi_in.offset);
321 const qasymm8x16_t vconst_0 = vdupq_n_u8(const_0);
Michele Di Giorgiodde3ad92018-01-23 16:55:24 +0000322
Michel Iwaniec5dfeae62017-11-29 10:48:23 +0000323 // Initialise scale/offset for re-quantization
324 float s = qi_in.scale / qi_out.scale;
325 float o = -qi_in.offset * s + qi_out.offset;
326 float32x4_t vs = vdupq_n_f32(s);
327 float32x4_t vo = vdupq_n_f32(o);
328
Georgios Pinitas5a594532018-12-03 14:30:05 +0000329 execute_window_loop(win_collapsed, [&](const Coordinates & id)
Michel Iwaniec5dfeae62017-11-29 10:48:23 +0000330 {
Georgios Pinitas5a594532018-12-03 14:30:05 +0000331 const auto input_ptr = reinterpret_cast<const T *>(input.ptr());
332 const auto output_ptr = reinterpret_cast<T *>(output.ptr());
Michel Iwaniec5dfeae62017-11-29 10:48:23 +0000333
Georgios Pinitas5a594532018-12-03 14:30:05 +0000334 wrapper::traits::neon_bitvector_t<T, wrapper::traits::BitWidth::W128> tmp;
Michel Iwaniec5dfeae62017-11-29 10:48:23 +0000335
Georgios Pinitas5a594532018-12-03 14:30:05 +0000336 // Compute S elements per iteration
337 int x = window_start_x;
338 for(; x <= (window_end_x - window_step_x); x += window_step_x)
Michel Iwaniec5dfeae62017-11-29 10:48:23 +0000339 {
Georgios Pinitas5a594532018-12-03 14:30:05 +0000340 const auto vin = wrapper::vloadq(input_ptr + x);
341 if(act == ActivationFunction::RELU)
342 {
Michel Iwaniec5dfeae62017-11-29 10:48:23 +0000343 // Perform activation
Georgios Pinitas5a594532018-12-03 14:30:05 +0000344 tmp = vmaxq_u8(vconst_0, vin);
Michel Iwaniec5dfeae62017-11-29 10:48:23 +0000345 // Re-quantize to new output space
346 tmp = vmlaq_qasymm8(tmp, vs, vo);
Georgios Pinitas5a594532018-12-03 14:30:05 +0000347 }
348 else if(act == ActivationFunction::BOUNDED_RELU)
349 {
Michele Di Giorgiodde3ad92018-01-23 16:55:24 +0000350 // Perform activation
Georgios Pinitas5a594532018-12-03 14:30:05 +0000351 tmp = vminq_u8(va, vmaxq_u8(vconst_0, vin));
Michele Di Giorgiodde3ad92018-01-23 16:55:24 +0000352 // Re-quantize to new output space
353 tmp = vmlaq_qasymm8(tmp, vs, vo);
Georgios Pinitas5a594532018-12-03 14:30:05 +0000354 }
355 else if(act == ActivationFunction::LU_BOUNDED_RELU)
356 {
357 // Perform activation
358 tmp = vminq_u8(va, vmaxq_u8(vb, vin));
359 // Re-quantize to new output space
360 tmp = vmlaq_qasymm8(tmp, vs, vo);
361 }
Isabella Gottardi03bb5502019-01-31 17:45:07 +0000362 else if(act == ActivationFunction::LOGISTIC)
363 {
364 const auto scale_in = vdupq_n_f32(qi_in.scale);
365 const auto off_in = vdupq_n_f32(qi_in.offset);
366 const auto scale_out = vdupq_n_f32(qi_out.scale);
367 const auto off_out = vdupq_n_f32(qi_out.offset);
368 const auto vconst_1 = vdupq_n_f32(1.f);
369
370 const auto vin_low = wrapper::vgetlow(vin);
371 const auto vin_high = wrapper::vgethigh(vin);
372 uint16x8_t vin_low_u16x8 = wrapper::vmovl(vin_low);
373 uint16x8_t vin_high_u16x8 = wrapper::vmovl(vin_high);
374 // Convert uint16 vectors to uint32 vectors
375 uint32x4_t A_u32x4 = wrapper::vmovl(wrapper::vgetlow(vin_low_u16x8));
376 uint32x4_t B_u32x4 = wrapper::vmovl(wrapper::vgethigh(vin_low_u16x8));
377 uint32x4_t C_u32x4 = wrapper::vmovl(wrapper::vgetlow(vin_high_u16x8));
378 uint32x4_t D_u32x4 = wrapper::vmovl(wrapper::vgethigh(vin_high_u16x8));
379 // Convert uint32 vectors to float32 vectors
380 float32x4_t A_f32x4 = wrapper::vmul(wrapper::vsub(vcvtq_f32_u32(A_u32x4), off_in), scale_in);
381 float32x4_t B_f32x4 = wrapper::vmul(wrapper::vsub(vcvtq_f32_u32(B_u32x4), off_in), scale_in);
382 float32x4_t C_f32x4 = wrapper::vmul(wrapper::vsub(vcvtq_f32_u32(C_u32x4), off_in), scale_in);
383 float32x4_t D_f32x4 = wrapper::vmul(wrapper::vsub(vcvtq_f32_u32(D_u32x4), off_in), scale_in);
384 // Perform activation
385 A_f32x4 = wrapper::vdiv(vconst_1, wrapper::vadd(vconst_1, wrapper::vexpq(wrapper::vneg(A_f32x4))));
386 B_f32x4 = wrapper::vdiv(vconst_1, wrapper::vadd(vconst_1, wrapper::vexpq(wrapper::vneg(B_f32x4))));
387 C_f32x4 = wrapper::vdiv(vconst_1, wrapper::vadd(vconst_1, wrapper::vexpq(wrapper::vneg(C_f32x4))));
388 D_f32x4 = wrapper::vdiv(vconst_1, wrapper::vadd(vconst_1, wrapper::vexpq(wrapper::vneg(D_f32x4))));
389 // Convert float32 vectors to uint32 vectors
390 A_u32x4 = vcvtq_u32_f32(wrapper::vadd(wrapper::vdiv(A_f32x4, scale_out), off_out));
391 B_u32x4 = vcvtq_u32_f32(wrapper::vadd(wrapper::vdiv(B_f32x4, scale_out), off_out));
392 C_u32x4 = vcvtq_u32_f32(wrapper::vadd(wrapper::vdiv(C_f32x4, scale_out), off_out));
393 D_u32x4 = vcvtq_u32_f32(wrapper::vadd(wrapper::vdiv(D_f32x4, scale_out), off_out));
394 // Convert uint32 vectors to uint16 vectors (with saturation)
395 vin_low_u16x8 = wrapper::vcombine(wrapper::vqmovn(A_u32x4), wrapper::vqmovn(B_u32x4));
396 vin_high_u16x8 = wrapper::vcombine(wrapper::vqmovn(C_u32x4), wrapper::vqmovn(D_u32x4));
397 // convert uint16 vectors to uint8 vectors (with saturation)
398 tmp = wrapper::vcombine(wrapper::vqmovn(vin_low_u16x8), wrapper::vqmovn(vin_high_u16x8));
399 }
Georgios Pinitas5a594532018-12-03 14:30:05 +0000400 else
401 {
402 ARM_COMPUTE_ERROR("Unsupported activation function");
403 }
404 wrapper::vstore(output_ptr + x, tmp);
Michel Iwaniec5dfeae62017-11-29 10:48:23 +0000405 }
406
Georgios Pinitas5a594532018-12-03 14:30:05 +0000407 // Compute left-over elements
408 for(; x < window_end_x; ++x)
409 {
410 T in = *(reinterpret_cast<const T *>(input_ptr + x));
411 T tmp;
412 if(act == ActivationFunction::RELU)
413 {
414 tmp = std::max(const_0, in);
Georgios Pinitas57016a42019-01-16 12:54:29 +0000415 tmp = std::max<int32_t>(0, std::min<int32_t>(tmp * s + o, 255));
Georgios Pinitas5a594532018-12-03 14:30:05 +0000416 }
417 else if(act == ActivationFunction::BOUNDED_RELU)
418 {
419 tmp = std::min(a, std::max(const_0, in));
Georgios Pinitas57016a42019-01-16 12:54:29 +0000420 tmp = std::max<int32_t>(0, std::min<int32_t>(tmp * s + o, 255));
Georgios Pinitas5a594532018-12-03 14:30:05 +0000421 }
422 else if(act == ActivationFunction::LU_BOUNDED_RELU)
423 {
424 tmp = std::min(a, std::max(b, in));
Georgios Pinitas57016a42019-01-16 12:54:29 +0000425 tmp = std::max<int32_t>(0, std::min<int32_t>(tmp * s + o, 255));
Georgios Pinitas5a594532018-12-03 14:30:05 +0000426 }
Isabella Gottardi03bb5502019-01-31 17:45:07 +0000427 else if(act == ActivationFunction::LOGISTIC)
428 {
429 float tmp_f = scvt_f32_qasymm8(in, qi_in.scale, qi_in.offset);
430 tmp_f = 1.f / (1.f + std::exp(-tmp_f));
431 tmp = sqcvt_qasymm8_f32(tmp_f, qi_out.scale, qi_out.offset);
432 }
Georgios Pinitas5a594532018-12-03 14:30:05 +0000433 else
434 {
435 ARM_COMPUTE_ERROR("Unsupported activation function");
436 }
437 *(output_ptr + x) = tmp;
438 }
Michel Iwaniec5dfeae62017-11-29 10:48:23 +0000439 },
440 input, output);
441}
442
Michalis Spyrouafa5d812017-11-30 14:25:57 +0000443Status NEActivationLayerKernel::validate(const ITensorInfo *input, const ITensorInfo *output, const ActivationLayerInfo &act_info)
444{
445 ARM_COMPUTE_UNUSED(act_info);
446 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(input, output));
447 ARM_COMPUTE_RETURN_ON_ERROR(validate_and_configure_window(input->clone().get(), (output != nullptr) ? output->clone().get() : nullptr).first);
448
449 return Status{};
450}
451
Moritz Pflanzerc186b572017-09-07 09:48:04 +0100452void NEActivationLayerKernel::run(const Window &window, const ThreadInfo &info)
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100453{
Moritz Pflanzerc186b572017-09-07 09:48:04 +0100454 ARM_COMPUTE_UNUSED(info);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100455 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
Gian Marco Iodiceb30dcc52017-06-20 09:07:21 +0100456 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(IKernel::window(), window);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100457 ARM_COMPUTE_ERROR_ON(_func == nullptr);
458
459 (this->*_func)(window);
460}