blob: 5469ea9602314663552ce9fac7205c535073f0e7 [file] [log] [blame]
Gian Marco05288a22017-11-21 10:57:50 +00001/*
Michele Di Giorgio142e4ca2021-04-14 16:50:03 +01002 * Copyright (c) 2020-2021 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"
Luca Foschiani689c9682020-02-26 14:30:14 +000030#include "arm_compute/core/utils/quantization/AsymmHelpers.h"
Georgios Pinitas4a578b92021-06-25 12:13:49 +010031
Sang-Hoon Park68dd25f2020-10-19 16:00:11 +010032#include "src/core/helpers/AutoConfiguration.h"
33#include "src/core/helpers/WindowHelpers.h"
Georgios Pinitas4a578b92021-06-25 12:13:49 +010034
35#include "support/Cast.h"
Matthew Bentham758b5ba2020-03-05 23:37:48 +000036#include "support/StringSupport.h"
Gian Marco05288a22017-11-21 10:57:50 +000037
Gian Marco05288a22017-11-21 10:57:50 +000038namespace arm_compute
39{
Georgios Pinitas4a578b92021-06-25 12:13:49 +010040namespace opencl
41{
42namespace kernels
43{
Gian Marco58c57942017-11-28 09:10:03 +000044namespace
45{
Georgios Pinitas4a578b92021-06-25 12:13:49 +010046Status validate_arguments(const ITensorInfo *src, const ITensorInfo *bias, const ITensorInfo *dst, const GEMMLowpOutputStageInfo *output_stage)
Gian Marco58c57942017-11-28 09:10:03 +000047{
Georgios Pinitas4a578b92021-06-25 12:13:49 +010048 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(src, 1, DataType::S32);
Luca Foschiani689c9682020-02-26 14:30:14 +000049 ARM_COMPUTE_RETURN_ERROR_ON((output_stage->output_data_type != DataType::QASYMM8) && (output_stage->output_data_type != DataType::QASYMM8_SIGNED));
50 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)));
51 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))
52 || output_stage->gemmlowp_min_bound > output_stage->gemmlowp_max_bound);
Gian Marco58c57942017-11-28 09:10:03 +000053
54 // Check biases if exist
55 if(bias != nullptr)
56 {
Georgios Pinitas4a578b92021-06-25 12:13:49 +010057 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(src, bias);
Gian Marco58c57942017-11-28 09:10:03 +000058 ARM_COMPUTE_RETURN_ERROR_ON(bias->num_dimensions() > 1);
Georgios Pinitas4a578b92021-06-25 12:13:49 +010059 ARM_COMPUTE_RETURN_ERROR_ON(src->dimension(0) != bias->dimension(0));
Gian Marco58c57942017-11-28 09:10:03 +000060 }
Chunosov5124be52017-11-22 20:42:13 +070061
Georgios Pinitas4a578b92021-06-25 12:13:49 +010062 if(dst->total_size() != 0)
Chunosov5124be52017-11-22 20:42:13 +070063 {
Georgios Pinitas4a578b92021-06-25 12:13:49 +010064 ARM_COMPUTE_RETURN_ERROR_ON_MSG(dst->data_type() != output_stage->output_data_type, "Mismatching output data type");
65 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_SHAPES(src, dst);
Chunosov5124be52017-11-22 20:42:13 +070066 }
67
Georgios Pinitas631c41a2017-12-06 11:53:03 +000068 return Status{};
Gian Marco58c57942017-11-28 09:10:03 +000069}
Luca Foschiani689c9682020-02-26 14:30:14 +000070} //namespace
Gian Marco58c57942017-11-28 09:10:03 +000071
Georgios Pinitas4a578b92021-06-25 12:13:49 +010072ClGemmLowpQuantizeDownInt32ScaleKernel::ClGemmLowpQuantizeDownInt32ScaleKernel()
Gian Marco05288a22017-11-21 10:57:50 +000073{
Giorgio Arena4a95bba2021-06-28 11:00:27 +010074 _type = CLKernelType::ELEMENTWISE;
Gian Marco05288a22017-11-21 10:57:50 +000075}
Michele Di Giorgio671d4f02020-10-14 12:26:51 +010076
Georgios Pinitas4a578b92021-06-25 12:13:49 +010077Status ClGemmLowpQuantizeDownInt32ScaleKernel::validate(const ITensorInfo *src, const ITensorInfo *bias, const ITensorInfo *dst, const GEMMLowpOutputStageInfo *output_stage)
Gian Marco58c57942017-11-28 09:10:03 +000078{
Georgios Pinitas4a578b92021-06-25 12:13:49 +010079 ARM_COMPUTE_ERROR_ON_NULLPTR(src, dst);
80 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(src, bias, dst, output_stage));
Gian Marco58c57942017-11-28 09:10:03 +000081
Georgios Pinitas631c41a2017-12-06 11:53:03 +000082 return Status{};
Gian Marco58c57942017-11-28 09:10:03 +000083}
Gian Marco05288a22017-11-21 10:57:50 +000084
Georgios Pinitas4a578b92021-06-25 12:13:49 +010085void ClGemmLowpQuantizeDownInt32ScaleKernel::configure(const CLCompileContext &compile_context, const ITensorInfo *src, const ITensorInfo *bias, ITensorInfo *dst,
Michele Di Giorgio671d4f02020-10-14 12:26:51 +010086 const GEMMLowpOutputStageInfo *output_stage)
Manuel Bottini4c6bd512020-04-08 10:15:51 +010087{
Gian Marco58c57942017-11-28 09:10:03 +000088 // Perform validate step
Georgios Pinitas4a578b92021-06-25 12:13:49 +010089 ARM_COMPUTE_ERROR_ON_NULLPTR(src, dst);
90 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(src, bias, dst, output_stage));
Gian Marco05288a22017-11-21 10:57:50 +000091
Georgios Pinitas4a578b92021-06-25 12:13:49 +010092 auto padding_info = get_padding_info({ src, bias, dst });
SiCong Li04a07062020-11-17 14:09:01 +000093
Michele Di Giorgio671d4f02020-10-14 12:26:51 +010094 // Output auto inizialitation if not yet initialized
Georgios Pinitas4a578b92021-06-25 12:13:49 +010095 auto_init_if_empty(*dst, src->clone()->set_data_type(output_stage->output_data_type));
Michele Di Giorgio671d4f02020-10-14 12:26:51 +010096
Georgios Pinitas4a578b92021-06-25 12:13:49 +010097 const unsigned int num_elems_processed_per_iteration = adjust_vec_size(4, src->dimension(0));
Gian Marco05288a22017-11-21 10:57:50 +000098
99 // Set the arguments to pass at compile time
Luca Foschiani689c9682020-02-26 14:30:14 +0000100 auto min = output_stage->gemmlowp_min_bound;
101 auto max = output_stage->gemmlowp_max_bound;
Gian Marco05288a22017-11-21 10:57:50 +0000102 CLBuildOptions build_opts;
Michele Di Giorgio671d4f02020-10-14 12:26:51 +0100103 build_opts.add_option("-DVEC_SIZE=" + support::cpp11::to_string(num_elems_processed_per_iteration));
Georgios Pinitas4a578b92021-06-25 12:13:49 +0100104 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 +0000105 build_opts.add_option("-DRESULT_OFFSET=" + support::cpp11::to_string(output_stage->gemmlowp_offset));
106 build_opts.add_option("-DRESULT_MULT_INT=" + support::cpp11::to_string(output_stage->gemmlowp_multiplier));
107 build_opts.add_option("-DRESULT_SHIFT=" + support::cpp11::to_string(output_stage->gemmlowp_shift));
108 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),
109 "-DMIN_BOUND=" + support::cpp11::to_string(min));
110 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),
111 "-DMAX_BOUND=" + support::cpp11::to_string(max));
Georgios Pinitas4a578b92021-06-25 12:13:49 +0100112 build_opts.add_option("-DOUTPUT_DATA_TYPE=" + get_cl_type_from_data_type(dst->data_type()));
Gian Marco05288a22017-11-21 10:57:50 +0000113 build_opts.add_option_if(bias != nullptr, "-DADD_BIAS");
114
115 // Create kernel
Manuel Bottini4c6bd512020-04-08 10:15:51 +0100116 _kernel = create_kernel(compile_context, "gemmlowp_output_stage_quantize_down", build_opts.options());
Gian Marco05288a22017-11-21 10:57:50 +0000117
Gian Marco05288a22017-11-21 10:57:50 +0000118 // Configure kernel window
Georgios Pinitas4a578b92021-06-25 12:13:49 +0100119 Window win = calculate_max_window(*src, Steps(num_elems_processed_per_iteration));
Michele Di Giorgio671d4f02020-10-14 12:26:51 +0100120 ICLKernel::configure_internal(win);
SiCong Li04a07062020-11-17 14:09:01 +0000121
122 ARM_COMPUTE_ERROR_ON(has_padding_changed(padding_info));
Gian Marco05288a22017-11-21 10:57:50 +0000123}
124
Georgios Pinitas4a578b92021-06-25 12:13:49 +0100125void ClGemmLowpQuantizeDownInt32ScaleKernel::run_op(ITensorPack &tensors, const Window &window, cl::CommandQueue &queue)
Gian Marco05288a22017-11-21 10:57:50 +0000126{
127 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
128 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(ICLKernel::window(), window);
129
Georgios Pinitas4a578b92021-06-25 12:13:49 +0100130 const auto src = utils::cast::polymorphic_downcast<const ICLTensor *>(tensors.get_const_tensor(TensorType::ACL_SRC));
131 const auto bias = utils::cast::polymorphic_downcast<const ICLTensor *>(tensors.get_const_tensor(TensorType::ACL_BIAS));
132 auto dst = utils::cast::polymorphic_downcast<ICLTensor *>(tensors.get_tensor(TensorType::ACL_DST));
133
Gian Marco05288a22017-11-21 10:57:50 +0000134 Window collapsed = window.collapse_if_possible(ICLKernel::window(), Window::DimZ);
135 Window slice = collapsed.first_slice_window_3D();
136
137 unsigned int idx1 = num_arguments_per_3D_tensor();
Georgios Pinitas4a578b92021-06-25 12:13:49 +0100138 if(bias != nullptr)
Gian Marco05288a22017-11-21 10:57:50 +0000139 {
140 Window biases_slice(slice);
141 biases_slice.set(Window::DimY, Window::Dimension(0, 1, 1));
142 biases_slice.set(Window::DimZ, Window::Dimension(0, 1, 1));
Georgios Pinitas4a578b92021-06-25 12:13:49 +0100143 add_1D_tensor_argument(idx1, bias, biases_slice);
Gian Marco05288a22017-11-21 10:57:50 +0000144 }
145
146 do
147 {
148 unsigned int idx = 0;
Georgios Pinitas4a578b92021-06-25 12:13:49 +0100149 add_3D_tensor_argument(idx, src, slice);
150 add_3D_tensor_argument(idx1, dst, slice);
Georgios Pinitas275f99c2019-08-23 12:44:11 +0100151 enqueue(queue, *this, slice, lws_hint());
Gian Marco05288a22017-11-21 10:57:50 +0000152 }
153 while(collapsed.slide_window_slice_3D(slice));
Chunosov5124be52017-11-22 20:42:13 +0700154}
Georgios Pinitas4a578b92021-06-25 12:13:49 +0100155} // namespace kernels
156} // namespace opencl
157} // namespace arm_compute