blob: 8ed83ed52ce95d3edacda0da9cc336e6bc7a5125 [file] [log] [blame]
Gian Marco Iodice4b908652018-10-18 10:21:02 +01001/*
Michele Di Giorgio142e4ca2021-04-14 16:50:03 +01002 * Copyright (c) 2018-2021 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 */
Sang-Hoon Parkbef7fa22020-10-21 15:58:54 +010024#include "src/core/CL/kernels/CLGEMMLowpOffsetContributionOutputStageKernel.h"
Gian Marco Iodice4b908652018-10-18 10:21:02 +010025
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/helpers/AutoConfiguration.h"
33#include "src/core/helpers/WindowHelpers.h"
Matthew Bentham758b5ba2020-03-05 23:37:48 +000034#include "support/StringSupport.h"
Gian Marco Iodice4b908652018-10-18 10:21:02 +010035
Gian Marco Iodice4b908652018-10-18 10:21:02 +010036namespace arm_compute
37{
Gian Marco Iodice4b908652018-10-18 10:21:02 +010038namespace
39{
40Status 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 +000041 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 +010042{
43 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(mm_result, 1, DataType::S32);
Gian Marco Iodice4b908652018-10-18 10:21:02 +010044
45 if(bias != nullptr)
46 {
47 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(bias, 1, DataType::S32);
48 ARM_COMPUTE_RETURN_ERROR_ON(bias->num_dimensions() > 1);
49 ARM_COMPUTE_RETURN_ERROR_ON(mm_result->dimension(0) != bias->dimension(0));
50 }
51
Vidhya Sudhan Loganathan951b8a42019-11-04 14:42:08 +000052 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(output_multipliers, 1, DataType::S32);
53 ARM_COMPUTE_RETURN_ERROR_ON(output_multipliers->num_dimensions() > 1);
54 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(output_shifts, 1, DataType::S32);
55 ARM_COMPUTE_RETURN_ERROR_ON(output_shifts->num_dimensions() > 1);
56 if(output_stage.is_quantized_per_channel)
57 {
58 ARM_COMPUTE_RETURN_ERROR_ON(mm_result->dimension(0) != output_shifts->dimension(0));
59 ARM_COMPUTE_RETURN_ERROR_ON(mm_result->dimension(0) != output_multipliers->dimension(0));
60 }
61
Gian Marco Iodice4b908652018-10-18 10:21:02 +010062 // If a_offset == 0, vector_sum_col can be a nullptr
63 if(a_offset != 0)
64 {
65 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(vector_sum_col, 1, DataType::S32);
66 ARM_COMPUTE_RETURN_ERROR_ON(vector_sum_col->dimension(0) != mm_result->dimension(0));
67 }
68
69 // If b_offset == 0, vector_sum_row can be a nullptr
70 if(b_offset != 0)
71 {
72 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(vector_sum_row, 1, DataType::S32);
73
74 // Check if input is a 3D reinterpretation
75 const bool reinterpret_as_3d = mm_result->num_dimensions() > 1 && mm_result->tensor_shape().y() != vector_sum_row->tensor_shape().x();
76
77 // Validate input
78 ARM_COMPUTE_RETURN_ERROR_ON(reinterpret_as_3d && vector_sum_row->dimension(0) != (mm_result->dimension(1) * mm_result->dimension(2)));
79 ARM_COMPUTE_RETURN_ERROR_ON(!reinterpret_as_3d && vector_sum_row->dimension(0) != mm_result->dimension(1));
80
81 TensorShape output_shape = mm_result->tensor_shape();
82 if(output_shape.num_dimensions() > 1)
83 {
84 const unsigned int output_batch_idx = reinterpret_as_3d ? 3 : 2;
85
86 TensorShape vector_sum_row_shape = vector_sum_row->tensor_shape();
87 vector_sum_row_shape.collapse_from(1);
88 output_shape.collapse_from(output_batch_idx);
89
90 ARM_COMPUTE_RETURN_ERROR_ON_MSG(vector_sum_row_shape[1] != output_shape[output_batch_idx],
91 "mm_result tensor must have the same number of batches of output tensor");
92
93 if(a_offset != 0)
94 {
95 TensorShape vector_sum_col_shape = vector_sum_col->tensor_shape();
96 vector_sum_col_shape.collapse_from(1);
97
98 ARM_COMPUTE_RETURN_ERROR_ON_MSG(vector_sum_col_shape[1] != 1 && vector_sum_col_shape[1] != vector_sum_row_shape[1],
99 "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");
100 }
101 }
102 }
103
Manuel Bottini959c26d2019-12-02 16:22:35 +0000104 ARM_COMPUTE_RETURN_ERROR_ON(output_stage.type == GEMMLowpOutputStageType::NONE);
105 // Checks performed when output is configured
106 if((output != nullptr) && (output->total_size() != 0))
Gian Marco Iodice4b908652018-10-18 10:21:02 +0100107 {
Manuel Bottini959c26d2019-12-02 16:22:35 +0000108 ARM_COMPUTE_RETURN_ERROR_ON(output_stage.output_data_type != output->data_type());
109 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 +0100110 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_SHAPES(mm_result, output);
111 }
112
Giorgio Arena1856ff72020-02-07 13:46:45 +0000113 ARM_COMPUTE_RETURN_ERROR_ON(output_stage.gemmlowp_min_bound > output_stage.gemmlowp_max_bound);
Manuel Bottini959c26d2019-12-02 16:22:35 +0000114 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 +0000115
Gian Marco Iodice4b908652018-10-18 10:21:02 +0100116 return Status{};
117}
Gian Marco Iodice4b908652018-10-18 10:21:02 +0100118} // namespace
119
120CLGEMMLowpOffsetContributionOutputStageKernel::CLGEMMLowpOffsetContributionOutputStageKernel()
Vidhya Sudhan Loganathan951b8a42019-11-04 14:42:08 +0000121 : _mm_result(nullptr),
122 _vector_sum_col(nullptr),
123 _vector_sum_row(nullptr),
124 _bias(nullptr),
125 _output(nullptr),
126 _output_multipliers(nullptr),
127 _output_shifts(nullptr),
128 _is_quantized_per_channel(false)
Gian Marco Iodice4b908652018-10-18 10:21:02 +0100129{
130}
131
132void 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 +0000133 int32_t k, int32_t a_offset, int32_t b_offset, const GEMMLowpOutputStageInfo &output_stage,
134 const ICLTensor *output_multipliers, const ICLTensor *output_shifts)
Gian Marco Iodice4b908652018-10-18 10:21:02 +0100135{
Manuel Bottini4c6bd512020-04-08 10:15:51 +0100136 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);
137}
138
Manuel Bottini679fc962020-04-21 16:08:53 +0100139void 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 +0100140 const ICLTensor *bias, ICLTensor *output,
141 int32_t k, int32_t a_offset, int32_t b_offset, const GEMMLowpOutputStageInfo &output_stage,
142 const ICLTensor *output_multipliers, const ICLTensor *output_shifts)
143{
Gian Marco Iodice4b908652018-10-18 10:21:02 +0100144 // Perform validate step
Vidhya Sudhan Loganathan951b8a42019-11-04 14:42:08 +0000145 ARM_COMPUTE_ERROR_ON_NULLPTR(mm_result, output, output_multipliers, output_shifts);
Gian Marco Iodice4b908652018-10-18 10:21:02 +0100146 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(mm_result->info(),
147 vector_sum_col != nullptr ? vector_sum_col->info() : nullptr,
148 vector_sum_row != nullptr ? vector_sum_row->info() : nullptr,
149 bias != nullptr ? bias->info() : nullptr,
150 output->info(),
Vidhya Sudhan Loganathan951b8a42019-11-04 14:42:08 +0000151 a_offset, b_offset, output_stage,
152 output_multipliers->info(), output_shifts->info())); // NOLINT
Gian Marco Iodice4b908652018-10-18 10:21:02 +0100153
Michele Di Giorgio0bfe39f2020-10-21 11:36:21 +0100154 auto padding_info = get_padding_info({ mm_result, vector_sum_col, vector_sum_row, bias, output, output_multipliers, output_shifts });
155
Gian Marco Iodice4b908652018-10-18 10:21:02 +0100156 const int min = output_stage.gemmlowp_min_bound;
157 const int max = output_stage.gemmlowp_max_bound;
158
Vidhya Sudhan Loganathan951b8a42019-11-04 14:42:08 +0000159 _vector_sum_col = vector_sum_col;
160 _vector_sum_row = vector_sum_row;
161 _mm_result = mm_result;
162 _bias = bias;
163 _output = output;
164 _output_multipliers = output_multipliers;
165 _output_shifts = output_shifts;
166 _is_quantized_per_channel = output_stage.is_quantized_per_channel;
Gian Marco Iodice4b908652018-10-18 10:21:02 +0100167
168 // Check if input is a 3D reinterpretation
169 const bool reinterpret_as_3d = vector_sum_row != nullptr
170 && mm_result->info()->num_dimensions() > 1
171 && mm_result->info()->tensor_shape().y() != vector_sum_row->info()->tensor_shape().x();
172
Michele Di Giorgio0bfe39f2020-10-21 11:36:21 +0100173 // Auto initialize the output
174 auto_init_if_empty(*output->info(), mm_result->info()->clone()->set_data_type(output_stage.output_data_type));
175
176 const unsigned int num_elems_processed_per_iteration = adjust_vec_size(4, mm_result->info()->dimension(0));
177
Gian Marco Iodice4b908652018-10-18 10:21:02 +0100178 // Set the arguments to pass at compile time
179 CLBuildOptions build_opts;
Michele Di Giorgio0bfe39f2020-10-21 11:36:21 +0100180 build_opts.add_option("-DVEC_SIZE=" + support::cpp11::to_string(num_elems_processed_per_iteration));
181 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 +0100182
183 // If a_offset == 0, vector_sum_col can be a nullptr
184 if(a_offset != 0)
185 {
186 build_opts.add_option("-DA_OFFSET=" + support::cpp11::to_string(a_offset));
187 build_opts.add_option_if(vector_sum_col->info()->tensor_shape().num_dimensions() > 1, "-DSUM_COL_HAS_BATCHES");
188 }
189 // If b_offset == 0, vector_sum_row can be a nullptr
190 build_opts.add_option_if(b_offset != 0, "-DB_OFFSET=" + support::cpp11::to_string(b_offset));
191 build_opts.add_option("-DK_OFFSET=" + support::cpp11::to_string(a_offset * b_offset * k));
192 build_opts.add_option_if(reinterpret_as_3d, "-DHEIGHT_INPUT3D=" + support::cpp11::to_string(mm_result->info()->dimension(1)));
193 build_opts.add_option_if(reinterpret_as_3d, "-DDEPTH_INPUT3D=" + support::cpp11::to_string(mm_result->info()->dimension(2)));
194 build_opts.add_option_if(bias != nullptr, "-DADD_BIAS");
195 build_opts.add_option("-DRESULT_OFFSET=" + support::cpp11::to_string(output_stage.gemmlowp_offset));
Vidhya Sudhan Loganathan951b8a42019-11-04 14:42:08 +0000196 build_opts.add_option("-DRESULT_MULTIPLIER=" + support::cpp11::to_string(output_stage.gemmlowp_multipliers[0]));
197 build_opts.add_option("-DRESULT_SHIFT=" + support::cpp11::to_string(output_stage.gemmlowp_shifts[0]));
198 build_opts.add_option_if(_is_quantized_per_channel, "-DPER_CHANNEL_QUANTIZATION");
Manuel Bottini959c26d2019-12-02 16:22:35 +0000199 build_opts.add_option("-DOUTPUT_DATA_TYPE=" + get_cl_type_from_data_type(output->info()->data_type()));
200
201 PixelValue min_val{};
202 PixelValue max_val{};
203 std::tie(min_val, max_val) = get_min_max(output->info()->data_type());
Giorgio Arena1856ff72020-02-07 13:46:45 +0000204 build_opts.add_option_if((min > min_val.get<int32_t>()), "-DMIN_BOUND=" + support::cpp11::to_string(min));
205 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 +0100206
207 std::string kernel_name("gemmlowp_offset_contribution");
Manuel Bottini959c26d2019-12-02 16:22:35 +0000208 kernel_name += "_" + string_from_gemmlowp_output_stage(output_stage.type);
Gian Marco Iodice4b908652018-10-18 10:21:02 +0100209
210 // Create kernel
Manuel Bottini4c6bd512020-04-08 10:15:51 +0100211 _kernel = create_kernel(compile_context, kernel_name, build_opts.options());
Gian Marco Iodice4b908652018-10-18 10:21:02 +0100212
213 // Configure kernel window
Michele Di Giorgio0bfe39f2020-10-21 11:36:21 +0100214 Window win = calculate_max_window(*mm_result->info(), Steps(num_elems_processed_per_iteration));
215 ICLKernel::configure_internal(win);
Gian Marco Iodice4b908652018-10-18 10:21:02 +0100216
217 // Set config_id for enabling LWS tuning
218 _config_id = kernel_name + "_";
219 _config_id += support::cpp11::to_string(mm_result->info()->dimension(0));
220 _config_id += "_";
221 _config_id += support::cpp11::to_string(mm_result->info()->dimension(1));
222 _config_id += "_";
223 _config_id += support::cpp11::to_string(mm_result->info()->dimension(2));
Michele Di Giorgio0bfe39f2020-10-21 11:36:21 +0100224
225 ARM_COMPUTE_ERROR_ON(has_padding_changed(padding_info));
Gian Marco Iodice4b908652018-10-18 10:21:02 +0100226}
227
228Status 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 +0000229 const ITensorInfo *output, int32_t a_offset, int32_t b_offset, const GEMMLowpOutputStageInfo &output_stage,
230 const ITensorInfo *output_multipliers, const ITensorInfo *output_shifts)
Gian Marco Iodice4b908652018-10-18 10:21:02 +0100231{
Vidhya Sudhan Loganathan951b8a42019-11-04 14:42:08 +0000232 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 +0100233 return Status{};
234}
235
236void CLGEMMLowpOffsetContributionOutputStageKernel::run(const Window &window, cl::CommandQueue &queue)
237{
238 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
239 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(ICLKernel::window(), window);
240
241 Window collapsed = window.collapse_if_possible(ICLKernel::window(), Window::DimZ);
242 Window slice = collapsed.first_slice_window_3D();
243
244 // Set window for vector_sum_col
245 Window win_vector_sum_col = slice;
246 win_vector_sum_col.set(Window::DimY, Window::Dimension(0, 0, 0));
247 win_vector_sum_col.set(Window::DimZ, Window::Dimension(0, 0, 0));
248
249 // Set window for vector_sum_row
250 Window win_vector_sum_row = slice;
251 win_vector_sum_row.set(Window::DimX, Window::Dimension(0, 0, 0));
252 win_vector_sum_row.set(Window::DimY, Window::Dimension(0, 0, 0));
253 win_vector_sum_col.set(Window::DimZ, Window::Dimension(0, 0, 0));
254
255 Window biases_slice = slice;
256 biases_slice.set(Window::DimY, Window::Dimension(0, 1, 1));
257 biases_slice.set(Window::DimZ, Window::Dimension(0, 1, 1));
258
259 do
260 {
261 unsigned int idx = 0;
262 add_3D_tensor_argument(idx, _mm_result, slice);
Michalis Spyroue1651a52019-07-11 15:00:49 +0100263 add_2D_tensor_argument_if((_vector_sum_col != nullptr), idx, _vector_sum_col, win_vector_sum_col);
264 add_2D_tensor_argument_if((_vector_sum_row != nullptr), idx, _vector_sum_row, win_vector_sum_row);
265 add_1D_tensor_argument_if((_bias != nullptr), idx, _bias, biases_slice);
Gian Marco Iodice4b908652018-10-18 10:21:02 +0100266 add_3D_tensor_argument(idx, _output, slice);
Vidhya Sudhan Loganathan951b8a42019-11-04 14:42:08 +0000267 add_1D_tensor_argument_if(_is_quantized_per_channel, idx, _output_multipliers, biases_slice);
268 add_1D_tensor_argument_if(_is_quantized_per_channel, idx, _output_shifts, biases_slice);
Gian Marco Iodice4b908652018-10-18 10:21:02 +0100269 enqueue(queue, *this, slice, lws_hint());
270 }
271 while(collapsed.slide_window_slice_3D(slice));
272}
Vidhya Sudhan Loganathan951b8a42019-11-04 14:42:08 +0000273} // namespace arm_compute