blob: 97cb9ceb2e1e2d7c34781d7c5801793a25f76bec [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)
103 && (activation_info.activation() != ActivationLayerInfo::ActivationFunction::BOUNDED_RELU) && (activation_info.activation() != ActivationLayerInfo::ActivationFunction::LU_BOUNDED_RELU),
Michele Di Giorgiodde3ad92018-01-23 16:55:24 +0000104 "For QASYMM8 only relu and lower/upper bounded relu are supported");
Michel Iwaniec5dfeae62017-11-29 10:48:23 +0000105
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100106 // Activation functions : FP32
107 static std::map<ActivationFunction, ActivationFunctionExecutorPtr> act_map_f32 =
108 {
109 { ActivationFunction::ABS, &NEActivationLayerKernel::activation<ActivationFunction::ABS, float> },
110 { ActivationFunction::LINEAR, &NEActivationLayerKernel::activation<ActivationFunction::LINEAR, float> },
111 { ActivationFunction::LOGISTIC, &NEActivationLayerKernel::activation<ActivationFunction::LOGISTIC, float> },
112 { ActivationFunction::RELU, &NEActivationLayerKernel::activation<ActivationFunction::RELU, float> },
113 { ActivationFunction::BOUNDED_RELU, &NEActivationLayerKernel::activation<ActivationFunction::BOUNDED_RELU, float> },
Georgios Pinitas64ebe5b2017-09-01 17:44:24 +0100114 { ActivationFunction::LU_BOUNDED_RELU, &NEActivationLayerKernel::activation<ActivationFunction::LU_BOUNDED_RELU, float> },
Georgios Pinitas579c0492017-07-12 16:12:12 +0100115 { ActivationFunction::LEAKY_RELU, &NEActivationLayerKernel::activation<ActivationFunction::LEAKY_RELU, float> },
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100116 { ActivationFunction::SOFT_RELU, &NEActivationLayerKernel::activation<ActivationFunction::SOFT_RELU, float> },
117 { ActivationFunction::SQRT, &NEActivationLayerKernel::activation<ActivationFunction::SQRT, float> },
118 { ActivationFunction::SQUARE, &NEActivationLayerKernel::activation<ActivationFunction::SQUARE, float> },
119 { ActivationFunction::TANH, &NEActivationLayerKernel::activation<ActivationFunction::TANH, float> },
120 };
Pablo Tello91654c42017-07-05 11:32:17 +0100121
Ioan-Cristian Szabo5edbd1c2017-11-13 13:34:08 +0000122#ifdef __ARM_FEATURE_FP16_VECTOR_ARITHMETIC
Pablo Tello91654c42017-07-05 11:32:17 +0100123 // Activation functions : FP16
124 static std::map<ActivationFunction, ActivationFunctionExecutorPtr> act_map_f16 =
125 {
126 { ActivationFunction::ABS, &NEActivationLayerKernel::activation<ActivationFunction::ABS, float16_t> },
127 { ActivationFunction::LINEAR, &NEActivationLayerKernel::activation<ActivationFunction::LINEAR, float16_t> },
128 { ActivationFunction::LOGISTIC, &NEActivationLayerKernel::activation<ActivationFunction::LOGISTIC, float16_t> },
129 { ActivationFunction::RELU, &NEActivationLayerKernel::activation<ActivationFunction::RELU, float16_t> },
130 { ActivationFunction::BOUNDED_RELU, &NEActivationLayerKernel::activation<ActivationFunction::BOUNDED_RELU, float16_t> },
Georgios Pinitas64ebe5b2017-09-01 17:44:24 +0100131 { ActivationFunction::LU_BOUNDED_RELU, &NEActivationLayerKernel::activation<ActivationFunction::LU_BOUNDED_RELU, float16_t> },
Georgios Pinitas3463a8b2018-08-23 13:11:53 +0100132 { ActivationFunction::LEAKY_RELU, &NEActivationLayerKernel::activation<ActivationFunction::LEAKY_RELU, float16_t> },
Pablo Tello91654c42017-07-05 11:32:17 +0100133 { ActivationFunction::SOFT_RELU, &NEActivationLayerKernel::activation<ActivationFunction::SOFT_RELU, float16_t> },
134 { ActivationFunction::SQRT, &NEActivationLayerKernel::activation<ActivationFunction::SQRT, float16_t> },
135 { ActivationFunction::SQUARE, &NEActivationLayerKernel::activation<ActivationFunction::SQUARE, float16_t> },
136 { ActivationFunction::TANH, &NEActivationLayerKernel::activation<ActivationFunction::TANH, float16_t> },
137 };
Ioan-Cristian Szabo5edbd1c2017-11-13 13:34:08 +0000138#endif /* __ARM_FEATURE_FP16_VECTOR_ARITHMETIC*/
Pablo Tello91654c42017-07-05 11:32:17 +0100139
Michel Iwaniec5dfeae62017-11-29 10:48:23 +0000140 // Activation functions : QASYMM8
141 static std::map<ActivationFunction, ActivationFunctionExecutorPtr> act_map_qasymm8 =
142 {
143 { ActivationFunction::LU_BOUNDED_RELU, &NEActivationLayerKernel::activation<ActivationFunction::LU_BOUNDED_RELU, qasymm8_t> },
Michele Di Giorgiodde3ad92018-01-23 16:55:24 +0000144 { ActivationFunction::RELU, &NEActivationLayerKernel::activation<ActivationFunction::RELU, qasymm8_t> },
Michel Iwaniec5dfeae62017-11-29 10:48:23 +0000145 };
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100146
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100147 switch(input->info()->data_type())
148 {
Michel Iwaniec5dfeae62017-11-29 10:48:23 +0000149 case DataType::QASYMM8:
150 _func = act_map_qasymm8[activation_info.activation()];
151 break;
Georgios Pinitasccc65d42017-06-27 17:39:11 +0100152 case DataType::F32:
153 _func = act_map_f32[activation_info.activation()];
154 break;
Ioan-Cristian Szabo5edbd1c2017-11-13 13:34:08 +0000155#ifdef __ARM_FEATURE_FP16_VECTOR_ARITHMETIC
Pablo Tello91654c42017-07-05 11:32:17 +0100156 case DataType::F16:
157 _func = act_map_f16[activation_info.activation()];
158 break;
Ioan-Cristian Szabo5edbd1c2017-11-13 13:34:08 +0000159#endif /* __ARM_FEATURE_FP16_VECTOR_ARITHMETIC */
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100160 default:
161 ARM_COMPUTE_ERROR("Unsupported data type.");
162 }
163
Gian Marco Iodiceb30dcc52017-06-20 09:07:21 +0100164 // Configure kernel window
Michalis Spyrouafa5d812017-11-30 14:25:57 +0000165 auto win_config = validate_and_configure_window(input->info(), (output != nullptr) ? output->info() : nullptr);
166 ARM_COMPUTE_ERROR_THROW_ON(win_config.first);
167 ICPPKernel::configure(win_config.second);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100168}
169
Pablo Tello91654c42017-07-05 11:32:17 +0100170template <ActivationLayerInfo::ActivationFunction F, typename T>
Georgios Pinitas5a594532018-12-03 14:30:05 +0000171typename std::enable_if<arm_compute::utils::traits::is_floating_point<T>::value, void>::type
172NEActivationLayerKernel::activation(const Window &window)
Pablo Tello91654c42017-07-05 11:32:17 +0100173{
Georgios Pinitas5a594532018-12-03 14:30:05 +0000174 /** NEON vector tag type. */
175 using ExactTagType = typename wrapper::traits::neon_bitvector_tag_t<T, wrapper::traits::BitWidth::W128>;
Pablo Tello91654c42017-07-05 11:32:17 +0100176
Georgios Pinitas5a594532018-12-03 14:30:05 +0000177 const int window_step_x = 16 / sizeof(T);
178 const auto window_start_x = static_cast<int>(window.x().start());
179 const auto window_end_x = static_cast<int>(window.x().end());
180 const ActivationFunction act = F;
Pablo Tello91654c42017-07-05 11:32:17 +0100181
Georgios Pinitas5a594532018-12-03 14:30:05 +0000182 Window win_collapsed = window.collapse_if_possible(window, Window::DimZ);
183 win_collapsed.set(Window::DimX, Window::Dimension(0, 1, 1));
Georgios Pinitas3463a8b2018-08-23 13:11:53 +0100184
Georgios Pinitas5a594532018-12-03 14:30:05 +0000185 Iterator input(_input, win_collapsed);
186 Iterator output(_output, win_collapsed);
Pablo Tello91654c42017-07-05 11:32:17 +0100187
Georgios Pinitas5a594532018-12-03 14:30:05 +0000188 const auto const_1 = wrapper::vdup_n(static_cast<T>(1.f), ExactTagType{});
189 const auto const_0 = wrapper::vdup_n(static_cast<T>(0.f), ExactTagType{});
190 const auto va = wrapper::vdup_n(static_cast<T>(_act_info.a()), ExactTagType{});
191 const auto vb = wrapper::vdup_n(static_cast<T>(_act_info.b()), ExactTagType{});
192 const auto a = static_cast<T>(_act_info.a());
193 const auto b = static_cast<T>(_act_info.b());
194
195 execute_window_loop(win_collapsed, [&](const Coordinates & id)
Pablo Tello91654c42017-07-05 11:32:17 +0100196 {
Georgios Pinitas5a594532018-12-03 14:30:05 +0000197 const auto input_ptr = reinterpret_cast<const T *>(input.ptr());
198 const auto output_ptr = reinterpret_cast<T *>(output.ptr());
Pablo Tello91654c42017-07-05 11:32:17 +0100199
Georgios Pinitas5a594532018-12-03 14:30:05 +0000200 wrapper::traits::neon_bitvector_t<T, wrapper::traits::BitWidth::W128> tmp;
Pablo Tello91654c42017-07-05 11:32:17 +0100201
Georgios Pinitas5a594532018-12-03 14:30:05 +0000202 // Compute S elements per iteration
203 int x = window_start_x;
204 for(; x <= (window_end_x - window_step_x); x += window_step_x)
Pablo Tello91654c42017-07-05 11:32:17 +0100205 {
Georgios Pinitas5a594532018-12-03 14:30:05 +0000206 const auto vin = wrapper::vloadq(input_ptr + x);
207 switch(act)
Georgios Pinitas3463a8b2018-08-23 13:11:53 +0100208 {
Georgios Pinitas5a594532018-12-03 14:30:05 +0000209 case ActivationFunction::ABS:
210 tmp = wrapper::vabs(vin);
211 break;
212 case ActivationFunction::LINEAR:
213 tmp = wrapper::vmla(vb, va, vin);
214 break;
215 case ActivationFunction::LOGISTIC:
216 tmp = wrapper::vinv(wrapper::vadd(const_1, wrapper::vexpq(wrapper::vneg(vin))));
217 break;
218 case ActivationFunction::RELU:
219 tmp = wrapper::vmax(const_0, vin);
220 break;
221 case ActivationFunction::BOUNDED_RELU:
222 tmp = wrapper::vmin(va, wrapper::vmax(const_0, vin));
223 break;
224 case ActivationFunction::LU_BOUNDED_RELU:
225 tmp = wrapper::vmin(va, wrapper::vmax(vb, vin));
226 break;
227 case ActivationFunction::LEAKY_RELU:
228 tmp = wrapper::vbsl(wrapper::vcgt(vin, const_0), vin, wrapper::vmul(va, vin));
229 break;
230 case ActivationFunction::SOFT_RELU:
231 tmp = wrapper::vlog(wrapper::vadd(const_1, wrapper::vexpq(vin)));
232 break;
233 case ActivationFunction::SQRT:
234 tmp = wrapper::vinv(wrapper::vinvsqrt(vin));
235 break;
236 case ActivationFunction::SQUARE:
237 tmp = wrapper::vmul(vin, vin);
238 break;
239 case ActivationFunction::TANH:
240 tmp = wrapper::vmul(va, wrapper::vtanh(wrapper::vmul(vb, vin)));
241 break;
242 default:
243 ARM_COMPUTE_ERROR("Unsupported activation function");
Georgios Pinitas3463a8b2018-08-23 13:11:53 +0100244 }
Georgios Pinitas5a594532018-12-03 14:30:05 +0000245 wrapper::vstore(output_ptr + x, tmp);
Pablo Tello91654c42017-07-05 11:32:17 +0100246 }
247
Georgios Pinitas5a594532018-12-03 14:30:05 +0000248 // Compute left-over elements
249 for(; x < window_end_x; ++x)
Georgios Pinitasf525eab2018-01-30 14:47:39 +0000250 {
Georgios Pinitas5a594532018-12-03 14:30:05 +0000251 const T in = *(reinterpret_cast<const T *>(input_ptr + x));
252 T tmp;
253 switch(act)
Georgios Pinitasf525eab2018-01-30 14:47:39 +0000254 {
Georgios Pinitas5a594532018-12-03 14:30:05 +0000255 case ActivationFunction::ABS:
256 tmp = std::abs(in);
257 break;
258 case ActivationFunction::LINEAR:
259 tmp = a * in + b;
260 break;
261 case ActivationFunction::LOGISTIC:
262 tmp = static_cast<T>(1) / (static_cast<T>(1) + std::exp(-in));
263 break;
264 case ActivationFunction::RELU:
265 tmp = std::max<T>(static_cast<T>(0), in);
266 break;
267 case ActivationFunction::BOUNDED_RELU:
268 tmp = std::min<T>(a, std::max(static_cast<T>(0), in));
269 break;
270 case ActivationFunction::LU_BOUNDED_RELU:
271 tmp = std::min<T>(a, std::max<T>(b, in));
272 break;
273 case ActivationFunction::LEAKY_RELU:
274 tmp = (in > 0) ? in : a * in;
275 break;
276 case ActivationFunction::SOFT_RELU:
277 tmp = std::log(static_cast<T>(1) + std::exp(in));
278 break;
279 case ActivationFunction::SQRT:
280 tmp = std::sqrt(in);
281 break;
282 case ActivationFunction::SQUARE:
283 tmp = in * in;
284 break;
285 case ActivationFunction::TANH:
286 tmp = a * std::tanh(b * in);
287 break;
288 default:
289 ARM_COMPUTE_ERROR("Unsupported activation function");
Georgios Pinitasf525eab2018-01-30 14:47:39 +0000290 }
Georgios Pinitas5a594532018-12-03 14:30:05 +0000291 *(output_ptr + x) = tmp;
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100292 }
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100293 },
294 input, output);
295}
296
297template <ActivationLayerInfo::ActivationFunction F, typename T>
Michel Iwaniec5dfeae62017-11-29 10:48:23 +0000298typename std::enable_if<std::is_same<T, qasymm8_t>::value, void>::type NEActivationLayerKernel::activation(const Window &window)
299{
Georgios Pinitas5a594532018-12-03 14:30:05 +0000300 const int window_step_x = 16 / sizeof(T);
301 const auto window_start_x = static_cast<int>(window.x().start());
302 const auto window_end_x = static_cast<int>(window.x().end());
303 const ActivationFunction act = F;
304
305 Window win_collapsed = window.collapse_if_possible(window, Window::DimZ);
306 win_collapsed.set(Window::DimX, Window::Dimension(0, 1, 1));
307
308 Iterator input(_input, win_collapsed);
309 Iterator output(_output, win_collapsed);
310
311 const QuantizationInfo qi_in = _input->info()->quantization_info();
312 const QuantizationInfo qi_out = _output->info()->quantization_info();
313 const qasymm8x16_t va = vdupq_n_u8(sqcvt_qasymm8_f32(_act_info.a(), qi_in.scale, qi_in.offset));
314 const qasymm8x16_t vb = vdupq_n_u8(sqcvt_qasymm8_f32(_act_info.b(), qi_in.scale, qi_in.offset));
315 const qasymm8_t a = sqcvt_qasymm8_f32(_act_info.a(), qi_in.scale, qi_in.offset);
316 const qasymm8_t b = sqcvt_qasymm8_f32(_act_info.b(), qi_in.scale, qi_in.offset);
317 const qasymm8_t const_0 = sqcvt_qasymm8_f32(0.f, qi_in.scale, qi_in.offset);
318 const qasymm8x16_t vconst_0 = vdupq_n_u8(const_0);
Michele Di Giorgiodde3ad92018-01-23 16:55:24 +0000319
Michel Iwaniec5dfeae62017-11-29 10:48:23 +0000320 // Initialise scale/offset for re-quantization
321 float s = qi_in.scale / qi_out.scale;
322 float o = -qi_in.offset * s + qi_out.offset;
323 float32x4_t vs = vdupq_n_f32(s);
324 float32x4_t vo = vdupq_n_f32(o);
325
Georgios Pinitas5a594532018-12-03 14:30:05 +0000326 execute_window_loop(win_collapsed, [&](const Coordinates & id)
Michel Iwaniec5dfeae62017-11-29 10:48:23 +0000327 {
Georgios Pinitas5a594532018-12-03 14:30:05 +0000328 const auto input_ptr = reinterpret_cast<const T *>(input.ptr());
329 const auto output_ptr = reinterpret_cast<T *>(output.ptr());
Michel Iwaniec5dfeae62017-11-29 10:48:23 +0000330
Georgios Pinitas5a594532018-12-03 14:30:05 +0000331 wrapper::traits::neon_bitvector_t<T, wrapper::traits::BitWidth::W128> tmp;
Michel Iwaniec5dfeae62017-11-29 10:48:23 +0000332
Georgios Pinitas5a594532018-12-03 14:30:05 +0000333 // Compute S elements per iteration
334 int x = window_start_x;
335 for(; x <= (window_end_x - window_step_x); x += window_step_x)
Michel Iwaniec5dfeae62017-11-29 10:48:23 +0000336 {
Georgios Pinitas5a594532018-12-03 14:30:05 +0000337 const auto vin = wrapper::vloadq(input_ptr + x);
338 if(act == ActivationFunction::RELU)
339 {
Michel Iwaniec5dfeae62017-11-29 10:48:23 +0000340 // Perform activation
Georgios Pinitas5a594532018-12-03 14:30:05 +0000341 tmp = vmaxq_u8(vconst_0, vin);
Michel Iwaniec5dfeae62017-11-29 10:48:23 +0000342 // Re-quantize to new output space
343 tmp = vmlaq_qasymm8(tmp, vs, vo);
Georgios Pinitas5a594532018-12-03 14:30:05 +0000344 }
345 else if(act == ActivationFunction::BOUNDED_RELU)
346 {
Michele Di Giorgiodde3ad92018-01-23 16:55:24 +0000347 // Perform activation
Georgios Pinitas5a594532018-12-03 14:30:05 +0000348 tmp = vminq_u8(va, vmaxq_u8(vconst_0, vin));
Michele Di Giorgiodde3ad92018-01-23 16:55:24 +0000349 // Re-quantize to new output space
350 tmp = vmlaq_qasymm8(tmp, vs, vo);
Georgios Pinitas5a594532018-12-03 14:30:05 +0000351 }
352 else if(act == ActivationFunction::LU_BOUNDED_RELU)
353 {
354 // Perform activation
355 tmp = vminq_u8(va, vmaxq_u8(vb, vin));
356 // Re-quantize to new output space
357 tmp = vmlaq_qasymm8(tmp, vs, vo);
358 }
359 else
360 {
361 ARM_COMPUTE_ERROR("Unsupported activation function");
362 }
363 wrapper::vstore(output_ptr + x, tmp);
Michel Iwaniec5dfeae62017-11-29 10:48:23 +0000364 }
365
Georgios Pinitas5a594532018-12-03 14:30:05 +0000366 // Compute left-over elements
367 for(; x < window_end_x; ++x)
368 {
369 T in = *(reinterpret_cast<const T *>(input_ptr + x));
370 T tmp;
371 if(act == ActivationFunction::RELU)
372 {
373 tmp = std::max(const_0, in);
374 tmp = std::max(0, std::min(static_cast<int32_t>(tmp * s + o), 255));
375 }
376 else if(act == ActivationFunction::BOUNDED_RELU)
377 {
378 tmp = std::min(a, std::max(const_0, in));
379 tmp = std::max(0, std::min(static_cast<int32_t>(tmp * s + o), 255));
380 }
381 else if(act == ActivationFunction::LU_BOUNDED_RELU)
382 {
383 tmp = std::min(a, std::max(b, in));
384 tmp = std::max(0, std::min(static_cast<int32_t>(tmp * s + o), 255));
385 }
386 else
387 {
388 ARM_COMPUTE_ERROR("Unsupported activation function");
389 }
390 *(output_ptr + x) = tmp;
391 }
Michel Iwaniec5dfeae62017-11-29 10:48:23 +0000392 },
393 input, output);
394}
395
Michalis Spyrouafa5d812017-11-30 14:25:57 +0000396Status NEActivationLayerKernel::validate(const ITensorInfo *input, const ITensorInfo *output, const ActivationLayerInfo &act_info)
397{
398 ARM_COMPUTE_UNUSED(act_info);
399 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(input, output));
400 ARM_COMPUTE_RETURN_ON_ERROR(validate_and_configure_window(input->clone().get(), (output != nullptr) ? output->clone().get() : nullptr).first);
401
402 return Status{};
403}
404
Moritz Pflanzerc186b572017-09-07 09:48:04 +0100405void NEActivationLayerKernel::run(const Window &window, const ThreadInfo &info)
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100406{
Moritz Pflanzerc186b572017-09-07 09:48:04 +0100407 ARM_COMPUTE_UNUSED(info);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100408 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
Gian Marco Iodiceb30dcc52017-06-20 09:07:21 +0100409 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(IKernel::window(), window);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100410 ARM_COMPUTE_ERROR_ON(_func == nullptr);
411
412 (this->*_func)(window);
413}