blob: 55e4ed2bd9677c7333f763826a2258df30b55001 [file] [log] [blame]
Gian Marco05288a22017-11-21 10:57:50 +00001/*
Michele Di Giorgiod9eaf612020-07-08 11:12:57 +01002 * Copyright (c) 2020 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 */
Luca Foschiani689c9682020-02-26 14:30:14 +000024#include "arm_compute/core/CL/kernels/CLGEMMLowpQuantizeDownInt32ScaleKernel.h"
Gian Marco05288a22017-11-21 10:57:50 +000025
26#include "arm_compute/core/AccessWindowStatic.h"
Luca Foschiani689c9682020-02-26 14:30:14 +000027#include "arm_compute/core/CL/CLHelpers.h"
Gian Marco05288a22017-11-21 10:57:50 +000028#include "arm_compute/core/CL/ICLTensor.h"
29#include "arm_compute/core/Error.h"
30#include "arm_compute/core/Helpers.h"
31#include "arm_compute/core/Types.h"
32#include "arm_compute/core/Validate.h"
33#include "arm_compute/core/Window.h"
Luca Foschiani689c9682020-02-26 14:30:14 +000034#include "arm_compute/core/utils/quantization/AsymmHelpers.h"
Matthew Bentham758b5ba2020-03-05 23:37:48 +000035#include "support/StringSupport.h"
Gian Marco05288a22017-11-21 10:57:50 +000036
Gian Marco05288a22017-11-21 10:57:50 +000037namespace arm_compute
38{
Gian Marco58c57942017-11-28 09:10:03 +000039namespace
40{
Luca Foschiani689c9682020-02-26 14:30:14 +000041Status validate_arguments(const ITensorInfo *input, const ITensorInfo *bias, const ITensorInfo *output, const GEMMLowpOutputStageInfo *output_stage)
Gian Marco58c57942017-11-28 09:10:03 +000042{
43 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input, 1, DataType::S32);
Luca Foschiani689c9682020-02-26 14:30:14 +000044 ARM_COMPUTE_RETURN_ERROR_ON((output_stage->output_data_type != DataType::QASYMM8) && (output_stage->output_data_type != DataType::QASYMM8_SIGNED));
45 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)));
46 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))
47 || output_stage->gemmlowp_min_bound > output_stage->gemmlowp_max_bound);
Gian Marco58c57942017-11-28 09:10:03 +000048
49 // Check biases if exist
50 if(bias != nullptr)
51 {
52 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input, bias);
53 ARM_COMPUTE_RETURN_ERROR_ON(bias->num_dimensions() > 1);
54 ARM_COMPUTE_RETURN_ERROR_ON(input->dimension(0) != bias->dimension(0));
55 }
Chunosov5124be52017-11-22 20:42:13 +070056
57 if(output->total_size() != 0)
58 {
Luca Foschiani689c9682020-02-26 14:30:14 +000059 ARM_COMPUTE_RETURN_ERROR_ON_MSG(output->data_type() != output_stage->output_data_type, "Mismatching output data type");
Chunosov5124be52017-11-22 20:42:13 +070060 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_SHAPES(input, output);
61 }
62
Georgios Pinitas631c41a2017-12-06 11:53:03 +000063 return Status{};
Gian Marco58c57942017-11-28 09:10:03 +000064}
65
Luca Foschiani689c9682020-02-26 14:30:14 +000066std::pair<Status, Window> validate_and_configure_window(ITensorInfo *input, ITensorInfo *bias, ITensorInfo *output, DataType output_data_type)
Gian Marco58c57942017-11-28 09:10:03 +000067{
Luca Foschiani689c9682020-02-26 14:30:14 +000068 // Output auto inizialitation if not yet initialized
69 auto_init_if_empty(*output, input->clone()->set_data_type(output_data_type));
70
Gian Marco Iodice4b908652018-10-18 10:21:02 +010071 constexpr unsigned int num_elems_processed_per_iteration = 4;
Gian Marco58c57942017-11-28 09:10:03 +000072
73 // Configure kernel window
74 Window win = calculate_max_window(*output, Steps(num_elems_processed_per_iteration));
75
76 AccessWindowHorizontal input_access(input, 0, num_elems_processed_per_iteration);
Gian Marco58c57942017-11-28 09:10:03 +000077
78 bool window_changed = update_window_and_padding(win,
Chunosov5124be52017-11-22 20:42:13 +070079 input_access);
80
Luca Foschiani689c9682020-02-26 14:30:14 +000081 AccessWindowHorizontal output_result_access(output, 0, num_elems_processed_per_iteration);
82 window_changed = window_changed || update_window_and_padding(win, output_result_access);
83 output_result_access.set_valid_region(win, ValidRegion(Coordinates(), output->tensor_shape()));
Gian Marco58c57942017-11-28 09:10:03 +000084
85 if(bias != nullptr)
86 {
87 AccessWindowStatic bias_access(bias, 0, 0, ceil_to_multiple(bias->dimension(0), num_elems_processed_per_iteration), bias->tensor_shape()[1]);
88 window_changed = window_changed || update_window_and_padding(win, bias_access);
89 }
90
Georgios Pinitas631c41a2017-12-06 11:53:03 +000091 Status err = (window_changed) ? ARM_COMPUTE_CREATE_ERROR(ErrorCode::RUNTIME_ERROR, "Insufficient Padding!") : Status{};
Gian Marco58c57942017-11-28 09:10:03 +000092 return std::make_pair(err, win);
93}
Luca Foschiani689c9682020-02-26 14:30:14 +000094} //namespace
Gian Marco58c57942017-11-28 09:10:03 +000095
Luca Foschiani689c9682020-02-26 14:30:14 +000096CLGEMMLowpQuantizeDownInt32ScaleKernel::CLGEMMLowpQuantizeDownInt32ScaleKernel()
97 : _input(nullptr), _bias(nullptr), _output(nullptr), _output_stage(nullptr)
Gian Marco05288a22017-11-21 10:57:50 +000098{
99}
Luca Foschiani689c9682020-02-26 14:30:14 +0000100Status CLGEMMLowpQuantizeDownInt32ScaleKernel::validate(const ITensorInfo *input, const ITensorInfo *bias, const ITensorInfo *output, const GEMMLowpOutputStageInfo *output_stage)
Gian Marco58c57942017-11-28 09:10:03 +0000101{
Chunosov5124be52017-11-22 20:42:13 +0700102 ARM_COMPUTE_ERROR_ON_NULLPTR(input, output);
Luca Foschiani689c9682020-02-26 14:30:14 +0000103 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(input, bias, output, output_stage));
Gian Marco58c57942017-11-28 09:10:03 +0000104
Georgios Pinitas631c41a2017-12-06 11:53:03 +0000105 return Status{};
Gian Marco58c57942017-11-28 09:10:03 +0000106}
Gian Marco05288a22017-11-21 10:57:50 +0000107
Luca Foschiani689c9682020-02-26 14:30:14 +0000108void CLGEMMLowpQuantizeDownInt32ScaleKernel::configure(const ICLTensor *input, const ICLTensor *bias, ICLTensor *output, const GEMMLowpOutputStageInfo *output_stage)
Gian Marco05288a22017-11-21 10:57:50 +0000109{
Manuel Bottini4c6bd512020-04-08 10:15:51 +0100110 configure(CLKernelLibrary::get().get_compile_context(), input, bias, output, output_stage);
111}
112
Manuel Bottini679fc962020-04-21 16:08:53 +0100113void CLGEMMLowpQuantizeDownInt32ScaleKernel::configure(const CLCompileContext &compile_context, const ICLTensor *input, const ICLTensor *bias, ICLTensor *output, const GEMMLowpOutputStageInfo *output_stage)
Manuel Bottini4c6bd512020-04-08 10:15:51 +0100114{
Gian Marco58c57942017-11-28 09:10:03 +0000115 // Perform validate step
116 ARM_COMPUTE_ERROR_ON_NULLPTR(input, output);
Gian Marco05288a22017-11-21 10:57:50 +0000117
Gian Marco58c57942017-11-28 09:10:03 +0000118 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(input->info(),
119 (bias != nullptr) ? bias->info() : nullptr,
120 output->info(),
Luca Foschiani689c9682020-02-26 14:30:14 +0000121 output_stage));
Georgios Pinitas45bcc3a2017-11-29 11:06:49 +0000122
Luca Foschiani689c9682020-02-26 14:30:14 +0000123 _input = input;
124 _bias = bias;
125 _output = output;
126 _output_stage = output_stage;
Gian Marco05288a22017-11-21 10:57:50 +0000127
128 // Set the arguments to pass at compile time
Luca Foschiani689c9682020-02-26 14:30:14 +0000129 auto min = output_stage->gemmlowp_min_bound;
130 auto max = output_stage->gemmlowp_max_bound;
Gian Marco05288a22017-11-21 10:57:50 +0000131 CLBuildOptions build_opts;
Luca Foschiani689c9682020-02-26 14:30:14 +0000132 build_opts.add_option("-DRESULT_OFFSET=" + support::cpp11::to_string(output_stage->gemmlowp_offset));
133 build_opts.add_option("-DRESULT_MULT_INT=" + support::cpp11::to_string(output_stage->gemmlowp_multiplier));
134 build_opts.add_option("-DRESULT_SHIFT=" + support::cpp11::to_string(output_stage->gemmlowp_shift));
135 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),
136 "-DMIN_BOUND=" + support::cpp11::to_string(min));
137 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),
138 "-DMAX_BOUND=" + support::cpp11::to_string(max));
139 build_opts.add_option("-DOUTPUT_DATA_TYPE=" + get_cl_type_from_data_type(output->info()->data_type()));
Gian Marco05288a22017-11-21 10:57:50 +0000140 build_opts.add_option_if(bias != nullptr, "-DADD_BIAS");
141
142 // Create kernel
Manuel Bottini4c6bd512020-04-08 10:15:51 +0100143 _kernel = create_kernel(compile_context, "gemmlowp_output_stage_quantize_down", build_opts.options());
Gian Marco05288a22017-11-21 10:57:50 +0000144
Gian Marco05288a22017-11-21 10:57:50 +0000145 // Configure kernel window
Luca Foschiani689c9682020-02-26 14:30:14 +0000146 auto win_config = validate_and_configure_window(input->info(), (bias != nullptr) ? bias->info() : nullptr, output->info(), output_stage->output_data_type);
Gian Marco58c57942017-11-28 09:10:03 +0000147 ARM_COMPUTE_ERROR_THROW_ON(win_config.first);
Anthony Barbierb6eb3532018-08-08 13:20:04 +0100148 ICLKernel::configure_internal(win_config.second);
Gian Marco05288a22017-11-21 10:57:50 +0000149}
150
Luca Foschiani689c9682020-02-26 14:30:14 +0000151void CLGEMMLowpQuantizeDownInt32ScaleKernel::run(const Window &window, cl::CommandQueue &queue)
Gian Marco05288a22017-11-21 10:57:50 +0000152{
153 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
154 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(ICLKernel::window(), window);
155
156 Window collapsed = window.collapse_if_possible(ICLKernel::window(), Window::DimZ);
157 Window slice = collapsed.first_slice_window_3D();
158
159 unsigned int idx1 = num_arguments_per_3D_tensor();
160 if(_bias != nullptr)
161 {
162 Window biases_slice(slice);
163 biases_slice.set(Window::DimY, Window::Dimension(0, 1, 1));
164 biases_slice.set(Window::DimZ, Window::Dimension(0, 1, 1));
165 add_1D_tensor_argument(idx1, _bias, biases_slice);
166 }
167
168 do
169 {
170 unsigned int idx = 0;
171 add_3D_tensor_argument(idx, _input, slice);
172 add_3D_tensor_argument(idx1, _output, slice);
Georgios Pinitas275f99c2019-08-23 12:44:11 +0100173 enqueue(queue, *this, slice, lws_hint());
Gian Marco05288a22017-11-21 10:57:50 +0000174 }
175 while(collapsed.slide_window_slice_3D(slice));
Chunosov5124be52017-11-22 20:42:13 +0700176}
Luca Foschiani689c9682020-02-26 14:30:14 +0000177}