blob: 7af4d167809d4634ba6989adf8b240cc22f22f97 [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 */
Sang-Hoon Parkbef7fa22020-10-21 15:58:54 +010024#include "src/core/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"
Sang-Hoon Park68dd25f2020-10-19 16:00:11 +010031#include "src/core/helpers/AutoConfiguration.h"
32#include "src/core/helpers/WindowHelpers.h"
Matthew Bentham758b5ba2020-03-05 23:37:48 +000033#include "support/StringSupport.h"
Gian Marco05288a22017-11-21 10:57:50 +000034
Gian Marco05288a22017-11-21 10:57:50 +000035namespace arm_compute
36{
Gian Marco58c57942017-11-28 09:10:03 +000037namespace
38{
Luca Foschiani689c9682020-02-26 14:30:14 +000039Status validate_arguments(const ITensorInfo *input, const ITensorInfo *bias, const ITensorInfo *output, const GEMMLowpOutputStageInfo *output_stage)
Gian Marco58c57942017-11-28 09:10:03 +000040{
41 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input, 1, DataType::S32);
Luca Foschiani689c9682020-02-26 14:30:14 +000042 ARM_COMPUTE_RETURN_ERROR_ON((output_stage->output_data_type != DataType::QASYMM8) && (output_stage->output_data_type != DataType::QASYMM8_SIGNED));
43 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)));
44 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))
45 || output_stage->gemmlowp_min_bound > output_stage->gemmlowp_max_bound);
Gian Marco58c57942017-11-28 09:10:03 +000046
47 // Check biases if exist
48 if(bias != nullptr)
49 {
50 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input, bias);
51 ARM_COMPUTE_RETURN_ERROR_ON(bias->num_dimensions() > 1);
52 ARM_COMPUTE_RETURN_ERROR_ON(input->dimension(0) != bias->dimension(0));
53 }
Chunosov5124be52017-11-22 20:42:13 +070054
55 if(output->total_size() != 0)
56 {
Luca Foschiani689c9682020-02-26 14:30:14 +000057 ARM_COMPUTE_RETURN_ERROR_ON_MSG(output->data_type() != output_stage->output_data_type, "Mismatching output data type");
Chunosov5124be52017-11-22 20:42:13 +070058 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_SHAPES(input, output);
59 }
60
Georgios Pinitas631c41a2017-12-06 11:53:03 +000061 return Status{};
Gian Marco58c57942017-11-28 09:10:03 +000062}
Luca Foschiani689c9682020-02-26 14:30:14 +000063} //namespace
Gian Marco58c57942017-11-28 09:10:03 +000064
Luca Foschiani689c9682020-02-26 14:30:14 +000065CLGEMMLowpQuantizeDownInt32ScaleKernel::CLGEMMLowpQuantizeDownInt32ScaleKernel()
Michele Di Giorgio671d4f02020-10-14 12:26:51 +010066 : _input(nullptr), _bias(nullptr), _output(nullptr)
Gian Marco05288a22017-11-21 10:57:50 +000067{
68}
Michele Di Giorgio671d4f02020-10-14 12:26:51 +010069
Luca Foschiani689c9682020-02-26 14:30:14 +000070Status CLGEMMLowpQuantizeDownInt32ScaleKernel::validate(const ITensorInfo *input, const ITensorInfo *bias, const ITensorInfo *output, const GEMMLowpOutputStageInfo *output_stage)
Gian Marco58c57942017-11-28 09:10:03 +000071{
Chunosov5124be52017-11-22 20:42:13 +070072 ARM_COMPUTE_ERROR_ON_NULLPTR(input, output);
Luca Foschiani689c9682020-02-26 14:30:14 +000073 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(input, bias, output, output_stage));
Gian Marco58c57942017-11-28 09:10:03 +000074
Georgios Pinitas631c41a2017-12-06 11:53:03 +000075 return Status{};
Gian Marco58c57942017-11-28 09:10:03 +000076}
Gian Marco05288a22017-11-21 10:57:50 +000077
Luca Foschiani689c9682020-02-26 14:30:14 +000078void CLGEMMLowpQuantizeDownInt32ScaleKernel::configure(const ICLTensor *input, const ICLTensor *bias, ICLTensor *output, const GEMMLowpOutputStageInfo *output_stage)
Gian Marco05288a22017-11-21 10:57:50 +000079{
Manuel Bottini4c6bd512020-04-08 10:15:51 +010080 configure(CLKernelLibrary::get().get_compile_context(), input, bias, output, output_stage);
81}
82
Michele Di Giorgio671d4f02020-10-14 12:26:51 +010083void CLGEMMLowpQuantizeDownInt32ScaleKernel::configure(const CLCompileContext &compile_context, const ICLTensor *input, const ICLTensor *bias, ICLTensor *output,
84 const GEMMLowpOutputStageInfo *output_stage)
Manuel Bottini4c6bd512020-04-08 10:15:51 +010085{
Gian Marco58c57942017-11-28 09:10:03 +000086 // Perform validate step
87 ARM_COMPUTE_ERROR_ON_NULLPTR(input, output);
Gian Marco05288a22017-11-21 10:57:50 +000088
Gian Marco58c57942017-11-28 09:10:03 +000089 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(input->info(),
90 (bias != nullptr) ? bias->info() : nullptr,
91 output->info(),
Luca Foschiani689c9682020-02-26 14:30:14 +000092 output_stage));
Georgios Pinitas45bcc3a2017-11-29 11:06:49 +000093
SiCong Li04a07062020-11-17 14:09:01 +000094 auto padding_info = get_padding_info({ input, bias, output });
95
Michele Di Giorgio671d4f02020-10-14 12:26:51 +010096 // Output auto inizialitation if not yet initialized
97 auto_init_if_empty(*output->info(), input->info()->clone()->set_data_type(output_stage->output_data_type));
98
99 _input = input;
100 _bias = bias;
101 _output = output;
102
103 const unsigned int num_elems_processed_per_iteration = adjust_vec_size(4, input->info()->dimension(0));
Gian Marco05288a22017-11-21 10:57:50 +0000104
105 // Set the arguments to pass at compile time
Luca Foschiani689c9682020-02-26 14:30:14 +0000106 auto min = output_stage->gemmlowp_min_bound;
107 auto max = output_stage->gemmlowp_max_bound;
Gian Marco05288a22017-11-21 10:57:50 +0000108 CLBuildOptions build_opts;
Michele Di Giorgio671d4f02020-10-14 12:26:51 +0100109 build_opts.add_option("-DVEC_SIZE=" + support::cpp11::to_string(num_elems_processed_per_iteration));
110 build_opts.add_option("-DVEC_SIZE_LEFTOVER=" + support::cpp11::to_string(input->info()->dimension(0) % num_elems_processed_per_iteration));
Luca Foschiani689c9682020-02-26 14:30:14 +0000111 build_opts.add_option("-DRESULT_OFFSET=" + support::cpp11::to_string(output_stage->gemmlowp_offset));
112 build_opts.add_option("-DRESULT_MULT_INT=" + support::cpp11::to_string(output_stage->gemmlowp_multiplier));
113 build_opts.add_option("-DRESULT_SHIFT=" + support::cpp11::to_string(output_stage->gemmlowp_shift));
114 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),
115 "-DMIN_BOUND=" + support::cpp11::to_string(min));
116 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),
117 "-DMAX_BOUND=" + support::cpp11::to_string(max));
118 build_opts.add_option("-DOUTPUT_DATA_TYPE=" + get_cl_type_from_data_type(output->info()->data_type()));
Gian Marco05288a22017-11-21 10:57:50 +0000119 build_opts.add_option_if(bias != nullptr, "-DADD_BIAS");
120
121 // Create kernel
Manuel Bottini4c6bd512020-04-08 10:15:51 +0100122 _kernel = create_kernel(compile_context, "gemmlowp_output_stage_quantize_down", build_opts.options());
Gian Marco05288a22017-11-21 10:57:50 +0000123
Gian Marco05288a22017-11-21 10:57:50 +0000124 // Configure kernel window
Michele Di Giorgio671d4f02020-10-14 12:26:51 +0100125 Window win = calculate_max_window(*input->info(), Steps(num_elems_processed_per_iteration));
126 ICLKernel::configure_internal(win);
SiCong Li04a07062020-11-17 14:09:01 +0000127
128 ARM_COMPUTE_ERROR_ON(has_padding_changed(padding_info));
Gian Marco05288a22017-11-21 10:57:50 +0000129}
130
Luca Foschiani689c9682020-02-26 14:30:14 +0000131void CLGEMMLowpQuantizeDownInt32ScaleKernel::run(const Window &window, cl::CommandQueue &queue)
Gian Marco05288a22017-11-21 10:57:50 +0000132{
133 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
134 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(ICLKernel::window(), window);
135
136 Window collapsed = window.collapse_if_possible(ICLKernel::window(), Window::DimZ);
137 Window slice = collapsed.first_slice_window_3D();
138
139 unsigned int idx1 = num_arguments_per_3D_tensor();
140 if(_bias != nullptr)
141 {
142 Window biases_slice(slice);
143 biases_slice.set(Window::DimY, Window::Dimension(0, 1, 1));
144 biases_slice.set(Window::DimZ, Window::Dimension(0, 1, 1));
145 add_1D_tensor_argument(idx1, _bias, biases_slice);
146 }
147
148 do
149 {
150 unsigned int idx = 0;
151 add_3D_tensor_argument(idx, _input, slice);
152 add_3D_tensor_argument(idx1, _output, slice);
Georgios Pinitas275f99c2019-08-23 12:44:11 +0100153 enqueue(queue, *this, slice, lws_hint());
Gian Marco05288a22017-11-21 10:57:50 +0000154 }
155 while(collapsed.slide_window_slice_3D(slice));
Chunosov5124be52017-11-22 20:42:13 +0700156}
Luca Foschiani689c9682020-02-26 14:30:14 +0000157}