blob: 1e8aa0cc0a6ef09da1b4bebc54ad3bf87662e8b7 [file] [log] [blame]
Gian Marco58c57942017-11-28 09:10:03 +00001/*
Michele Di Giorgiod9eaf612020-07-08 11:12:57 +01002 * Copyright (c) 2017-2020 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
Gian Marco58c57942017-11-28 09:10:03 +000026#include "arm_compute/core/Error.h"
27#include "arm_compute/core/Helpers.h"
28#include "arm_compute/core/ITensor.h"
Georgios Pinitas932491f2018-09-21 16:33:15 +010029#include "arm_compute/core/TensorInfo.h"
Gian Marco58c57942017-11-28 09:10:03 +000030#include "arm_compute/core/Types.h"
31#include "arm_compute/core/Utils.h"
32#include "arm_compute/core/Validate.h"
33#include "arm_compute/core/Window.h"
Georgios Pinitas041f36d2018-09-18 18:38:37 +010034#include "arm_compute/core/utils/misc/ShapeCalculator.h"
Sang-Hoon Park68dd25f2020-10-19 16:00:11 +010035#include "src/core/AccessWindowStatic.h"
Georgios Pinitasddb93bb2020-10-02 16:38:59 +010036#include "src/core/NEON/NEAsymm.h"
Sang-Hoon Park68dd25f2020-10-19 16:00:11 +010037#include "src/core/helpers/AutoConfiguration.h"
38#include "src/core/helpers/WindowHelpers.h"
Gian Marco58c57942017-11-28 09:10:03 +000039
40#include <arm_neon.h>
41#include <cstddef>
42#include <cstdint>
43
Michele Di Giorgiof29d1b72019-10-29 10:58:13 +000044namespace arm_compute
45{
Gian Marco58c57942017-11-28 09:10:03 +000046namespace
47{
Georgios Pinitasbb081ca2018-11-08 10:22:01 +000048Status validate_arguments(const ITensorInfo *input, const ITensorInfo *bias, const ITensorInfo *output, int min, int max)
Gian Marco58c57942017-11-28 09:10:03 +000049{
50 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input, 1, DataType::S32);
Giorgio Arena1856ff72020-02-07 13:46:45 +000051 ARM_COMPUTE_RETURN_ERROR_ON(min > max);
Gian Marco58c57942017-11-28 09:10:03 +000052
53 // Check biases if exist
54 if(bias != nullptr)
55 {
56 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input, bias);
57 ARM_COMPUTE_RETURN_ERROR_ON(bias->num_dimensions() > 1);
58 ARM_COMPUTE_RETURN_ERROR_ON(input->dimension(0) != bias->dimension(0));
59 }
Chunosov5124be52017-11-22 20:42:13 +070060
61 if(output->total_size() != 0)
62 {
63 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(output, 1, DataType::QASYMM8);
Georgios Pinitasbb081ca2018-11-08 10:22:01 +000064 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_SHAPES(output, input);
Chunosov5124be52017-11-22 20:42:13 +070065 }
66
Georgios Pinitas631c41a2017-12-06 11:53:03 +000067 return Status{};
Gian Marco58c57942017-11-28 09:10:03 +000068}
69
Georgios Pinitas5a594532018-12-03 14:30:05 +000070std::pair<Status, Window> validate_and_configure_window(ITensorInfo *input, ITensorInfo *output)
Gian Marco58c57942017-11-28 09:10:03 +000071{
Georgios Pinitasbb081ca2018-11-08 10:22:01 +000072 // Output auto inizialitation if not yet initialized
73 auto_init_if_empty(*output, input->clone()->set_data_type(DataType::QASYMM8));
74
Gian Marco58c57942017-11-28 09:10:03 +000075 // Configure kernel window
Georgios Pinitas5a594532018-12-03 14:30:05 +000076 Window win = calculate_max_window(*input, Steps());
Gian Marco58c57942017-11-28 09:10:03 +000077
Georgios Pinitas5a594532018-12-03 14:30:05 +000078 // NEGEMMLowpQuantizeDownInt32ToUint8ScaleByFixedPointKernel doesn't need padding so update_window_and_padding() can be skipped
79 Coordinates coord;
80 coord.set_num_dimensions(output->num_dimensions());
81 output->set_valid_region(ValidRegion(coord, output->tensor_shape()));
Gian Marco58c57942017-11-28 09:10:03 +000082
Georgios Pinitas5a594532018-12-03 14:30:05 +000083 return std::make_pair(Status{}, win);
Gian Marco58c57942017-11-28 09:10:03 +000084}
Georgios Pinitasf72f9362018-01-12 16:29:45 +000085} // namespace
Gian Marco58c57942017-11-28 09:10:03 +000086
Georgios Pinitasf72f9362018-01-12 16:29:45 +000087namespace arm_compute
Gian Marco58c57942017-11-28 09:10:03 +000088{
Georgios Pinitasf72f9362018-01-12 16:29:45 +000089class Coordinates;
Gian Marco58c57942017-11-28 09:10:03 +000090} // namespace arm_compute
91
92template <bool is_bounded_relu>
93void NEGEMMLowpQuantizeDownInt32ToUint8ScaleByFixedPointKernel::run(const Window &window)
94{
95 const int32x4_t result_offset_after_shift_s32 = vdupq_n_s32(_result_offset_after_shift);
96 const uint8x16_t min_u8 = vdupq_n_u8(static_cast<uint8_t>(_min));
97 const uint8x16_t max_u8 = vdupq_n_u8(static_cast<uint8_t>(_max));
98
99 ARM_COMPUTE_UNUSED(min_u8);
100 ARM_COMPUTE_UNUSED(max_u8);
101
Georgios Pinitasbb081ca2018-11-08 10:22:01 +0000102 const int window_step_x = 16;
103 const auto window_start_x = static_cast<int>(window.x().start());
104 const auto window_end_x = static_cast<int>(window.x().end());
Gian Marco7f0f7902017-12-07 09:26:56 +0000105
Georgios Pinitas041f36d2018-09-18 18:38:37 +0100106 Window win_collapsed = window.collapse_if_possible(window, Window::DimZ);
107 win_collapsed.set(Window::DimX, Window::Dimension(0, 1, 1));
Gian Marco7f0f7902017-12-07 09:26:56 +0000108
Georgios Pinitas041f36d2018-09-18 18:38:37 +0100109 Iterator in(_input, win_collapsed);
Georgios Pinitasbb081ca2018-11-08 10:22:01 +0000110 Iterator out(_output, win_collapsed);
Gian Marco58c57942017-11-28 09:10:03 +0000111 if(_bias != nullptr)
112 {
113 Window win_biases;
Gian Marco7f0f7902017-12-07 09:26:56 +0000114 win_biases.set(Window::DimX, Window::Dimension(0, 1, 1));
Gian Marco58c57942017-11-28 09:10:03 +0000115 win_biases.set(Window::DimY, Window::Dimension(0, 1, 1));
116
117 Iterator bias(_bias, win_biases);
Michalis Spyroua4f378d2019-04-26 14:54:54 +0100118 execute_window_loop(win_collapsed, [&](const Coordinates &)
Gian Marco58c57942017-11-28 09:10:03 +0000119 {
Gian Marco7f0f7902017-12-07 09:26:56 +0000120 // Compute 16 elements per iteration
121 int x = window_start_x;
122 for(; x <= (window_end_x - window_step_x); x += window_step_x)
Gian Marco58c57942017-11-28 09:10:03 +0000123 {
Gian Marco7f0f7902017-12-07 09:26:56 +0000124 int32x4x4_t in_s32 =
Gian Marco58c57942017-11-28 09:10:03 +0000125 {
Gian Marco7f0f7902017-12-07 09:26:56 +0000126 {
127 vld1q_s32(reinterpret_cast<const int32_t *>(in.ptr()) + x + 0),
128 vld1q_s32(reinterpret_cast<const int32_t *>(in.ptr()) + x + 4),
129 vld1q_s32(reinterpret_cast<const int32_t *>(in.ptr()) + x + 8),
130 vld1q_s32(reinterpret_cast<const int32_t *>(in.ptr()) + x + 12)
131 }
132 };
Gian Marco58c57942017-11-28 09:10:03 +0000133
Gian Marco7f0f7902017-12-07 09:26:56 +0000134 const int32x4x4_t bias_s32 =
135 {
136 {
137 vld1q_s32(reinterpret_cast<const int32_t *>(bias.ptr()) + x + 0),
138 vld1q_s32(reinterpret_cast<const int32_t *>(bias.ptr()) + x + 4),
139 vld1q_s32(reinterpret_cast<const int32_t *>(bias.ptr()) + x + 8),
140 vld1q_s32(reinterpret_cast<const int32_t *>(bias.ptr()) + x + 12)
141 }
142 };
143
144 // Add the bias to GEMM's result
145 in_s32.val[0] = vaddq_s32(in_s32.val[0], bias_s32.val[0]);
146 in_s32.val[1] = vaddq_s32(in_s32.val[1], bias_s32.val[1]);
147 in_s32.val[2] = vaddq_s32(in_s32.val[2], bias_s32.val[2]);
148 in_s32.val[3] = vaddq_s32(in_s32.val[3], bias_s32.val[3]);
149
Michalis Spyrou70d43a32020-06-22 17:05:43 +0100150 vst1q_u8(out.ptr() + x, finalize_quantization(in_s32, _result_fixedpoint_multiplier, _result_shift, result_offset_after_shift_s32, min_u8, max_u8, is_bounded_relu));
Gian Marco7f0f7902017-12-07 09:26:56 +0000151 }
152
153 // Compute left-over elements
154 for(; x < window_end_x; ++x)
Gian Marco58c57942017-11-28 09:10:03 +0000155 {
Gian Marco7f0f7902017-12-07 09:26:56 +0000156 const int32_t bias_value = *(reinterpret_cast<const int32_t *>(bias.ptr()) + x);
157 int32_t in_value = *(reinterpret_cast<const int32_t *>(in.ptr()) + x);
Gian Marco58c57942017-11-28 09:10:03 +0000158
Gian Marco7f0f7902017-12-07 09:26:56 +0000159 // Add bias
160 in_value += bias_value;
Gian Marco7f0f7902017-12-07 09:26:56 +0000161 // Finalize and store the result
Michalis Spyrou70d43a32020-06-22 17:05:43 +0100162 *(out.ptr() + x) = finalize_quantization(in_value, _result_fixedpoint_multiplier, _result_shift, _result_offset_after_shift, static_cast<uint8_t>(_min), static_cast<uint8_t>(_max), is_bounded_relu);
Gian Marco7f0f7902017-12-07 09:26:56 +0000163 }
Gian Marco58c57942017-11-28 09:10:03 +0000164 },
Georgios Pinitasbb081ca2018-11-08 10:22:01 +0000165 in, out, bias);
Gian Marco58c57942017-11-28 09:10:03 +0000166 }
167 else
168 {
Michalis Spyroua4f378d2019-04-26 14:54:54 +0100169 execute_window_loop(win_collapsed, [&](const Coordinates &)
Gian Marco58c57942017-11-28 09:10:03 +0000170 {
Gian Marco7f0f7902017-12-07 09:26:56 +0000171 // Compute 16 elements per iteration
172 int x = window_start_x;
173 for(; x <= (window_end_x - window_step_x); x += window_step_x)
Gian Marco58c57942017-11-28 09:10:03 +0000174 {
Gian Marco7f0f7902017-12-07 09:26:56 +0000175 int32x4x4_t in_s32 =
Gian Marco58c57942017-11-28 09:10:03 +0000176 {
Gian Marco7f0f7902017-12-07 09:26:56 +0000177 {
178 vld1q_s32(reinterpret_cast<const int32_t *>(in.ptr()) + x + 0),
179 vld1q_s32(reinterpret_cast<const int32_t *>(in.ptr()) + x + 4),
180 vld1q_s32(reinterpret_cast<const int32_t *>(in.ptr()) + x + 8),
181 vld1q_s32(reinterpret_cast<const int32_t *>(in.ptr()) + x + 12)
182 }
183 };
Gian Marco58c57942017-11-28 09:10:03 +0000184
Michalis Spyrou70d43a32020-06-22 17:05:43 +0100185 vst1q_u8(out.ptr() + x, finalize_quantization(in_s32, _result_fixedpoint_multiplier, _result_shift, result_offset_after_shift_s32, min_u8, max_u8, is_bounded_relu));
Gian Marco7f0f7902017-12-07 09:26:56 +0000186 }
187
188 // Compute left-over elements
189 for(; x < window_end_x; ++x)
190 {
George Wort2d7e6832019-02-22 16:37:41 +0000191 const int32_t in_value = *(reinterpret_cast<const int32_t *>(in.ptr()) + x);
Gian Marco7f0f7902017-12-07 09:26:56 +0000192
193 // Finalize and store the result
Michalis Spyrou70d43a32020-06-22 17:05:43 +0100194 *(out.ptr() + x) = finalize_quantization(in_value, _result_fixedpoint_multiplier, _result_shift, _result_offset_after_shift, static_cast<uint8_t>(_min), static_cast<uint8_t>(_max), is_bounded_relu);
Gian Marco7f0f7902017-12-07 09:26:56 +0000195 }
Gian Marco58c57942017-11-28 09:10:03 +0000196 },
Georgios Pinitasbb081ca2018-11-08 10:22:01 +0000197 in, out);
Gian Marco58c57942017-11-28 09:10:03 +0000198 }
199}
200
201NEGEMMLowpQuantizeDownInt32ToUint8ScaleByFixedPointKernel::NEGEMMLowpQuantizeDownInt32ToUint8ScaleByFixedPointKernel()
Georgios Pinitasbb081ca2018-11-08 10:22:01 +0000202 : _func(nullptr), _input(nullptr), _bias(nullptr), _output(nullptr), _result_fixedpoint_multiplier(0), _result_shift(0), _result_offset_after_shift(0), _min(0), _max(0)
Gian Marco58c57942017-11-28 09:10:03 +0000203{
204}
205
206void NEGEMMLowpQuantizeDownInt32ToUint8ScaleByFixedPointKernel::configure(const ITensor *input, const ITensor *bias, ITensor *output, int result_fixedpoint_multiplier, int result_shift,
Georgios Pinitasbb081ca2018-11-08 10:22:01 +0000207 int result_offset_after_shift, int min, int max)
Gian Marco58c57942017-11-28 09:10:03 +0000208{
209 // Perform validate step
210 ARM_COMPUTE_ERROR_ON_NULLPTR(input, output);
Georgios Pinitasbb081ca2018-11-08 10:22:01 +0000211 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(input->info(), (bias != nullptr) ? bias->info() : nullptr, output->info(), min, max));
Gian Marco58c57942017-11-28 09:10:03 +0000212
213 _input = input;
214 _bias = bias;
215 _output = output;
216 _result_fixedpoint_multiplier = result_fixedpoint_multiplier;
217 _result_shift = result_shift;
218 _result_offset_after_shift = result_offset_after_shift;
219 _min = min;
220 _max = max;
221
222 // Configure kernel window
Georgios Pinitas5a594532018-12-03 14:30:05 +0000223 auto win_config = validate_and_configure_window(input->info(), output->info());
Gian Marco58c57942017-11-28 09:10:03 +0000224 ARM_COMPUTE_ERROR_THROW_ON(win_config.first);
225 INEKernel::configure(win_config.second);
226
227 // Check if we need to clamp the result using min and max
Giorgio Arena1856ff72020-02-07 13:46:45 +0000228 const bool is_bounded_relu = !(min <= 0 && max >= 255);
Gian Marco58c57942017-11-28 09:10:03 +0000229 _func = is_bounded_relu ? &NEGEMMLowpQuantizeDownInt32ToUint8ScaleByFixedPointKernel::run<true> : &NEGEMMLowpQuantizeDownInt32ToUint8ScaleByFixedPointKernel::run<false>;
230}
231
Georgios Pinitasbb081ca2018-11-08 10:22:01 +0000232Status NEGEMMLowpQuantizeDownInt32ToUint8ScaleByFixedPointKernel::validate(const ITensorInfo *input, const ITensorInfo *bias, const ITensorInfo *output, int min, int max)
Gian Marco58c57942017-11-28 09:10:03 +0000233{
Chunosov5124be52017-11-22 20:42:13 +0700234 ARM_COMPUTE_ERROR_ON_NULLPTR(input, output);
Georgios Pinitasbb081ca2018-11-08 10:22:01 +0000235 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(input, bias, output, min, max));
Georgios Pinitas5a594532018-12-03 14:30:05 +0000236 ARM_COMPUTE_RETURN_ON_ERROR(validate_and_configure_window(input->clone().get(), output->clone().get()).first);
Gian Marco58c57942017-11-28 09:10:03 +0000237
Georgios Pinitas631c41a2017-12-06 11:53:03 +0000238 return Status{};
Gian Marco58c57942017-11-28 09:10:03 +0000239}
240
241void NEGEMMLowpQuantizeDownInt32ToUint8ScaleByFixedPointKernel::run(const Window &window, const ThreadInfo &info)
242{
243 ARM_COMPUTE_UNUSED(info);
244 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
245 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(INEKernel::window(), window);
246
247 (this->*_func)(window);
Michele Di Giorgiof29d1b72019-10-29 10:58:13 +0000248}
Michalis Spyrou70d43a32020-06-22 17:05:43 +0100249} // namespace arm_compute