blob: 5d54db214a1c88643b4a4e9ee8cadb9a047c82a2 [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"
Gian Marco05288a22017-11-21 10:57:50 +000029#include "arm_compute/core/Validate.h"
Matthew Bentham314d3e22023-06-23 10:53:52 +000030#include "arm_compute/core/Utils.h"
31#include "arm_compute/core/utils/helpers/AdjustVecSize.h"
Luca Foschiani689c9682020-02-26 14:30:14 +000032#include "arm_compute/core/utils/quantization/AsymmHelpers.h"
Matthew Bentham314d3e22023-06-23 10:53:52 +000033#include "arm_compute/core/utils/StringUtils.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
38#include "support/Cast.h"
Matthew Bentham758b5ba2020-03-05 23:37:48 +000039#include "support/StringSupport.h"
Gian Marco05288a22017-11-21 10:57:50 +000040
Gian Marco05288a22017-11-21 10:57:50 +000041namespace arm_compute
42{
Georgios Pinitas4a578b92021-06-25 12:13:49 +010043namespace opencl
44{
45namespace kernels
46{
Gian Marco58c57942017-11-28 09:10:03 +000047namespace
48{
Georgios Pinitas4a578b92021-06-25 12:13:49 +010049Status validate_arguments(const ITensorInfo *src, const ITensorInfo *bias, const ITensorInfo *dst, const GEMMLowpOutputStageInfo *output_stage)
Gian Marco58c57942017-11-28 09:10:03 +000050{
Georgios Pinitas4a578b92021-06-25 12:13:49 +010051 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(src, 1, DataType::S32);
Luca Foschiani689c9682020-02-26 14:30:14 +000052 ARM_COMPUTE_RETURN_ERROR_ON((output_stage->output_data_type != DataType::QASYMM8) && (output_stage->output_data_type != DataType::QASYMM8_SIGNED));
53 ARM_COMPUTE_RETURN_ERROR_ON(output_stage->gemmlowp_max_bound > std::get<1>(quantization::get_min_max_values_from_quantized_data_type(output_stage->output_data_type)));
54 ARM_COMPUTE_RETURN_ERROR_ON(output_stage->gemmlowp_min_bound < std::get<0>(quantization::get_min_max_values_from_quantized_data_type(output_stage->output_data_type))
55 || output_stage->gemmlowp_min_bound > output_stage->gemmlowp_max_bound);
Gian Marco58c57942017-11-28 09:10:03 +000056
57 // Check biases if exist
58 if(bias != nullptr)
59 {
Georgios Pinitas4a578b92021-06-25 12:13:49 +010060 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(src, bias);
Gian Marco58c57942017-11-28 09:10:03 +000061 ARM_COMPUTE_RETURN_ERROR_ON(bias->num_dimensions() > 1);
Georgios Pinitas4a578b92021-06-25 12:13:49 +010062 ARM_COMPUTE_RETURN_ERROR_ON(src->dimension(0) != bias->dimension(0));
Gian Marco58c57942017-11-28 09:10:03 +000063 }
Chunosov5124be52017-11-22 20:42:13 +070064
Georgios Pinitas4a578b92021-06-25 12:13:49 +010065 if(dst->total_size() != 0)
Chunosov5124be52017-11-22 20:42:13 +070066 {
Georgios Pinitas4a578b92021-06-25 12:13:49 +010067 ARM_COMPUTE_RETURN_ERROR_ON_MSG(dst->data_type() != output_stage->output_data_type, "Mismatching output data type");
68 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_SHAPES(src, dst);
Chunosov5124be52017-11-22 20:42:13 +070069 }
70
Georgios Pinitas631c41a2017-12-06 11:53:03 +000071 return Status{};
Gian Marco58c57942017-11-28 09:10:03 +000072}
Luca Foschiani689c9682020-02-26 14:30:14 +000073} //namespace
Gian Marco58c57942017-11-28 09:10:03 +000074
Georgios Pinitas4a578b92021-06-25 12:13:49 +010075ClGemmLowpQuantizeDownInt32ScaleKernel::ClGemmLowpQuantizeDownInt32ScaleKernel()
Gian Marco05288a22017-11-21 10:57:50 +000076{
Giorgio Arena4a95bba2021-06-28 11:00:27 +010077 _type = CLKernelType::ELEMENTWISE;
Gian Marco05288a22017-11-21 10:57:50 +000078}
Michele Di Giorgio671d4f02020-10-14 12:26:51 +010079
Georgios Pinitas4a578b92021-06-25 12:13:49 +010080Status ClGemmLowpQuantizeDownInt32ScaleKernel::validate(const ITensorInfo *src, const ITensorInfo *bias, const ITensorInfo *dst, const GEMMLowpOutputStageInfo *output_stage)
Gian Marco58c57942017-11-28 09:10:03 +000081{
Georgios Pinitas4a578b92021-06-25 12:13:49 +010082 ARM_COMPUTE_ERROR_ON_NULLPTR(src, dst);
83 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(src, bias, dst, output_stage));
Gian Marco58c57942017-11-28 09:10:03 +000084
Georgios Pinitas631c41a2017-12-06 11:53:03 +000085 return Status{};
Gian Marco58c57942017-11-28 09:10:03 +000086}
Gian Marco05288a22017-11-21 10:57:50 +000087
Georgios Pinitas4a578b92021-06-25 12:13:49 +010088void ClGemmLowpQuantizeDownInt32ScaleKernel::configure(const CLCompileContext &compile_context, const ITensorInfo *src, const ITensorInfo *bias, ITensorInfo *dst,
Michele Di Giorgio671d4f02020-10-14 12:26:51 +010089 const GEMMLowpOutputStageInfo *output_stage)
Manuel Bottini4c6bd512020-04-08 10:15:51 +010090{
Gian Marco58c57942017-11-28 09:10:03 +000091 // Perform validate step
Georgios Pinitas4a578b92021-06-25 12:13:49 +010092 ARM_COMPUTE_ERROR_ON_NULLPTR(src, dst);
93 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(src, bias, dst, output_stage));
Gian Marco05288a22017-11-21 10:57:50 +000094
Georgios Pinitas4a578b92021-06-25 12:13:49 +010095 auto padding_info = get_padding_info({ src, bias, dst });
SiCong Li04a07062020-11-17 14:09:01 +000096
Michele Di Giorgio671d4f02020-10-14 12:26:51 +010097 // Output auto inizialitation if not yet initialized
Georgios Pinitas4a578b92021-06-25 12:13:49 +010098 auto_init_if_empty(*dst, src->clone()->set_data_type(output_stage->output_data_type));
Michele Di Giorgio671d4f02020-10-14 12:26:51 +010099
Georgios Pinitas4a578b92021-06-25 12:13:49 +0100100 const unsigned int num_elems_processed_per_iteration = adjust_vec_size(4, src->dimension(0));
Gian Marco05288a22017-11-21 10:57:50 +0000101
102 // Set the arguments to pass at compile time
Luca Foschiani689c9682020-02-26 14:30:14 +0000103 auto min = output_stage->gemmlowp_min_bound;
104 auto max = output_stage->gemmlowp_max_bound;
Gian Marco05288a22017-11-21 10:57:50 +0000105 CLBuildOptions build_opts;
Michele Di Giorgio671d4f02020-10-14 12:26:51 +0100106 build_opts.add_option("-DVEC_SIZE=" + support::cpp11::to_string(num_elems_processed_per_iteration));
Georgios Pinitas4a578b92021-06-25 12:13:49 +0100107 build_opts.add_option("-DVEC_SIZE_LEFTOVER=" + support::cpp11::to_string(src->dimension(0) % num_elems_processed_per_iteration));
Luca Foschiani689c9682020-02-26 14:30:14 +0000108 build_opts.add_option("-DRESULT_OFFSET=" + support::cpp11::to_string(output_stage->gemmlowp_offset));
109 build_opts.add_option("-DRESULT_MULT_INT=" + support::cpp11::to_string(output_stage->gemmlowp_multiplier));
110 build_opts.add_option("-DRESULT_SHIFT=" + support::cpp11::to_string(output_stage->gemmlowp_shift));
111 build_opts.add_option_if((min > std::get<0>(quantization::get_min_max_values_from_quantized_data_type(output_stage->output_data_type))) && (min != max),
112 "-DMIN_BOUND=" + support::cpp11::to_string(min));
113 build_opts.add_option_if((max < std::get<1>(quantization::get_min_max_values_from_quantized_data_type(output_stage->output_data_type))) && (min != max),
114 "-DMAX_BOUND=" + support::cpp11::to_string(max));
Georgios Pinitas4a578b92021-06-25 12:13:49 +0100115 build_opts.add_option("-DOUTPUT_DATA_TYPE=" + get_cl_type_from_data_type(dst->data_type()));
Gian Marco05288a22017-11-21 10:57:50 +0000116 build_opts.add_option_if(bias != nullptr, "-DADD_BIAS");
117
Gian Marco Iodiced11de982022-09-05 15:35:35 +0100118 const std::string kernel_name = "gemmlowp_output_stage_quantize_down";
119
120 // A macro guard to compile ONLY the kernel of interest
121 build_opts.add_option("-D" + upper_string(kernel_name));
122
Gian Marco05288a22017-11-21 10:57:50 +0000123 // Create kernel
Gian Marco Iodiced11de982022-09-05 15:35:35 +0100124 _kernel = create_kernel(compile_context, kernel_name, build_opts.options());
Gian Marco05288a22017-11-21 10:57:50 +0000125
Gian Marco05288a22017-11-21 10:57:50 +0000126 // Configure kernel window
Georgios Pinitas4a578b92021-06-25 12:13:49 +0100127 Window win = calculate_max_window(*src, Steps(num_elems_processed_per_iteration));
Michele Di Giorgio671d4f02020-10-14 12:26:51 +0100128 ICLKernel::configure_internal(win);
SiCong Li04a07062020-11-17 14:09:01 +0000129
130 ARM_COMPUTE_ERROR_ON(has_padding_changed(padding_info));
Gian Marco05288a22017-11-21 10:57:50 +0000131}
132
Georgios Pinitas4a578b92021-06-25 12:13:49 +0100133void ClGemmLowpQuantizeDownInt32ScaleKernel::run_op(ITensorPack &tensors, const Window &window, cl::CommandQueue &queue)
Gian Marco05288a22017-11-21 10:57:50 +0000134{
135 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
136 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(ICLKernel::window(), window);
137
Georgios Pinitas4a578b92021-06-25 12:13:49 +0100138 const auto src = utils::cast::polymorphic_downcast<const ICLTensor *>(tensors.get_const_tensor(TensorType::ACL_SRC));
139 const auto bias = utils::cast::polymorphic_downcast<const ICLTensor *>(tensors.get_const_tensor(TensorType::ACL_BIAS));
140 auto dst = utils::cast::polymorphic_downcast<ICLTensor *>(tensors.get_tensor(TensorType::ACL_DST));
141
Gian Marco05288a22017-11-21 10:57:50 +0000142 Window collapsed = window.collapse_if_possible(ICLKernel::window(), Window::DimZ);
143 Window slice = collapsed.first_slice_window_3D();
144
145 unsigned int idx1 = num_arguments_per_3D_tensor();
Georgios Pinitas4a578b92021-06-25 12:13:49 +0100146 if(bias != nullptr)
Gian Marco05288a22017-11-21 10:57:50 +0000147 {
148 Window biases_slice(slice);
149 biases_slice.set(Window::DimY, Window::Dimension(0, 1, 1));
150 biases_slice.set(Window::DimZ, Window::Dimension(0, 1, 1));
Georgios Pinitas4a578b92021-06-25 12:13:49 +0100151 add_1D_tensor_argument(idx1, bias, biases_slice);
Gian Marco05288a22017-11-21 10:57:50 +0000152 }
153
154 do
155 {
156 unsigned int idx = 0;
Georgios Pinitas4a578b92021-06-25 12:13:49 +0100157 add_3D_tensor_argument(idx, src, slice);
158 add_3D_tensor_argument(idx1, dst, slice);
Georgios Pinitas275f99c2019-08-23 12:44:11 +0100159 enqueue(queue, *this, slice, lws_hint());
Gian Marco05288a22017-11-21 10:57:50 +0000160 }
161 while(collapsed.slide_window_slice_3D(slice));
Chunosov5124be52017-11-22 20:42:13 +0700162}
Georgios Pinitas4a578b92021-06-25 12:13:49 +0100163} // namespace kernels
164} // namespace opencl
Matthew Bentham314d3e22023-06-23 10:53:52 +0000165} // namespace arm_compute