blob: afa7bdbfdfe52fe6c13d8bf07cdc1716dc510eee [file] [log] [blame]
Gian Marco Iodice4b908652018-10-18 10:21:02 +01001/*
Michele Di Giorgiod9eaf612020-07-08 11:12:57 +01002 * Copyright (c) 2018-2020 Arm Limited.
Gian Marco Iodice4b908652018-10-18 10:21:02 +01003 *
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 */
24#include "arm_compute/core/CL/kernels/CLGEMMLowpOffsetContributionOutputStageKernel.h"
25
Manuel Bottini959c26d2019-12-02 16:22:35 +000026#include "arm_compute/core/CL/CLHelpers.h"
Gian Marco Iodice4b908652018-10-18 10:21:02 +010027#include "arm_compute/core/CL/ICLTensor.h"
Gian Marco Iodice4b908652018-10-18 10:21:02 +010028#include "arm_compute/core/Helpers.h"
29#include "arm_compute/core/TensorInfo.h"
Gian Marco Iodice4b908652018-10-18 10:21:02 +010030#include "arm_compute/core/Utils.h"
31#include "arm_compute/core/Validate.h"
Sang-Hoon Park68dd25f2020-10-19 16:00:11 +010032#include "src/core/AccessWindowStatic.h"
33#include "src/core/helpers/AutoConfiguration.h"
34#include "src/core/helpers/WindowHelpers.h"
Matthew Bentham758b5ba2020-03-05 23:37:48 +000035#include "support/StringSupport.h"
Gian Marco Iodice4b908652018-10-18 10:21:02 +010036
Gian Marco Iodice4b908652018-10-18 10:21:02 +010037namespace arm_compute
38{
Gian Marco Iodice4b908652018-10-18 10:21:02 +010039namespace
40{
41Status validate_arguments(const ITensorInfo *mm_result, const ITensorInfo *vector_sum_col, const ITensorInfo *vector_sum_row, const ITensorInfo *bias, const ITensorInfo *output,
Vidhya Sudhan Loganathan951b8a42019-11-04 14:42:08 +000042 int32_t a_offset, int32_t b_offset, const GEMMLowpOutputStageInfo &output_stage, const ITensorInfo *output_multipliers, const ITensorInfo *output_shifts)
Gian Marco Iodice4b908652018-10-18 10:21:02 +010043{
44 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(mm_result, 1, DataType::S32);
Gian Marco Iodice4b908652018-10-18 10:21:02 +010045
46 if(bias != nullptr)
47 {
48 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(bias, 1, DataType::S32);
49 ARM_COMPUTE_RETURN_ERROR_ON(bias->num_dimensions() > 1);
50 ARM_COMPUTE_RETURN_ERROR_ON(mm_result->dimension(0) != bias->dimension(0));
51 }
52
Vidhya Sudhan Loganathan951b8a42019-11-04 14:42:08 +000053 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(output_multipliers, 1, DataType::S32);
54 ARM_COMPUTE_RETURN_ERROR_ON(output_multipliers->num_dimensions() > 1);
55 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(output_shifts, 1, DataType::S32);
56 ARM_COMPUTE_RETURN_ERROR_ON(output_shifts->num_dimensions() > 1);
57 if(output_stage.is_quantized_per_channel)
58 {
59 ARM_COMPUTE_RETURN_ERROR_ON(mm_result->dimension(0) != output_shifts->dimension(0));
60 ARM_COMPUTE_RETURN_ERROR_ON(mm_result->dimension(0) != output_multipliers->dimension(0));
61 }
62
Gian Marco Iodice4b908652018-10-18 10:21:02 +010063 // If a_offset == 0, vector_sum_col can be a nullptr
64 if(a_offset != 0)
65 {
66 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(vector_sum_col, 1, DataType::S32);
67 ARM_COMPUTE_RETURN_ERROR_ON(vector_sum_col->dimension(0) != mm_result->dimension(0));
68 }
69
70 // If b_offset == 0, vector_sum_row can be a nullptr
71 if(b_offset != 0)
72 {
73 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(vector_sum_row, 1, DataType::S32);
74
75 // Check if input is a 3D reinterpretation
76 const bool reinterpret_as_3d = mm_result->num_dimensions() > 1 && mm_result->tensor_shape().y() != vector_sum_row->tensor_shape().x();
77
78 // Validate input
79 ARM_COMPUTE_RETURN_ERROR_ON(reinterpret_as_3d && vector_sum_row->dimension(0) != (mm_result->dimension(1) * mm_result->dimension(2)));
80 ARM_COMPUTE_RETURN_ERROR_ON(!reinterpret_as_3d && vector_sum_row->dimension(0) != mm_result->dimension(1));
81
82 TensorShape output_shape = mm_result->tensor_shape();
83 if(output_shape.num_dimensions() > 1)
84 {
85 const unsigned int output_batch_idx = reinterpret_as_3d ? 3 : 2;
86
87 TensorShape vector_sum_row_shape = vector_sum_row->tensor_shape();
88 vector_sum_row_shape.collapse_from(1);
89 output_shape.collapse_from(output_batch_idx);
90
91 ARM_COMPUTE_RETURN_ERROR_ON_MSG(vector_sum_row_shape[1] != output_shape[output_batch_idx],
92 "mm_result tensor must have the same number of batches of output tensor");
93
94 if(a_offset != 0)
95 {
96 TensorShape vector_sum_col_shape = vector_sum_col->tensor_shape();
97 vector_sum_col_shape.collapse_from(1);
98
99 ARM_COMPUTE_RETURN_ERROR_ON_MSG(vector_sum_col_shape[1] != 1 && vector_sum_col_shape[1] != vector_sum_row_shape[1],
100 "vector_sum_col tensor must have the same number of batches of vector_sum_row_shape or the number of batches must be set to 1");
101 }
102 }
103 }
104
Manuel Bottini959c26d2019-12-02 16:22:35 +0000105 ARM_COMPUTE_RETURN_ERROR_ON(output_stage.type == GEMMLowpOutputStageType::NONE);
106 // Checks performed when output is configured
107 if((output != nullptr) && (output->total_size() != 0))
Gian Marco Iodice4b908652018-10-18 10:21:02 +0100108 {
Manuel Bottini959c26d2019-12-02 16:22:35 +0000109 ARM_COMPUTE_RETURN_ERROR_ON(output_stage.output_data_type != output->data_type());
110 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(output, 1, DataType::QASYMM8, DataType::QASYMM8_SIGNED);
Gian Marco Iodice4b908652018-10-18 10:21:02 +0100111 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_SHAPES(mm_result, output);
112 }
113
Giorgio Arena1856ff72020-02-07 13:46:45 +0000114 ARM_COMPUTE_RETURN_ERROR_ON(output_stage.gemmlowp_min_bound > output_stage.gemmlowp_max_bound);
Manuel Bottini959c26d2019-12-02 16:22:35 +0000115 ARM_COMPUTE_RETURN_ERROR_ON_MSG(output_stage.gemmlowp_multipliers.size() != output_stage.gemmlowp_shifts.size(), "per channel quantization info is incorrect");
Vidhya Sudhan Loganathan951b8a42019-11-04 14:42:08 +0000116
Gian Marco Iodice4b908652018-10-18 10:21:02 +0100117 return Status{};
118}
Gian Marco Iodice4b908652018-10-18 10:21:02 +0100119} // namespace
120
121CLGEMMLowpOffsetContributionOutputStageKernel::CLGEMMLowpOffsetContributionOutputStageKernel()
Vidhya Sudhan Loganathan951b8a42019-11-04 14:42:08 +0000122 : _mm_result(nullptr),
123 _vector_sum_col(nullptr),
124 _vector_sum_row(nullptr),
125 _bias(nullptr),
126 _output(nullptr),
127 _output_multipliers(nullptr),
128 _output_shifts(nullptr),
129 _is_quantized_per_channel(false)
Gian Marco Iodice4b908652018-10-18 10:21:02 +0100130{
131}
132
133void CLGEMMLowpOffsetContributionOutputStageKernel::configure(const ICLTensor *mm_result, const ICLTensor *vector_sum_col, const ICLTensor *vector_sum_row, const ICLTensor *bias, ICLTensor *output,
Vidhya Sudhan Loganathan951b8a42019-11-04 14:42:08 +0000134 int32_t k, int32_t a_offset, int32_t b_offset, const GEMMLowpOutputStageInfo &output_stage,
135 const ICLTensor *output_multipliers, const ICLTensor *output_shifts)
Gian Marco Iodice4b908652018-10-18 10:21:02 +0100136{
Manuel Bottini4c6bd512020-04-08 10:15:51 +0100137 configure(CLKernelLibrary::get().get_compile_context(), mm_result, vector_sum_col, vector_sum_row, bias, output, k, a_offset, b_offset, output_stage, output_multipliers, output_shifts);
138}
139
Manuel Bottini679fc962020-04-21 16:08:53 +0100140void CLGEMMLowpOffsetContributionOutputStageKernel::configure(const CLCompileContext &compile_context, const ICLTensor *mm_result, const ICLTensor *vector_sum_col, const ICLTensor *vector_sum_row,
Manuel Bottini4c6bd512020-04-08 10:15:51 +0100141 const ICLTensor *bias, ICLTensor *output,
142 int32_t k, int32_t a_offset, int32_t b_offset, const GEMMLowpOutputStageInfo &output_stage,
143 const ICLTensor *output_multipliers, const ICLTensor *output_shifts)
144{
Gian Marco Iodice4b908652018-10-18 10:21:02 +0100145 // Perform validate step
Vidhya Sudhan Loganathan951b8a42019-11-04 14:42:08 +0000146 ARM_COMPUTE_ERROR_ON_NULLPTR(mm_result, output, output_multipliers, output_shifts);
Gian Marco Iodice4b908652018-10-18 10:21:02 +0100147 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(mm_result->info(),
148 vector_sum_col != nullptr ? vector_sum_col->info() : nullptr,
149 vector_sum_row != nullptr ? vector_sum_row->info() : nullptr,
150 bias != nullptr ? bias->info() : nullptr,
151 output->info(),
Vidhya Sudhan Loganathan951b8a42019-11-04 14:42:08 +0000152 a_offset, b_offset, output_stage,
153 output_multipliers->info(), output_shifts->info())); // NOLINT
Gian Marco Iodice4b908652018-10-18 10:21:02 +0100154
Michele Di Giorgio0bfe39f2020-10-21 11:36:21 +0100155 auto padding_info = get_padding_info({ mm_result, vector_sum_col, vector_sum_row, bias, output, output_multipliers, output_shifts });
156
Gian Marco Iodice4b908652018-10-18 10:21:02 +0100157 const int min = output_stage.gemmlowp_min_bound;
158 const int max = output_stage.gemmlowp_max_bound;
159
Vidhya Sudhan Loganathan951b8a42019-11-04 14:42:08 +0000160 _vector_sum_col = vector_sum_col;
161 _vector_sum_row = vector_sum_row;
162 _mm_result = mm_result;
163 _bias = bias;
164 _output = output;
165 _output_multipliers = output_multipliers;
166 _output_shifts = output_shifts;
167 _is_quantized_per_channel = output_stage.is_quantized_per_channel;
Gian Marco Iodice4b908652018-10-18 10:21:02 +0100168
169 // Check if input is a 3D reinterpretation
170 const bool reinterpret_as_3d = vector_sum_row != nullptr
171 && mm_result->info()->num_dimensions() > 1
172 && mm_result->info()->tensor_shape().y() != vector_sum_row->info()->tensor_shape().x();
173
Michele Di Giorgio0bfe39f2020-10-21 11:36:21 +0100174 // Auto initialize the output
175 auto_init_if_empty(*output->info(), mm_result->info()->clone()->set_data_type(output_stage.output_data_type));
176
177 const unsigned int num_elems_processed_per_iteration = adjust_vec_size(4, mm_result->info()->dimension(0));
178
Gian Marco Iodice4b908652018-10-18 10:21:02 +0100179 // Set the arguments to pass at compile time
180 CLBuildOptions build_opts;
Michele Di Giorgio0bfe39f2020-10-21 11:36:21 +0100181 build_opts.add_option("-DVEC_SIZE=" + support::cpp11::to_string(num_elems_processed_per_iteration));
182 build_opts.add_option("-DVEC_SIZE_LEFTOVER=" + support::cpp11::to_string(mm_result->info()->dimension(0) % num_elems_processed_per_iteration));
Gian Marco Iodice4b908652018-10-18 10:21:02 +0100183
184 // If a_offset == 0, vector_sum_col can be a nullptr
185 if(a_offset != 0)
186 {
187 build_opts.add_option("-DA_OFFSET=" + support::cpp11::to_string(a_offset));
188 build_opts.add_option_if(vector_sum_col->info()->tensor_shape().num_dimensions() > 1, "-DSUM_COL_HAS_BATCHES");
189 }
190 // If b_offset == 0, vector_sum_row can be a nullptr
191 build_opts.add_option_if(b_offset != 0, "-DB_OFFSET=" + support::cpp11::to_string(b_offset));
192 build_opts.add_option("-DK_OFFSET=" + support::cpp11::to_string(a_offset * b_offset * k));
193 build_opts.add_option_if(reinterpret_as_3d, "-DHEIGHT_INPUT3D=" + support::cpp11::to_string(mm_result->info()->dimension(1)));
194 build_opts.add_option_if(reinterpret_as_3d, "-DDEPTH_INPUT3D=" + support::cpp11::to_string(mm_result->info()->dimension(2)));
195 build_opts.add_option_if(bias != nullptr, "-DADD_BIAS");
196 build_opts.add_option("-DRESULT_OFFSET=" + support::cpp11::to_string(output_stage.gemmlowp_offset));
Vidhya Sudhan Loganathan951b8a42019-11-04 14:42:08 +0000197 build_opts.add_option("-DRESULT_MULTIPLIER=" + support::cpp11::to_string(output_stage.gemmlowp_multipliers[0]));
198 build_opts.add_option("-DRESULT_SHIFT=" + support::cpp11::to_string(output_stage.gemmlowp_shifts[0]));
199 build_opts.add_option_if(_is_quantized_per_channel, "-DPER_CHANNEL_QUANTIZATION");
Manuel Bottini959c26d2019-12-02 16:22:35 +0000200 build_opts.add_option("-DOUTPUT_DATA_TYPE=" + get_cl_type_from_data_type(output->info()->data_type()));
201
202 PixelValue min_val{};
203 PixelValue max_val{};
204 std::tie(min_val, max_val) = get_min_max(output->info()->data_type());
Giorgio Arena1856ff72020-02-07 13:46:45 +0000205 build_opts.add_option_if((min > min_val.get<int32_t>()), "-DMIN_BOUND=" + support::cpp11::to_string(min));
206 build_opts.add_option_if((max < max_val.get<int32_t>()), "-DMAX_BOUND=" + support::cpp11::to_string(max));
Gian Marco Iodice4b908652018-10-18 10:21:02 +0100207
208 std::string kernel_name("gemmlowp_offset_contribution");
Manuel Bottini959c26d2019-12-02 16:22:35 +0000209 kernel_name += "_" + string_from_gemmlowp_output_stage(output_stage.type);
Gian Marco Iodice4b908652018-10-18 10:21:02 +0100210
211 // Create kernel
Manuel Bottini4c6bd512020-04-08 10:15:51 +0100212 _kernel = create_kernel(compile_context, kernel_name, build_opts.options());
Gian Marco Iodice4b908652018-10-18 10:21:02 +0100213
214 // Configure kernel window
Michele Di Giorgio0bfe39f2020-10-21 11:36:21 +0100215 Window win = calculate_max_window(*mm_result->info(), Steps(num_elems_processed_per_iteration));
216 ICLKernel::configure_internal(win);
Gian Marco Iodice4b908652018-10-18 10:21:02 +0100217
218 // Set config_id for enabling LWS tuning
219 _config_id = kernel_name + "_";
220 _config_id += support::cpp11::to_string(mm_result->info()->dimension(0));
221 _config_id += "_";
222 _config_id += support::cpp11::to_string(mm_result->info()->dimension(1));
223 _config_id += "_";
224 _config_id += support::cpp11::to_string(mm_result->info()->dimension(2));
Michele Di Giorgio0bfe39f2020-10-21 11:36:21 +0100225
226 ARM_COMPUTE_ERROR_ON(has_padding_changed(padding_info));
Gian Marco Iodice4b908652018-10-18 10:21:02 +0100227}
228
229Status CLGEMMLowpOffsetContributionOutputStageKernel::validate(const ITensorInfo *mm_result, const ITensorInfo *vector_sum_col, const ITensorInfo *vector_sum_row, const ITensorInfo *bias,
Vidhya Sudhan Loganathan951b8a42019-11-04 14:42:08 +0000230 const ITensorInfo *output, int32_t a_offset, int32_t b_offset, const GEMMLowpOutputStageInfo &output_stage,
231 const ITensorInfo *output_multipliers, const ITensorInfo *output_shifts)
Gian Marco Iodice4b908652018-10-18 10:21:02 +0100232{
Vidhya Sudhan Loganathan951b8a42019-11-04 14:42:08 +0000233 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(mm_result, vector_sum_col, vector_sum_row, bias, output, a_offset, b_offset, output_stage, output_multipliers, output_shifts));
Gian Marco Iodice4b908652018-10-18 10:21:02 +0100234 return Status{};
235}
236
237void CLGEMMLowpOffsetContributionOutputStageKernel::run(const Window &window, cl::CommandQueue &queue)
238{
239 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
240 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(ICLKernel::window(), window);
241
242 Window collapsed = window.collapse_if_possible(ICLKernel::window(), Window::DimZ);
243 Window slice = collapsed.first_slice_window_3D();
244
245 // Set window for vector_sum_col
246 Window win_vector_sum_col = slice;
247 win_vector_sum_col.set(Window::DimY, Window::Dimension(0, 0, 0));
248 win_vector_sum_col.set(Window::DimZ, Window::Dimension(0, 0, 0));
249
250 // Set window for vector_sum_row
251 Window win_vector_sum_row = slice;
252 win_vector_sum_row.set(Window::DimX, Window::Dimension(0, 0, 0));
253 win_vector_sum_row.set(Window::DimY, Window::Dimension(0, 0, 0));
254 win_vector_sum_col.set(Window::DimZ, Window::Dimension(0, 0, 0));
255
256 Window biases_slice = slice;
257 biases_slice.set(Window::DimY, Window::Dimension(0, 1, 1));
258 biases_slice.set(Window::DimZ, Window::Dimension(0, 1, 1));
259
260 do
261 {
262 unsigned int idx = 0;
263 add_3D_tensor_argument(idx, _mm_result, slice);
Michalis Spyroue1651a52019-07-11 15:00:49 +0100264 add_2D_tensor_argument_if((_vector_sum_col != nullptr), idx, _vector_sum_col, win_vector_sum_col);
265 add_2D_tensor_argument_if((_vector_sum_row != nullptr), idx, _vector_sum_row, win_vector_sum_row);
266 add_1D_tensor_argument_if((_bias != nullptr), idx, _bias, biases_slice);
Gian Marco Iodice4b908652018-10-18 10:21:02 +0100267 add_3D_tensor_argument(idx, _output, slice);
Vidhya Sudhan Loganathan951b8a42019-11-04 14:42:08 +0000268 add_1D_tensor_argument_if(_is_quantized_per_channel, idx, _output_multipliers, biases_slice);
269 add_1D_tensor_argument_if(_is_quantized_per_channel, idx, _output_shifts, biases_slice);
Gian Marco Iodice4b908652018-10-18 10:21:02 +0100270 enqueue(queue, *this, slice, lws_hint());
271 }
272 while(collapsed.slide_window_slice_3D(slice));
273}
Vidhya Sudhan Loganathan951b8a42019-11-04 14:42:08 +0000274} // namespace arm_compute