blob: 9700c623186e47e78411377cda8989e2dfc85222 [file] [log] [blame]
Michele Di Giorgio4e09b382017-07-05 18:20:02 +01001/*
Pablo Marquez Telloa5d61bf2022-03-17 12:52:02 +00002 * Copyright (c) 2017-2022 Arm Limited.
Michele Di Giorgio4e09b382017-07-05 18:20:02 +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 */
Georgios Pinitas7891a732021-08-20 21:39:25 +010024#include "src/cpu/kernels/CpuQuantizeKernel.h"
Michele Di Giorgio4e09b382017-07-05 18:20:02 +010025
26#include "arm_compute/core/Error.h"
27#include "arm_compute/core/Helpers.h"
Michele Di Giorgio4e09b382017-07-05 18:20:02 +010028#include "arm_compute/core/Utils.h"
29#include "arm_compute/core/Validate.h"
30#include "arm_compute/core/Window.h"
Georgios Pinitasddb93bb2020-10-02 16:38:59 +010031#include "src/core/NEON/NEAsymm.h"
32#include "src/core/NEON/NEMath.h"
33#include "src/core/NEON/wrapper/wrapper.h"
Sang-Hoon Park68dd25f2020-10-19 16:00:11 +010034#include "src/core/helpers/AutoConfiguration.h"
35#include "src/core/helpers/WindowHelpers.h"
Michele Di Giorgio4e09b382017-07-05 18:20:02 +010036
Sang-Hoon Park68dd25f2020-10-19 16:00:11 +010037#include "src/core/CPP/Validate.h"
John Kesapidesadfb2732019-03-04 16:29:22 +000038
Michele Di Giorgio4e09b382017-07-05 18:20:02 +010039#include <arm_neon.h>
Michele Di Giorgiod64a46c2019-10-01 12:25:49 +010040#include <map>
Michele Di Giorgio4e09b382017-07-05 18:20:02 +010041
Michele Di Giorgiod64a46c2019-10-01 12:25:49 +010042namespace arm_compute
43{
Manuel Bottini0ded4c42021-03-09 14:15:27 +000044namespace cpu
45{
46namespace kernels
47{
Alex Gilday60954c62018-03-05 16:22:48 +000048namespace
49{
Sang-Hoon Parkfb6aaeb2019-11-27 15:26:44 +000050constexpr auto window_step = 16;
51
Manuel Bottini0ded4c42021-03-09 14:15:27 +000052Status validate_arguments(const ITensorInfo *src, const ITensorInfo *dst)
Alex Gilday60954c62018-03-05 16:22:48 +000053{
Manuel Bottini0ded4c42021-03-09 14:15:27 +000054 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(src, dst);
55 ARM_COMPUTE_RETURN_ERROR_ON_CPU_F16_UNSUPPORTED(src);
56 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(src, 1, DataType::QASYMM8, DataType::QASYMM8_SIGNED, DataType::F16, DataType::F32);
57 ARM_COMPUTE_RETURN_ERROR_ON(dst->tensor_shape().total_size() == 0);
Pablo Marquez Telloa5d61bf2022-03-17 12:52:02 +000058 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(dst, 1, DataType::QSYMM8, DataType::QASYMM8, DataType::QASYMM8_SIGNED, DataType::QASYMM16);
Manuel Bottini0ded4c42021-03-09 14:15:27 +000059 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_SHAPES(src, dst);
Alex Gilday60954c62018-03-05 16:22:48 +000060
61 return Status{};
62}
63
Manuel Bottini4370cff2020-02-07 16:31:59 +000064template <typename T>
65inline float32x4x4_t load_value(const T *input_ptr)
66{
67 using Tx16_t = typename wrapper::traits::neon_vector<T, 16>::type;
68 return arm_compute::convert_to_float32x4x4<Tx16_t>(wrapper::vloadq(input_ptr));
69}
70
71template <>
Michalis Spyroua4f378d2019-04-26 14:54:54 +010072inline float32x4x4_t load_value(const float *input_ptr)
Alex Gilday60954c62018-03-05 16:22:48 +000073{
John Kesapidesadfb2732019-03-04 16:29:22 +000074 return { wrapper::vloadq(input_ptr),
75 wrapper::vloadq(input_ptr + 4),
76 wrapper::vloadq(input_ptr + 8),
77 wrapper::vloadq(input_ptr + 12) };
Alex Gilday60954c62018-03-05 16:22:48 +000078}
John Kesapidesadfb2732019-03-04 16:29:22 +000079#ifdef __ARM_FEATURE_FP16_VECTOR_ARITHMETIC
Manuel Bottini4370cff2020-02-07 16:31:59 +000080template <>
81inline float32x4x4_t load_value(const float16_t *input_ptr)
John Kesapidesadfb2732019-03-04 16:29:22 +000082{
83 return { vcvt_f32_f16(wrapper::vload(input_ptr)),
84 vcvt_f32_f16(wrapper::vload(input_ptr + 4)),
85 vcvt_f32_f16(wrapper::vload(input_ptr + 8)),
86 vcvt_f32_f16(wrapper::vload(input_ptr + 12)) };
87}
88
89#endif // __ARM_FEATURE_FP16_VECTOR_ARITHMETIC
Sang-Hoon Parkfb6aaeb2019-11-27 15:26:44 +000090
91template <typename element_type>
92using vector_type = wrapper::traits::neon_vector_t<element_type, window_step>;
93
94template <typename quantized_type>
95vector_type<quantized_type> vquantize_qasymm8(const float32x4x4_t &qv, const UniformQuantizationInfo &qi);
96
97template <>
98vector_type<uint8_t> vquantize_qasymm8<uint8_t>(const float32x4x4_t &qv, const UniformQuantizationInfo &qi)
99{
100 return vquantize(qv, qi);
101}
102
103template <>
104vector_type<int8_t> vquantize_qasymm8<int8_t>(const float32x4x4_t &qv, const UniformQuantizationInfo &qi)
105{
106 return vquantize_signed(qv, qi);
107}
108
Alex Gilday60954c62018-03-05 16:22:48 +0000109} // namespace
110
Georgios Pinitasef516e82021-04-30 14:46:05 +0100111void CpuQuantizeKernel::configure(const ITensorInfo *src, ITensorInfo *dst)
Michele Di Giorgio4e09b382017-07-05 18:20:02 +0100112{
Manuel Bottini0ded4c42021-03-09 14:15:27 +0000113 ARM_COMPUTE_ERROR_ON_NULLPTR(src, dst);
114 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(src, dst));
Michele Di Giorgio4e09b382017-07-05 18:20:02 +0100115
Georgios Pinitasef516e82021-04-30 14:46:05 +0100116 static const std::map<std::string, QuantizeFunctionExecutorPtr> quant_map =
Michele Di Giorgiod64a46c2019-10-01 12:25:49 +0100117 {
Georgios Pinitasef516e82021-04-30 14:46:05 +0100118 { "op_QASYMM8_QASYMM8", &CpuQuantizeKernel::run_quantize_qasymm8<uint8_t, uint8_t> },
119 { "op_QASYMM8_QASYMM8_SIGNED", &CpuQuantizeKernel::run_quantize_qasymm8<uint8_t, int8_t> },
120 { "op_QASYMM8_QASYMM16", &CpuQuantizeKernel::run_quantize_qasymm16<uint8_t> },
Michele Di Giorgiod64a46c2019-10-01 12:25:49 +0100121
Georgios Pinitasef516e82021-04-30 14:46:05 +0100122 { "op_QASYMM8_SIGNED_QASYMM8", &CpuQuantizeKernel::run_quantize_qasymm8<int8_t, uint8_t> },
123 { "op_QASYMM8_SIGNED_QASYMM8_SIGNED", &CpuQuantizeKernel::run_quantize_qasymm8<int8_t, int8_t> },
124 { "op_QASYMM8_SIGNED_QASYMM16", &CpuQuantizeKernel::run_quantize_qasymm16<int8_t> },
Manuel Bottini4370cff2020-02-07 16:31:59 +0000125
Pablo Marquez Telloa5d61bf2022-03-17 12:52:02 +0000126 { "op_F32_QSYMM8", &CpuQuantizeKernel::run_quantize_qsymm8<float, int8_t> },
127
Georgios Pinitasef516e82021-04-30 14:46:05 +0100128 { "op_F32_QASYMM8", &CpuQuantizeKernel::run_quantize_qasymm8<float, uint8_t> },
129 { "op_F32_QASYMM8_SIGNED", &CpuQuantizeKernel::run_quantize_qasymm8<float, int8_t> },
130 { "op_F32_QASYMM16", &CpuQuantizeKernel::run_quantize_qasymm16<float> },
Manuel Bottini4370cff2020-02-07 16:31:59 +0000131
Michele Di Giorgiod64a46c2019-10-01 12:25:49 +0100132#ifdef __ARM_FEATURE_FP16_VECTOR_ARITHMETIC
Georgios Pinitasef516e82021-04-30 14:46:05 +0100133 { "op_F16_QASYMM8", &CpuQuantizeKernel::run_quantize_qasymm8<float16_t, uint8_t> },
134 { "op_F16_QASYMM8_SIGNED", &CpuQuantizeKernel::run_quantize_qasymm8<float16_t, int8_t> },
135 { "op_F16_QASYMM16", &CpuQuantizeKernel::run_quantize_qasymm16<float16_t> },
Manuel Bottini4370cff2020-02-07 16:31:59 +0000136#endif /* __ARM_FEATURE_FP16_VECTOR_ARITHMETIC*/
137 };
138
139 std::string function_to_call("op_");
Manuel Bottini0ded4c42021-03-09 14:15:27 +0000140 function_to_call += string_from_data_type(src->data_type()) + "_";
141 function_to_call += string_from_data_type(dst->data_type());
Manuel Bottini4370cff2020-02-07 16:31:59 +0000142
143 auto it = quant_map.find(function_to_call);
144
145 if(it == quant_map.end())
146 {
147 ARM_COMPUTE_ERROR("Unsupported combination of input and output data types");
Michele Di Giorgiod64a46c2019-10-01 12:25:49 +0100148 }
Manuel Bottini4370cff2020-02-07 16:31:59 +0000149 _func = it->second;
Michele Di Giorgiod64a46c2019-10-01 12:25:49 +0100150
Alex Gilday60954c62018-03-05 16:22:48 +0000151 // Configure kernel window
Manuel Bottini0ded4c42021-03-09 14:15:27 +0000152 Window win_config = calculate_max_window(*src, Steps());
153 ICpuKernel::configure(win_config);
Alex Gilday60954c62018-03-05 16:22:48 +0000154}
Michele Di Giorgio4e09b382017-07-05 18:20:02 +0100155
Georgios Pinitasef516e82021-04-30 14:46:05 +0100156Status CpuQuantizeKernel::validate(const ITensorInfo *src, const ITensorInfo *dst)
Alex Gilday60954c62018-03-05 16:22:48 +0000157{
Manuel Bottini0ded4c42021-03-09 14:15:27 +0000158 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(src, dst));
Alex Gilday60954c62018-03-05 16:22:48 +0000159 return Status{};
Michele Di Giorgio4e09b382017-07-05 18:20:02 +0100160}
161
Sang-Hoon Parkfb6aaeb2019-11-27 15:26:44 +0000162template <typename TIn, typename TOut>
Pablo Marquez Telloa5d61bf2022-03-17 12:52:02 +0000163void CpuQuantizeKernel::run_quantize_qsymm8(const ITensor *src, ITensor *dst, const Window &window)
164{
165 const auto window_start_x = static_cast<int>(window.x().start());
166 const auto window_end_x = static_cast<int>(window.x().end());
167
168 const UniformQuantizationInfo uqinfo_in = src->info()->quantization_info().uniform();
169 UniformQuantizationInfo uqinfo = dst->info()->quantization_info().uniform();
170 if(is_data_type_quantized_asymmetric(src->info()->data_type()))
171 {
172 uqinfo = compute_requantization_scale_offset(uqinfo_in, uqinfo);
173 }
174 // Collapse window and reset first dimension to handle tail calculations manually
175 Window win_collapsed = window.collapse_if_possible(window, Window::DimZ);
176 win_collapsed.set(Window::DimX, Window::Dimension(0, 1, 1));
177
178 Iterator input(src, win_collapsed);
179 Iterator output(dst, win_collapsed);
180 execute_window_loop(win_collapsed, [&](const Coordinates &)
181 {
182 auto input_ptr = reinterpret_cast<const TIn *>(input.ptr());
183 auto output_ptr = reinterpret_cast<TOut *>(output.ptr());
184 int x = window_start_x;
185 for(; x <= (window_end_x - window_step); x += window_step)
186 {
187 wrapper::vstore(&output_ptr[x], vquantize_qasymm8<TOut>(load_value(&input_ptr[x]), uqinfo));
188 }
189 // Compute left-over elements
190 for(; x < window_end_x; ++x)
191 {
192 output_ptr[x] = quantize_qsymm8(input_ptr[x], dst->info()->quantization_info());
193 }
194 },
195 input, output);
196}
197
198template <typename TIn, typename TOut>
Georgios Pinitasef516e82021-04-30 14:46:05 +0100199void CpuQuantizeKernel::run_quantize_qasymm8(const ITensor *src, ITensor *dst, const Window &window)
John Kesapidesadfb2732019-03-04 16:29:22 +0000200{
Sang-Hoon Parkfb6aaeb2019-11-27 15:26:44 +0000201 const auto window_start_x = static_cast<int>(window.x().start());
202 const auto window_end_x = static_cast<int>(window.x().end());
John Kesapidesadfb2732019-03-04 16:29:22 +0000203
Manuel Bottini0ded4c42021-03-09 14:15:27 +0000204 const UniformQuantizationInfo uqinfo_in = src->info()->quantization_info().uniform();
205 UniformQuantizationInfo uqinfo = dst->info()->quantization_info().uniform();
206 if(is_data_type_quantized_asymmetric(src->info()->data_type()))
Manuel Bottini4370cff2020-02-07 16:31:59 +0000207 {
208 uqinfo = compute_requantization_scale_offset(uqinfo_in, uqinfo);
209 }
John Kesapidesadfb2732019-03-04 16:29:22 +0000210#ifdef __aarch64__
211 constexpr RoundingPolicy rounding_policy = RoundingPolicy::TO_NEAREST_EVEN;
212#else //__aarch64__
213 constexpr RoundingPolicy rounding_policy = RoundingPolicy::TO_ZERO;
214#endif //__aarch64__
215
216 // Collapse window and reset first dimension to handle tail calculations manually
217 Window win_collapsed = window.collapse_if_possible(window, Window::DimZ);
218 win_collapsed.set(Window::DimX, Window::Dimension(0, 1, 1));
219
Manuel Bottini0ded4c42021-03-09 14:15:27 +0000220 Iterator input(src, win_collapsed);
221 Iterator output(dst, win_collapsed);
Michalis Spyroua4f378d2019-04-26 14:54:54 +0100222 execute_window_loop(win_collapsed, [&](const Coordinates &)
John Kesapidesadfb2732019-03-04 16:29:22 +0000223 {
Sang-Hoon Parkfb6aaeb2019-11-27 15:26:44 +0000224 auto input_ptr = reinterpret_cast<const TIn *>(input.ptr());
225 auto output_ptr = reinterpret_cast<TOut *>(output.ptr());
John Kesapidesadfb2732019-03-04 16:29:22 +0000226
227 int x = window_start_x;
228 for(; x <= (window_end_x - window_step); x += window_step)
229 {
Sang-Hoon Parkfb6aaeb2019-11-27 15:26:44 +0000230 wrapper::vstore(&output_ptr[x], vquantize_qasymm8<TOut>(load_value(&input_ptr[x]), uqinfo));
John Kesapidesadfb2732019-03-04 16:29:22 +0000231 }
232 // Compute left-over elements
233 for(; x < window_end_x; ++x)
234 {
Sang-Hoon Parkfb6aaeb2019-11-27 15:26:44 +0000235 output_ptr[x] = Qasymm8QuantizationHelper<TOut>::quantize(input_ptr[x], uqinfo, rounding_policy);
John Kesapidesadfb2732019-03-04 16:29:22 +0000236 }
237 },
238 input, output);
239}
240
Michele Di Giorgiod64a46c2019-10-01 12:25:49 +0100241template <typename T>
Georgios Pinitasef516e82021-04-30 14:46:05 +0100242void CpuQuantizeKernel::run_quantize_qasymm16(const ITensor *src, ITensor *dst, const Window &window)
Michele Di Giorgiod64a46c2019-10-01 12:25:49 +0100243{
Sang-Hoon Parkfb6aaeb2019-11-27 15:26:44 +0000244 const auto window_start_x = static_cast<int>(window.x().start());
245 const auto window_end_x = static_cast<int>(window.x().end());
Michele Di Giorgiod64a46c2019-10-01 12:25:49 +0100246
Manuel Bottini0ded4c42021-03-09 14:15:27 +0000247 const UniformQuantizationInfo uqinfo_in = src->info()->quantization_info().uniform();
248 UniformQuantizationInfo uqinfo = dst->info()->quantization_info().uniform();
249 if(is_data_type_quantized_asymmetric(src->info()->data_type()))
Manuel Bottini4370cff2020-02-07 16:31:59 +0000250 {
251 uqinfo = compute_requantization_scale_offset(uqinfo_in, uqinfo);
252 }
Michele Di Giorgiod64a46c2019-10-01 12:25:49 +0100253#ifdef __aarch64__
254 constexpr RoundingPolicy rounding_policy = RoundingPolicy::TO_NEAREST_EVEN;
255#else //__aarch64__
256 constexpr RoundingPolicy rounding_policy = RoundingPolicy::TO_ZERO;
257#endif //__aarch64__
258
259 // Collapse window and reset first dimension to handle tail calculations manually
260 Window win_collapsed = window.collapse_if_possible(window, Window::DimZ);
261 win_collapsed.set(Window::DimX, Window::Dimension(0, 1, 1));
262
Manuel Bottini0ded4c42021-03-09 14:15:27 +0000263 Iterator input(src, win_collapsed);
264 Iterator output(dst, win_collapsed);
Michele Di Giorgiod64a46c2019-10-01 12:25:49 +0100265 execute_window_loop(win_collapsed, [&](const Coordinates &)
266 {
267 auto input_ptr = reinterpret_cast<const T *>(input.ptr());
268 auto output_ptr = reinterpret_cast<uint16_t *>(output.ptr());
269
270 int x = window_start_x;
271 for(; x <= (window_end_x - window_step); x += window_step)
272 {
273 uint16x8x2_t tmp = vquantize_qasymm16(load_value(&input_ptr[x]), uqinfo);
274 vst1q_u16(&output_ptr[x], tmp.val[0]);
275 vst1q_u16(&output_ptr[x + 8], tmp.val[1]);
276 }
277 // Compute left-over elements
278 for(; x < window_end_x; ++x)
279 {
280 output_ptr[x] = quantize_qasymm16(input_ptr[x], uqinfo, rounding_policy);
281 }
282 },
283 input, output);
284}
285
Georgios Pinitasef516e82021-04-30 14:46:05 +0100286void CpuQuantizeKernel::run_op(ITensorPack &tensors, const Window &window, const ThreadInfo &info)
Michele Di Giorgio4e09b382017-07-05 18:20:02 +0100287{
Moritz Pflanzerc186b572017-09-07 09:48:04 +0100288 ARM_COMPUTE_UNUSED(info);
Michele Di Giorgio4e09b382017-07-05 18:20:02 +0100289 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
Manuel Bottini0ded4c42021-03-09 14:15:27 +0000290 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(ICpuKernel::window(), window);
Michele Di Giorgiod64a46c2019-10-01 12:25:49 +0100291 ARM_COMPUTE_ERROR_ON(_func == nullptr);
Michele Di Giorgio4e09b382017-07-05 18:20:02 +0100292
Manuel Bottini0ded4c42021-03-09 14:15:27 +0000293 const auto src = tensors.get_const_tensor(TensorType::ACL_SRC);
294 auto dst = tensors.get_tensor(TensorType::ACL_DST);
295 (this->*_func)(src, dst, window);
Michele Di Giorgio4e09b382017-07-05 18:20:02 +0100296}
Manuel Bottini0ded4c42021-03-09 14:15:27 +0000297
Georgios Pinitasef516e82021-04-30 14:46:05 +0100298const char *CpuQuantizeKernel::name() const
Manuel Bottini0ded4c42021-03-09 14:15:27 +0000299{
Georgios Pinitasef516e82021-04-30 14:46:05 +0100300 return "CpuQuantizeKernel";
Manuel Bottini0ded4c42021-03-09 14:15:27 +0000301}
302} // namespace kernels
303} // namespace cpu
Pablo Marquez Telloa5d61bf2022-03-17 12:52:02 +0000304} // namespace arm_compute