blob: bc513e66184117359f028fab928bf2e6bb20ce43 [file] [log] [blame]
Gian Marco Iodicebc415af2019-06-13 15:58:32 +01001/*
2 * Copyright (c) 2019 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#include "arm_compute/core/NEON/kernels/NEGEMMLowpQuantizeDownInt32ToInt16ScaleByFixedPointKernel.h"
25
26#include "arm_compute/core/AccessWindowStatic.h"
27#include "arm_compute/core/Error.h"
28#include "arm_compute/core/Helpers.h"
29#include "arm_compute/core/ITensor.h"
30#include "arm_compute/core/NEON/NESymm.h"
31#include "arm_compute/core/TensorInfo.h"
32#include "arm_compute/core/Types.h"
33#include "arm_compute/core/Utils.h"
34#include "arm_compute/core/Validate.h"
35#include "arm_compute/core/Window.h"
36#include "arm_compute/core/utils/misc/ShapeCalculator.h"
37
38#include <arm_neon.h>
39#include <cstddef>
40#include <cstdint>
41
42namespace arm_compute
43{
44namespace
45{
46Status validate_arguments(const ITensorInfo *input, const ITensorInfo *bias, const ITensorInfo *output, int min, int max)
47{
48 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input, 1, DataType::S32);
49 ARM_COMPUTE_RETURN_ERROR_ON(max > 32767);
50 ARM_COMPUTE_RETURN_ERROR_ON(min < -32768 || min > max);
51
52 // Check biases if exist
53 if(bias != nullptr)
54 {
55 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input, bias);
56 ARM_COMPUTE_RETURN_ERROR_ON(bias->num_dimensions() > 1);
57 ARM_COMPUTE_RETURN_ERROR_ON(input->dimension(0) != bias->dimension(0));
58 }
59
60 if(output->total_size() != 0)
61 {
62 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(output, 1, DataType::QSYMM16);
63 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_SHAPES(output, input);
64 }
65
66 return Status{};
67}
68
69std::pair<Status, Window> validate_and_configure_window(ITensorInfo *input, ITensorInfo *output)
70{
71 // Output auto inizialitation if not yet initialized
72 auto_init_if_empty(*output, input->clone()->set_data_type(DataType::QSYMM16));
73
74 // Configure kernel window
75 Window win = calculate_max_window(*input, Steps());
76
77 // NEGEMMLowpQuantizeDownInt32ToInt16ScaleByFixedPointKernel doesn't need padding so update_window_and_padding() can be skipped
78 Coordinates coord;
79 coord.set_num_dimensions(output->num_dimensions());
80 output->set_valid_region(ValidRegion(coord, output->tensor_shape()));
81
82 return std::make_pair(Status{}, win);
83}
84} // namespace
85
86class Coordinates;
87
88template <bool is_bounded_relu>
89void NEGEMMLowpQuantizeDownInt32ToInt16ScaleByFixedPointKernel::run(const Window &window)
90{
91 const int16x8_t min_s16 = vdupq_n_s16(static_cast<int16_t>(_min));
92 const int16x8_t max_s16 = vdupq_n_s16(static_cast<int16_t>(_max));
93
94 ARM_COMPUTE_UNUSED(min_s16);
95 ARM_COMPUTE_UNUSED(max_s16);
96
97 const int window_step_x = 8;
98 const auto window_start_x = static_cast<int>(window.x().start());
99 const auto window_end_x = static_cast<int>(window.x().end());
100
101 Window win_collapsed = window.collapse_if_possible(window, Window::DimZ);
102 win_collapsed.set(Window::DimX, Window::Dimension(0, 1, 1));
103
104 Iterator in(_input, win_collapsed);
105 Iterator out(_output, win_collapsed);
106 if(_bias != nullptr)
107 {
108 Window win_biases;
109 win_biases.set(Window::DimX, Window::Dimension(0, 1, 1));
110 win_biases.set(Window::DimY, Window::Dimension(0, 1, 1));
111
112 Iterator bias(_bias, win_biases);
113 execute_window_loop(win_collapsed, [&](const Coordinates &)
114 {
115 // Compute 16 elements per iteration
116 int x = window_start_x;
117 for(; x <= (window_end_x - window_step_x); x += window_step_x)
118 {
119 int32x4x2_t in_s32 =
120 {
121 {
122 vld1q_s32(reinterpret_cast<const int32_t *>(in.ptr()) + x + 0),
123 vld1q_s32(reinterpret_cast<const int32_t *>(in.ptr()) + x + 4)
124 }
125 };
126
127 const int32x4x2_t bias_s32 =
128 {
129 {
130 vld1q_s32(reinterpret_cast<const int32_t *>(bias.ptr()) + x + 0),
131 vld1q_s32(reinterpret_cast<const int32_t *>(bias.ptr()) + x + 4)
132 }
133 };
134
135 // Add the bias to GEMM's result
136 in_s32.val[0] = vaddq_s32(in_s32.val[0], bias_s32.val[0]);
137 in_s32.val[1] = vaddq_s32(in_s32.val[1], bias_s32.val[1]);
138
139 vst1q_s16(reinterpret_cast<int16_t *>(out.ptr()) + x, finalize_quantization_int16<is_bounded_relu>(in_s32, _result_fixedpoint_multiplier, _result_shift, min_s16, max_s16));
140 }
141
142 // Compute left-over elements
143 for(; x < window_end_x; ++x)
144 {
145 const int32_t bias_value = *(reinterpret_cast<const int32_t *>(bias.ptr()) + x);
146 int32_t in_value = *(reinterpret_cast<const int32_t *>(in.ptr()) + x);
147
148 // Add bias
149 in_value += bias_value;
150 // Finalize and store the result
151 *(reinterpret_cast<int16_t *>(out.ptr()) + x) = finalize_quantization_int16<is_bounded_relu>(in_value, _result_fixedpoint_multiplier, _result_shift, static_cast<int16_t>(_min),
152 static_cast<int16_t>(_max));
153 }
154 },
155 in, out, bias);
156 }
157 else
158 {
159 execute_window_loop(win_collapsed, [&](const Coordinates &)
160 {
161 // Compute 16 elements per iteration
162 int x = window_start_x;
163 for(; x <= (window_end_x - window_step_x); x += window_step_x)
164 {
165 int32x4x2_t in_s32 =
166 {
167 {
168 vld1q_s32(reinterpret_cast<const int32_t *>(in.ptr()) + x + 0),
169 vld1q_s32(reinterpret_cast<const int32_t *>(in.ptr()) + x + 4)
170 }
171 };
172
173 vst1q_s16(reinterpret_cast<int16_t *>(out.ptr()) + x, finalize_quantization_int16<is_bounded_relu>(in_s32, _result_fixedpoint_multiplier, _result_shift, min_s16, max_s16));
174 }
175
176 // Compute left-over elements
177 for(; x < window_end_x; ++x)
178 {
179 const int32_t in_value = *(reinterpret_cast<const int32_t *>(in.ptr()) + x);
180 ARM_COMPUTE_UNUSED(in_value);
181 // Finalize and store the result
182 *(reinterpret_cast<int16_t *>(out.ptr()) + x) = finalize_quantization_int16<is_bounded_relu>(in_value, _result_fixedpoint_multiplier, _result_shift, static_cast<int16_t>(_min),
183 static_cast<int16_t>(_max));
184 }
185 },
186 in, out);
187 }
188}
189
190NEGEMMLowpQuantizeDownInt32ToInt16ScaleByFixedPointKernel::NEGEMMLowpQuantizeDownInt32ToInt16ScaleByFixedPointKernel()
191 : _func(nullptr), _input(nullptr), _bias(nullptr), _output(nullptr), _result_fixedpoint_multiplier(0), _result_shift(0), _min(0), _max(0)
192{
193}
194
195void NEGEMMLowpQuantizeDownInt32ToInt16ScaleByFixedPointKernel::configure(const ITensor *input, const ITensor *bias, ITensor *output, int result_fixedpoint_multiplier, int result_shift,
196 int min, int max)
197{
198 // Perform validate step
199 ARM_COMPUTE_ERROR_ON_NULLPTR(input, output);
200 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(input->info(), (bias != nullptr) ? bias->info() : nullptr, output->info(), min, max));
201
202 _input = input;
203 _bias = bias;
204 _output = output;
205 _result_fixedpoint_multiplier = result_fixedpoint_multiplier;
206 _result_shift = result_shift;
207 _min = min;
208 _max = max;
209
210 // Configure kernel window
211 auto win_config = validate_and_configure_window(input->info(), output->info());
212 ARM_COMPUTE_ERROR_THROW_ON(win_config.first);
213 INEKernel::configure(win_config.second);
214
215 // Check if we need to clamp the result using min and max
216 const bool is_bounded_relu = ((min != max) && !(min == -32768 && max == 32767));
217 _func = is_bounded_relu ? &NEGEMMLowpQuantizeDownInt32ToInt16ScaleByFixedPointKernel::run<true> : &NEGEMMLowpQuantizeDownInt32ToInt16ScaleByFixedPointKernel::run<false>;
218}
219
220Status NEGEMMLowpQuantizeDownInt32ToInt16ScaleByFixedPointKernel::validate(const ITensorInfo *input, const ITensorInfo *bias, const ITensorInfo *output, int min, int max)
221{
222 ARM_COMPUTE_ERROR_ON_NULLPTR(input, output);
223 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(input, bias, output, min, max));
224 ARM_COMPUTE_RETURN_ON_ERROR(validate_and_configure_window(input->clone().get(), output->clone().get()).first);
225
226 return Status{};
227}
228
229void NEGEMMLowpQuantizeDownInt32ToInt16ScaleByFixedPointKernel::run(const Window &window, const ThreadInfo &info)
230{
231 ARM_COMPUTE_UNUSED(info);
232 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
233 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(INEKernel::window(), window);
234
235 (this->*_func)(window);
236}
237} // namespace arm_compute