blob: 31434ce61b0a54e73583220243784d774d36224a [file] [log] [blame]
Gian Marco05288a22017-11-21 10:57:50 +00001/*
Matthew Bentham314d3e22023-06-23 10:53:52 +00002 * Copyright (c) 2020-2023 Arm Limited.
Gian Marco05288a22017-11-21 10:57:50 +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 */
Georgios Pinitas7891a732021-08-20 21:39:25 +010024#include "src/gpu/cl/kernels/ClGemmLowpQuantizeDownInt32ScaleKernel.h"
Gian Marco05288a22017-11-21 10:57:50 +000025
Luca Foschiani689c9682020-02-26 14:30:14 +000026#include "arm_compute/core/CL/CLHelpers.h"
Gian Marco05288a22017-11-21 10:57:50 +000027#include "arm_compute/core/CL/ICLTensor.h"
Gian Marco05288a22017-11-21 10:57:50 +000028#include "arm_compute/core/Helpers.h"
Matthew Bentham314d3e22023-06-23 10:53:52 +000029#include "arm_compute/core/Utils.h"
30#include "arm_compute/core/utils/helpers/AdjustVecSize.h"
Luca Foschiani689c9682020-02-26 14:30:14 +000031#include "arm_compute/core/utils/quantization/AsymmHelpers.h"
Matthew Bentham314d3e22023-06-23 10:53:52 +000032#include "arm_compute/core/utils/StringUtils.h"
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010033#include "arm_compute/core/Validate.h"
Georgios Pinitas4a578b92021-06-25 12:13:49 +010034
Sang-Hoon Park68dd25f2020-10-19 16:00:11 +010035#include "src/core/helpers/AutoConfiguration.h"
36#include "src/core/helpers/WindowHelpers.h"
Georgios Pinitas4a578b92021-06-25 12:13:49 +010037#include "support/Cast.h"
Matthew Bentham758b5ba2020-03-05 23:37:48 +000038#include "support/StringSupport.h"
Gian Marco05288a22017-11-21 10:57:50 +000039
Gian Marco05288a22017-11-21 10:57:50 +000040namespace arm_compute
41{
Georgios Pinitas4a578b92021-06-25 12:13:49 +010042namespace opencl
43{
44namespace kernels
45{
Gian Marco58c57942017-11-28 09:10:03 +000046namespace
47{
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010048Status validate_arguments(const ITensorInfo *src,
49 const ITensorInfo *bias,
50 const ITensorInfo *dst,
51 const GEMMLowpOutputStageInfo *output_stage)
Gian Marco58c57942017-11-28 09:10:03 +000052{
Georgios Pinitas4a578b92021-06-25 12:13:49 +010053 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(src, 1, DataType::S32);
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010054 ARM_COMPUTE_RETURN_ERROR_ON((output_stage->output_data_type != DataType::QASYMM8) &&
55 (output_stage->output_data_type != DataType::QASYMM8_SIGNED));
56 ARM_COMPUTE_RETURN_ERROR_ON(
57 output_stage->gemmlowp_max_bound >
58 std::get<1>(quantization::get_min_max_values_from_quantized_data_type(output_stage->output_data_type)));
59 ARM_COMPUTE_RETURN_ERROR_ON(
60 output_stage->gemmlowp_min_bound <
61 std::get<0>(quantization::get_min_max_values_from_quantized_data_type(output_stage->output_data_type)) ||
62 output_stage->gemmlowp_min_bound > output_stage->gemmlowp_max_bound);
Gian Marco58c57942017-11-28 09:10:03 +000063
64 // Check biases if exist
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010065 if (bias != nullptr)
Gian Marco58c57942017-11-28 09:10:03 +000066 {
Georgios Pinitas4a578b92021-06-25 12:13:49 +010067 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(src, bias);
Gian Marco58c57942017-11-28 09:10:03 +000068 ARM_COMPUTE_RETURN_ERROR_ON(bias->num_dimensions() > 1);
Georgios Pinitas4a578b92021-06-25 12:13:49 +010069 ARM_COMPUTE_RETURN_ERROR_ON(src->dimension(0) != bias->dimension(0));
Gian Marco58c57942017-11-28 09:10:03 +000070 }
Chunosov5124be52017-11-22 20:42:13 +070071
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010072 if (dst->total_size() != 0)
Chunosov5124be52017-11-22 20:42:13 +070073 {
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010074 ARM_COMPUTE_RETURN_ERROR_ON_MSG(dst->data_type() != output_stage->output_data_type,
75 "Mismatching output data type");
Georgios Pinitas4a578b92021-06-25 12:13:49 +010076 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_SHAPES(src, dst);
Chunosov5124be52017-11-22 20:42:13 +070077 }
78
Georgios Pinitas631c41a2017-12-06 11:53:03 +000079 return Status{};
Gian Marco58c57942017-11-28 09:10:03 +000080}
Luca Foschiani689c9682020-02-26 14:30:14 +000081} //namespace
Gian Marco58c57942017-11-28 09:10:03 +000082
Georgios Pinitas4a578b92021-06-25 12:13:49 +010083ClGemmLowpQuantizeDownInt32ScaleKernel::ClGemmLowpQuantizeDownInt32ScaleKernel()
Gian Marco05288a22017-11-21 10:57:50 +000084{
Giorgio Arena4a95bba2021-06-28 11:00:27 +010085 _type = CLKernelType::ELEMENTWISE;
Gian Marco05288a22017-11-21 10:57:50 +000086}
Michele Di Giorgio671d4f02020-10-14 12:26:51 +010087
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010088Status ClGemmLowpQuantizeDownInt32ScaleKernel::validate(const ITensorInfo *src,
89 const ITensorInfo *bias,
90 const ITensorInfo *dst,
91 const GEMMLowpOutputStageInfo *output_stage)
Gian Marco58c57942017-11-28 09:10:03 +000092{
Georgios Pinitas4a578b92021-06-25 12:13:49 +010093 ARM_COMPUTE_ERROR_ON_NULLPTR(src, dst);
94 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(src, bias, dst, output_stage));
Gian Marco58c57942017-11-28 09:10:03 +000095
Georgios Pinitas631c41a2017-12-06 11:53:03 +000096 return Status{};
Gian Marco58c57942017-11-28 09:10:03 +000097}
Gian Marco05288a22017-11-21 10:57:50 +000098
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010099void ClGemmLowpQuantizeDownInt32ScaleKernel::configure(const CLCompileContext &compile_context,
100 const ITensorInfo *src,
101 const ITensorInfo *bias,
102 ITensorInfo *dst,
Michele Di Giorgio671d4f02020-10-14 12:26:51 +0100103 const GEMMLowpOutputStageInfo *output_stage)
Manuel Bottini4c6bd512020-04-08 10:15:51 +0100104{
Gian Marco58c57942017-11-28 09:10:03 +0000105 // Perform validate step
Georgios Pinitas4a578b92021-06-25 12:13:49 +0100106 ARM_COMPUTE_ERROR_ON_NULLPTR(src, dst);
107 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(src, bias, dst, output_stage));
Gian Marco05288a22017-11-21 10:57:50 +0000108
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100109 auto padding_info = get_padding_info({src, bias, dst});
SiCong Li04a07062020-11-17 14:09:01 +0000110
Michele Di Giorgio671d4f02020-10-14 12:26:51 +0100111 // Output auto inizialitation if not yet initialized
Georgios Pinitas4a578b92021-06-25 12:13:49 +0100112 auto_init_if_empty(*dst, src->clone()->set_data_type(output_stage->output_data_type));
Michele Di Giorgio671d4f02020-10-14 12:26:51 +0100113
Georgios Pinitas4a578b92021-06-25 12:13:49 +0100114 const unsigned int num_elems_processed_per_iteration = adjust_vec_size(4, src->dimension(0));
Gian Marco05288a22017-11-21 10:57:50 +0000115
116 // Set the arguments to pass at compile time
Luca Foschiani689c9682020-02-26 14:30:14 +0000117 auto min = output_stage->gemmlowp_min_bound;
118 auto max = output_stage->gemmlowp_max_bound;
Gian Marco05288a22017-11-21 10:57:50 +0000119 CLBuildOptions build_opts;
Michele Di Giorgio671d4f02020-10-14 12:26:51 +0100120 build_opts.add_option("-DVEC_SIZE=" + support::cpp11::to_string(num_elems_processed_per_iteration));
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100121 build_opts.add_option("-DVEC_SIZE_LEFTOVER=" +
122 support::cpp11::to_string(src->dimension(0) % num_elems_processed_per_iteration));
Luca Foschiani689c9682020-02-26 14:30:14 +0000123 build_opts.add_option("-DRESULT_OFFSET=" + support::cpp11::to_string(output_stage->gemmlowp_offset));
124 build_opts.add_option("-DRESULT_MULT_INT=" + support::cpp11::to_string(output_stage->gemmlowp_multiplier));
125 build_opts.add_option("-DRESULT_SHIFT=" + support::cpp11::to_string(output_stage->gemmlowp_shift));
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100126 build_opts.add_option_if((min > std::get<0>(quantization::get_min_max_values_from_quantized_data_type(
127 output_stage->output_data_type))) &&
128 (min != max),
Luca Foschiani689c9682020-02-26 14:30:14 +0000129 "-DMIN_BOUND=" + support::cpp11::to_string(min));
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100130 build_opts.add_option_if((max < std::get<1>(quantization::get_min_max_values_from_quantized_data_type(
131 output_stage->output_data_type))) &&
132 (min != max),
Luca Foschiani689c9682020-02-26 14:30:14 +0000133 "-DMAX_BOUND=" + support::cpp11::to_string(max));
Georgios Pinitas4a578b92021-06-25 12:13:49 +0100134 build_opts.add_option("-DOUTPUT_DATA_TYPE=" + get_cl_type_from_data_type(dst->data_type()));
Gian Marco05288a22017-11-21 10:57:50 +0000135 build_opts.add_option_if(bias != nullptr, "-DADD_BIAS");
136
Gian Marco Iodiced11de982022-09-05 15:35:35 +0100137 const std::string kernel_name = "gemmlowp_output_stage_quantize_down";
138
139 // A macro guard to compile ONLY the kernel of interest
140 build_opts.add_option("-D" + upper_string(kernel_name));
141
Gian Marco05288a22017-11-21 10:57:50 +0000142 // Create kernel
Gian Marco Iodiced11de982022-09-05 15:35:35 +0100143 _kernel = create_kernel(compile_context, kernel_name, build_opts.options());
Gian Marco05288a22017-11-21 10:57:50 +0000144
Gian Marco05288a22017-11-21 10:57:50 +0000145 // Configure kernel window
Georgios Pinitas4a578b92021-06-25 12:13:49 +0100146 Window win = calculate_max_window(*src, Steps(num_elems_processed_per_iteration));
Michele Di Giorgio671d4f02020-10-14 12:26:51 +0100147 ICLKernel::configure_internal(win);
SiCong Li04a07062020-11-17 14:09:01 +0000148
149 ARM_COMPUTE_ERROR_ON(has_padding_changed(padding_info));
Gian Marco05288a22017-11-21 10:57:50 +0000150}
151
Georgios Pinitas4a578b92021-06-25 12:13:49 +0100152void ClGemmLowpQuantizeDownInt32ScaleKernel::run_op(ITensorPack &tensors, const Window &window, cl::CommandQueue &queue)
Gian Marco05288a22017-11-21 10:57:50 +0000153{
154 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
155 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(ICLKernel::window(), window);
156
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100157 const auto src =
158 utils::cast::polymorphic_downcast<const ICLTensor *>(tensors.get_const_tensor(TensorType::ACL_SRC));
159 const auto bias =
160 utils::cast::polymorphic_downcast<const ICLTensor *>(tensors.get_const_tensor(TensorType::ACL_BIAS));
161 auto dst = utils::cast::polymorphic_downcast<ICLTensor *>(tensors.get_tensor(TensorType::ACL_DST));
Georgios Pinitas4a578b92021-06-25 12:13:49 +0100162
Gian Marco05288a22017-11-21 10:57:50 +0000163 Window collapsed = window.collapse_if_possible(ICLKernel::window(), Window::DimZ);
164 Window slice = collapsed.first_slice_window_3D();
165
166 unsigned int idx1 = num_arguments_per_3D_tensor();
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100167 if (bias != nullptr)
Gian Marco05288a22017-11-21 10:57:50 +0000168 {
169 Window biases_slice(slice);
170 biases_slice.set(Window::DimY, Window::Dimension(0, 1, 1));
171 biases_slice.set(Window::DimZ, Window::Dimension(0, 1, 1));
Georgios Pinitas4a578b92021-06-25 12:13:49 +0100172 add_1D_tensor_argument(idx1, bias, biases_slice);
Gian Marco05288a22017-11-21 10:57:50 +0000173 }
174
175 do
176 {
177 unsigned int idx = 0;
Georgios Pinitas4a578b92021-06-25 12:13:49 +0100178 add_3D_tensor_argument(idx, src, slice);
179 add_3D_tensor_argument(idx1, dst, slice);
Georgios Pinitas275f99c2019-08-23 12:44:11 +0100180 enqueue(queue, *this, slice, lws_hint());
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100181 } while (collapsed.slide_window_slice_3D(slice));
Chunosov5124be52017-11-22 20:42:13 +0700182}
Georgios Pinitas4a578b92021-06-25 12:13:49 +0100183} // namespace kernels
184} // namespace opencl
Matthew Bentham314d3e22023-06-23 10:53:52 +0000185} // namespace arm_compute