blob: 5e14e1a95df6506a47fefa4a506b1560a445fd00 [file] [log] [blame]
Gian Marco58c57942017-11-28 09:10:03 +00001/*
Georgios Pinitasf72f9362018-01-12 16:29:45 +00002 * Copyright (c) 2017-2018 ARM Limited.
Gian Marco58c57942017-11-28 09:10:03 +00003 *
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/NEGEMMLowpQuantizeDownInt32ToUint8ScaleByFixedPointKernel.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/NEAsymm.h"
31#include "arm_compute/core/Types.h"
32#include "arm_compute/core/Utils.h"
33#include "arm_compute/core/Validate.h"
34#include "arm_compute/core/Window.h"
35
36#include <arm_neon.h>
37#include <cstddef>
38#include <cstdint>
39
40using namespace arm_compute;
41
42namespace
43{
Georgios Pinitas631c41a2017-12-06 11:53:03 +000044Status validate_arguments(const ITensorInfo *input, const ITensorInfo *bias, const ITensorInfo *output, int min, int max)
Gian Marco58c57942017-11-28 09:10:03 +000045{
46 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input, 1, DataType::S32);
Gian Marco58c57942017-11-28 09:10:03 +000047 ARM_COMPUTE_RETURN_ERROR_ON(max > 255);
48 ARM_COMPUTE_RETURN_ERROR_ON(min < 0 || min > max);
49
50 // Check biases if exist
51 if(bias != nullptr)
52 {
53 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input, bias);
54 ARM_COMPUTE_RETURN_ERROR_ON(bias->num_dimensions() > 1);
55 ARM_COMPUTE_RETURN_ERROR_ON(input->dimension(0) != bias->dimension(0));
56 }
Chunosov5124be52017-11-22 20:42:13 +070057
58 if(output->total_size() != 0)
59 {
60 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(output, 1, DataType::QASYMM8);
61 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_SHAPES(input, output);
62 }
63
Georgios Pinitas631c41a2017-12-06 11:53:03 +000064 return Status{};
Gian Marco58c57942017-11-28 09:10:03 +000065}
66
Georgios Pinitas631c41a2017-12-06 11:53:03 +000067std::pair<Status, Window> validate_and_configure_window(ITensorInfo *input, ITensorInfo *bias, ITensorInfo *output)
Gian Marco58c57942017-11-28 09:10:03 +000068{
Gian Marco7f0f7902017-12-07 09:26:56 +000069 // Note: This kernel performs 16 elements per iteration.
70 // However, since we use a left-over for loop, we cannot have any read or write out of memory
71 // For this reason num_elems_processed_per_iteration is set to 1
72 constexpr unsigned int num_elems_processed_per_iteration = 1;
Gian Marco58c57942017-11-28 09:10:03 +000073
74 // Configure kernel window
75 Window win = calculate_max_window(*output, Steps(num_elems_processed_per_iteration));
76
77 AccessWindowHorizontal input_access(input, 0, num_elems_processed_per_iteration);
Gian Marco58c57942017-11-28 09:10:03 +000078
79 bool window_changed = update_window_and_padding(win,
Chunosov5124be52017-11-22 20:42:13 +070080 input_access);
81
82 if(output->total_size() != 0)
83 {
84 AccessWindowHorizontal output_result_access(output, 0, num_elems_processed_per_iteration);
85 window_changed = window_changed || update_window_and_padding(win, output_result_access);
86
87 output_result_access.set_valid_region(win, ValidRegion(Coordinates(), output->tensor_shape()));
88 }
Gian Marco58c57942017-11-28 09:10:03 +000089
90 if(bias != nullptr)
91 {
Gian Marco7f0f7902017-12-07 09:26:56 +000092 AccessWindowStatic bias_access(bias, 0, 0, bias->dimension(0), bias->dimension(1));
Gian Marco58c57942017-11-28 09:10:03 +000093 window_changed = window_changed || update_window_and_padding(win, bias_access);
94 }
95
Georgios Pinitas631c41a2017-12-06 11:53:03 +000096 Status err = (window_changed) ? ARM_COMPUTE_CREATE_ERROR(ErrorCode::RUNTIME_ERROR, "Insufficient Padding!") : Status{};
Gian Marco58c57942017-11-28 09:10:03 +000097 return std::make_pair(err, win);
98}
Georgios Pinitasf72f9362018-01-12 16:29:45 +000099} // namespace
Gian Marco58c57942017-11-28 09:10:03 +0000100
Georgios Pinitasf72f9362018-01-12 16:29:45 +0000101namespace arm_compute
Gian Marco58c57942017-11-28 09:10:03 +0000102{
Georgios Pinitasf72f9362018-01-12 16:29:45 +0000103class Coordinates;
Gian Marco7f0f7902017-12-07 09:26:56 +0000104
105/* Function used by the left-over for loop to perform the quantization */
106template <bool is_bounded_relu>
107inline uint8_t finalize_quantization(int32x4_t in_s32, int result_fixedpoint_multiplier, int32_t result_shift, int32x4_t result_offset_after_shift_s32, uint8_t min_u8, uint8_t max_u8)
108{
109 const static int32x4_t zero_s32 = vdupq_n_s32(0);
110 const static int32x4_t sat_value_s32 = vdupq_n_s32(255);
111
112 // Fixed point multiplication with vector saturating rounding doubling multiply high with scalar
113 in_s32 = vqrdmulhq_n_s32(in_s32, result_fixedpoint_multiplier);
114
115 // Round to the nearest division by a power-of-two using result_shift_s32
116 in_s32 = rounding_divide_by_pow2(in_s32, result_shift);
117
118 // Add the offset terms
119 in_s32 = vaddq_s32(in_s32, result_offset_after_shift_s32);
120
121 // Saturate negative values
122 in_s32 = vmaxq_s32(in_s32, zero_s32);
123 in_s32 = vminq_s32(in_s32, sat_value_s32);
124
125 auto out_u8 = static_cast<uint8_t>(vgetq_lane_s32(in_s32, 0));
126
127 if(is_bounded_relu)
128 {
129 out_u8 = std::max(out_u8, min_u8);
130 out_u8 = std::min(out_u8, max_u8);
131 }
132
133 return out_u8;
134}
Gian Marco58c57942017-11-28 09:10:03 +0000135} // namespace arm_compute
136
137template <bool is_bounded_relu>
138void NEGEMMLowpQuantizeDownInt32ToUint8ScaleByFixedPointKernel::run(const Window &window)
139{
140 const int32x4_t result_offset_after_shift_s32 = vdupq_n_s32(_result_offset_after_shift);
141 const uint8x16_t min_u8 = vdupq_n_u8(static_cast<uint8_t>(_min));
142 const uint8x16_t max_u8 = vdupq_n_u8(static_cast<uint8_t>(_max));
143
144 ARM_COMPUTE_UNUSED(min_u8);
145 ARM_COMPUTE_UNUSED(max_u8);
146
Gian Marco7f0f7902017-12-07 09:26:56 +0000147 const int window_step_x = 16;
148 const auto window_start_x = static_cast<int>(window.x().start());
149 const auto window_end_x = static_cast<int>(window.x().end());
150
151 Window win(window);
152 win.set(Window::DimX, Window::Dimension(0, 1, 1));
153
154 Iterator in(_input, win);
155 Iterator out(_output, win);
Gian Marco58c57942017-11-28 09:10:03 +0000156
157 if(_bias != nullptr)
158 {
159 Window win_biases;
Gian Marco7f0f7902017-12-07 09:26:56 +0000160 win_biases.set(Window::DimX, Window::Dimension(0, 1, 1));
Gian Marco58c57942017-11-28 09:10:03 +0000161 win_biases.set(Window::DimY, Window::Dimension(0, 1, 1));
162
163 Iterator bias(_bias, win_biases);
Gian Marco7f0f7902017-12-07 09:26:56 +0000164 execute_window_loop(win, [&](const Coordinates & id)
Gian Marco58c57942017-11-28 09:10:03 +0000165 {
Gian Marco7f0f7902017-12-07 09:26:56 +0000166 // Compute 16 elements per iteration
167 int x = window_start_x;
168 for(; x <= (window_end_x - window_step_x); x += window_step_x)
Gian Marco58c57942017-11-28 09:10:03 +0000169 {
Gian Marco7f0f7902017-12-07 09:26:56 +0000170 int32x4x4_t in_s32 =
Gian Marco58c57942017-11-28 09:10:03 +0000171 {
Gian Marco7f0f7902017-12-07 09:26:56 +0000172 {
173 vld1q_s32(reinterpret_cast<const int32_t *>(in.ptr()) + x + 0),
174 vld1q_s32(reinterpret_cast<const int32_t *>(in.ptr()) + x + 4),
175 vld1q_s32(reinterpret_cast<const int32_t *>(in.ptr()) + x + 8),
176 vld1q_s32(reinterpret_cast<const int32_t *>(in.ptr()) + x + 12)
177 }
178 };
Gian Marco58c57942017-11-28 09:10:03 +0000179
Gian Marco7f0f7902017-12-07 09:26:56 +0000180 const int32x4x4_t bias_s32 =
181 {
182 {
183 vld1q_s32(reinterpret_cast<const int32_t *>(bias.ptr()) + x + 0),
184 vld1q_s32(reinterpret_cast<const int32_t *>(bias.ptr()) + x + 4),
185 vld1q_s32(reinterpret_cast<const int32_t *>(bias.ptr()) + x + 8),
186 vld1q_s32(reinterpret_cast<const int32_t *>(bias.ptr()) + x + 12)
187 }
188 };
189
190 // Add the bias to GEMM's result
191 in_s32.val[0] = vaddq_s32(in_s32.val[0], bias_s32.val[0]);
192 in_s32.val[1] = vaddq_s32(in_s32.val[1], bias_s32.val[1]);
193 in_s32.val[2] = vaddq_s32(in_s32.val[2], bias_s32.val[2]);
194 in_s32.val[3] = vaddq_s32(in_s32.val[3], bias_s32.val[3]);
195
196 vst1q_u8(out.ptr() + x, finalize_quantization<is_bounded_relu>(in_s32, _result_fixedpoint_multiplier, _result_shift, result_offset_after_shift_s32, min_u8, max_u8));
197 }
198
199 // Compute left-over elements
200 for(; x < window_end_x; ++x)
Gian Marco58c57942017-11-28 09:10:03 +0000201 {
Gian Marco7f0f7902017-12-07 09:26:56 +0000202 const int32_t bias_value = *(reinterpret_cast<const int32_t *>(bias.ptr()) + x);
203 int32_t in_value = *(reinterpret_cast<const int32_t *>(in.ptr()) + x);
Gian Marco58c57942017-11-28 09:10:03 +0000204
Gian Marco7f0f7902017-12-07 09:26:56 +0000205 // Add bias
206 in_value += bias_value;
Gian Marco58c57942017-11-28 09:10:03 +0000207
Gian Marco7f0f7902017-12-07 09:26:56 +0000208 // Finalize and store the result
209 *(out.ptr() + x) = finalize_quantization<is_bounded_relu>(vdupq_n_s32(in_value), _result_fixedpoint_multiplier, _result_shift, result_offset_after_shift_s32, static_cast<uint8_t>(_min),
210 static_cast<uint8_t>(_max));
211 }
Gian Marco58c57942017-11-28 09:10:03 +0000212 },
213 in, bias, out);
214 }
215 else
216 {
Gian Marco7f0f7902017-12-07 09:26:56 +0000217 execute_window_loop(win, [&](const Coordinates & id)
Gian Marco58c57942017-11-28 09:10:03 +0000218 {
Gian Marco7f0f7902017-12-07 09:26:56 +0000219 // Compute 16 elements per iteration
220 int x = window_start_x;
221 for(; x <= (window_end_x - window_step_x); x += window_step_x)
Gian Marco58c57942017-11-28 09:10:03 +0000222 {
Gian Marco7f0f7902017-12-07 09:26:56 +0000223 int32x4x4_t in_s32 =
Gian Marco58c57942017-11-28 09:10:03 +0000224 {
Gian Marco7f0f7902017-12-07 09:26:56 +0000225 {
226 vld1q_s32(reinterpret_cast<const int32_t *>(in.ptr()) + x + 0),
227 vld1q_s32(reinterpret_cast<const int32_t *>(in.ptr()) + x + 4),
228 vld1q_s32(reinterpret_cast<const int32_t *>(in.ptr()) + x + 8),
229 vld1q_s32(reinterpret_cast<const int32_t *>(in.ptr()) + x + 12)
230 }
231 };
Gian Marco58c57942017-11-28 09:10:03 +0000232
Gian Marco7f0f7902017-12-07 09:26:56 +0000233 vst1q_u8(out.ptr() + x, finalize_quantization<is_bounded_relu>(in_s32, _result_fixedpoint_multiplier, _result_shift, result_offset_after_shift_s32, min_u8, max_u8));
234 }
235
236 // Compute left-over elements
237 for(; x < window_end_x; ++x)
238 {
239 const int32x4_t in_s32 = vld1q_dup_s32(reinterpret_cast<const int32_t *>(in.ptr()) + x);
240
241 // Finalize and store the result
242 *(out.ptr() + x) = finalize_quantization<is_bounded_relu>(in_s32, _result_fixedpoint_multiplier, _result_shift, result_offset_after_shift_s32, static_cast<uint8_t>(_min), static_cast<uint8_t>(_max));
243 }
Gian Marco58c57942017-11-28 09:10:03 +0000244 },
245 in, out);
246 }
247}
248
249NEGEMMLowpQuantizeDownInt32ToUint8ScaleByFixedPointKernel::NEGEMMLowpQuantizeDownInt32ToUint8ScaleByFixedPointKernel()
250 : _func(nullptr), _input(nullptr), _bias(nullptr), _output(nullptr), _result_fixedpoint_multiplier(0), _result_shift(0), _result_offset_after_shift(0), _min(0), _max(0)
251{
252}
253
254void NEGEMMLowpQuantizeDownInt32ToUint8ScaleByFixedPointKernel::configure(const ITensor *input, const ITensor *bias, ITensor *output, int result_fixedpoint_multiplier, int result_shift,
255 int result_offset_after_shift, int min, int max)
256{
257 // Perform validate step
258 ARM_COMPUTE_ERROR_ON_NULLPTR(input, output);
259
260 // Output auto inizialitation if not yet initialized
261 auto_init_if_empty(*output->info(), input->info()->clone()->set_data_type(DataType::QASYMM8));
262
263 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(input->info(),
264 (bias != nullptr) ? bias->info() : nullptr,
265 output->info(),
266 min,
267 max));
268
269 _input = input;
270 _bias = bias;
271 _output = output;
272 _result_fixedpoint_multiplier = result_fixedpoint_multiplier;
273 _result_shift = result_shift;
274 _result_offset_after_shift = result_offset_after_shift;
275 _min = min;
276 _max = max;
277
278 // Configure kernel window
279 auto win_config = validate_and_configure_window(input->info(), (bias != nullptr) ? bias->info() : nullptr, output->info());
280 ARM_COMPUTE_ERROR_THROW_ON(win_config.first);
281 INEKernel::configure(win_config.second);
282
283 // Check if we need to clamp the result using min and max
284 const bool is_bounded_relu = ((min != max) && !(min == 0 && max == 255));
285 _func = is_bounded_relu ? &NEGEMMLowpQuantizeDownInt32ToUint8ScaleByFixedPointKernel::run<true> : &NEGEMMLowpQuantizeDownInt32ToUint8ScaleByFixedPointKernel::run<false>;
286}
287
Georgios Pinitas631c41a2017-12-06 11:53:03 +0000288Status NEGEMMLowpQuantizeDownInt32ToUint8ScaleByFixedPointKernel::validate(const ITensorInfo *input, const ITensorInfo *bias, const ITensorInfo *output, int min, int max)
Gian Marco58c57942017-11-28 09:10:03 +0000289{
Chunosov5124be52017-11-22 20:42:13 +0700290 ARM_COMPUTE_ERROR_ON_NULLPTR(input, output);
Gian Marco58c57942017-11-28 09:10:03 +0000291 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(input, bias, output, min, max));
292 ARM_COMPUTE_RETURN_ON_ERROR(validate_and_configure_window(input->clone().get(),
293 (bias != nullptr) ? bias->clone().get() : nullptr,
294 output->clone().get())
295 .first);
296
Georgios Pinitas631c41a2017-12-06 11:53:03 +0000297 return Status{};
Gian Marco58c57942017-11-28 09:10:03 +0000298}
299
300void NEGEMMLowpQuantizeDownInt32ToUint8ScaleByFixedPointKernel::run(const Window &window, const ThreadInfo &info)
301{
302 ARM_COMPUTE_UNUSED(info);
303 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
304 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(INEKernel::window(), window);
305
306 (this->*_func)(window);
307}