blob: 865b9f114ed0b03f61122cbbb09daf9e69f7ab96 [file] [log] [blame]
Michalis Spyrouc4d45552020-10-19 12:41:30 +01001/*
Georgios Pinitas70eb53b2021-01-06 19:42:21 +00002 * Copyright (c) 2020-2021 Arm Limited.
Michalis Spyrouc4d45552020-10-19 12:41:30 +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/Helpers.h"
25#include "arm_compute/core/ITensorPack.h"
26#include "arm_compute/core/Window.h"
27#include "arm_compute/core/experimental/Types.h"
28#include "src/core/NEON/NEMath.h"
29#include "src/core/NEON/NESymm.h"
30#include "src/core/NEON/wrapper/wrapper.h"
Michalis Spyrouc4d45552020-10-19 12:41:30 +010031
32#include <arm_neon.h>
33#include <cmath>
34#include <cstddef>
35
36namespace arm_compute
37{
38namespace cpu
39{
Dana Zlotnik32291712021-11-25 09:58:27 +020040void neon_qsymm16_activation(const ITensor *src, ITensor *dst, const ActivationLayerInfo &act_info, const Window &window)
Michalis Spyrouc4d45552020-10-19 12:41:30 +010041{
42 constexpr int window_step_x = 8;
43 const auto window_start_x = static_cast<int>(window.x().start());
44 const auto window_end_x = static_cast<int>(window.x().end());
45 const ActivationLayerInfo::ActivationFunction act = act_info.activation();
46
47 Window win_collapsed = window.collapse_if_possible(window, Window::DimZ);
48 win_collapsed.set(Window::DimX, Window::Dimension(0, 1, 1));
49
50 Iterator input(src, win_collapsed);
51 Iterator output(dst, win_collapsed);
52
53 const UniformQuantizationInfo qi_in = src->info()->quantization_info().uniform();
54 const UniformQuantizationInfo qi_out = dst->info()->quantization_info().uniform();
55 const auto vconst_1 = vdupq_n_f32(1.f);
56 const float32x4_t va_f32 = vdupq_n_f32(act_info.a());
57 const float32x4_t vb_f32 = vdupq_n_f32(act_info.b());
58 const float a_f32 = act_info.a();
59 const float b_f32 = act_info.b();
60
61 execute_window_loop(win_collapsed, [&](const Coordinates &)
62 {
63 const auto input_ptr = reinterpret_cast<const qsymm16_t *>(input.ptr());
64 const auto output_ptr = reinterpret_cast<qsymm16_t *>(output.ptr());
65
66 wrapper::traits::neon_bitvector_t<qsymm16_t, wrapper::traits::BitWidth::W128> tmp;
67 ARM_COMPUTE_UNUSED(tmp);
68
69 // Compute S elements per iteration
70 int x = window_start_x;
71 for(; x <= (window_end_x - window_step_x); x += window_step_x)
72 {
73 const auto vin = wrapper::vloadq(input_ptr + x);
74 if(act == ActivationLayerInfo::ActivationFunction::LOGISTIC)
75 {
76 // De-quantize
77 const auto vin_deq = vdequantize_int16(vin, qi_in.scale);
78 // Perform activation
79 const float32x4x2_t tmp_dep =
80 {
81 {
82 wrapper::vdiv(vconst_1, wrapper::vadd(vconst_1, wrapper::vexpq(wrapper::vneg(vin_deq.val[0])))),
83 wrapper::vdiv(vconst_1, wrapper::vadd(vconst_1, wrapper::vexpq(wrapper::vneg(vin_deq.val[1])))),
84 }
85 };
86 // Re-quantize to new output space
87 tmp = vquantize_int16(tmp_dep, qi_out.scale);
88 }
89 else if(act == ActivationLayerInfo::ActivationFunction::TANH)
90 {
91 // De-quantize
92 const auto vin_deq = vdequantize_int16(vin, qi_in.scale);
93 // Perform activation
94 const float32x4x2_t tmp_dep =
95 {
96 {
97 wrapper::vmul(va_f32, wrapper::vtanh(wrapper::vmul(vin_deq.val[0], vb_f32))),
98 wrapper::vmul(va_f32, wrapper::vtanh(wrapper::vmul(vin_deq.val[1], vb_f32))),
99 }
100 };
101 // Re-quantize to new output space
102 tmp = vquantize_int16(tmp_dep, qi_out.scale);
103 }
104 else
105 {
106 ARM_COMPUTE_ERROR("Unsupported activation function");
107 }
108 wrapper::vstore(output_ptr + x, tmp);
109 }
110
111 // Compute left-over elements
112 for(; x < window_end_x; ++x)
113 {
114 qsymm16_t in = *(reinterpret_cast<const qsymm16_t *>(input_ptr + x));
115 qsymm16_t tmp = 0;
116 if(act == ActivationLayerInfo::ActivationFunction::LOGISTIC)
117 {
118 float tmp_f = dequantize_qsymm16(in, qi_in.scale);
119 tmp_f = 1.f / (1.f + std::exp(-tmp_f));
120 tmp = quantize_qsymm16(tmp_f, qi_out);
121 }
122 else if(act == ActivationLayerInfo::ActivationFunction::TANH)
123 {
124 float tmp_f = dequantize_qsymm16(in, qi_in.scale);
125 tmp_f = a_f32 * std::tanh(b_f32 * tmp_f);
126 tmp = quantize_qsymm16(tmp_f, qi_out);
127 }
128 else
129 {
130 ARM_COMPUTE_ERROR("Unsupported activation function");
131 }
132 *(output_ptr + x) = tmp;
133 }
134 },
135 input, output);
136}
137} // namespace cpu
138} // namespace arm_compute