blob: 5550003f33fcdaa19981d31bdc0607cf693bc8c2 [file] [log] [blame]
Gian Marco Iodice4b908652018-10-18 10:21:02 +01001/*
Manuel Bottini959c26d2019-12-02 16:22:35 +00002 * 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
26#include "arm_compute/core/AccessWindowStatic.h"
Manuel Bottini959c26d2019-12-02 16:22:35 +000027#include "arm_compute/core/CL/CLHelpers.h"
Gian Marco Iodice4b908652018-10-18 10:21:02 +010028#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/TensorInfo.h"
32#include "arm_compute/core/Types.h"
33#include "arm_compute/core/Utils.h"
34#include "arm_compute/core/Validate.h"
35#include "arm_compute/core/Window.h"
36#include "support/ToolchainSupport.h"
37
38#include <cstddef>
39#include <cstdint>
40
Gian Marco Iodice4b908652018-10-18 10:21:02 +010041namespace arm_compute
42{
Gian Marco Iodice4b908652018-10-18 10:21:02 +010043namespace
44{
45Status 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 +000046 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 +010047{
48 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(mm_result, 1, DataType::S32);
Gian Marco Iodice4b908652018-10-18 10:21:02 +010049
50 if(bias != nullptr)
51 {
52 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(bias, 1, DataType::S32);
53 ARM_COMPUTE_RETURN_ERROR_ON(bias->num_dimensions() > 1);
54 ARM_COMPUTE_RETURN_ERROR_ON(mm_result->dimension(0) != bias->dimension(0));
55 }
56
Vidhya Sudhan Loganathan951b8a42019-11-04 14:42:08 +000057 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(output_multipliers, 1, DataType::S32);
58 ARM_COMPUTE_RETURN_ERROR_ON(output_multipliers->num_dimensions() > 1);
59 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(output_shifts, 1, DataType::S32);
60 ARM_COMPUTE_RETURN_ERROR_ON(output_shifts->num_dimensions() > 1);
61 if(output_stage.is_quantized_per_channel)
62 {
63 ARM_COMPUTE_RETURN_ERROR_ON(mm_result->dimension(0) != output_shifts->dimension(0));
64 ARM_COMPUTE_RETURN_ERROR_ON(mm_result->dimension(0) != output_multipliers->dimension(0));
65 }
66
Gian Marco Iodice4b908652018-10-18 10:21:02 +010067 // If a_offset == 0, vector_sum_col can be a nullptr
68 if(a_offset != 0)
69 {
70 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(vector_sum_col, 1, DataType::S32);
71 ARM_COMPUTE_RETURN_ERROR_ON(vector_sum_col->dimension(0) != mm_result->dimension(0));
72 }
73
74 // If b_offset == 0, vector_sum_row can be a nullptr
75 if(b_offset != 0)
76 {
77 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(vector_sum_row, 1, DataType::S32);
78
79 // Check if input is a 3D reinterpretation
80 const bool reinterpret_as_3d = mm_result->num_dimensions() > 1 && mm_result->tensor_shape().y() != vector_sum_row->tensor_shape().x();
81
82 // Validate input
83 ARM_COMPUTE_RETURN_ERROR_ON(reinterpret_as_3d && vector_sum_row->dimension(0) != (mm_result->dimension(1) * mm_result->dimension(2)));
84 ARM_COMPUTE_RETURN_ERROR_ON(!reinterpret_as_3d && vector_sum_row->dimension(0) != mm_result->dimension(1));
85
86 TensorShape output_shape = mm_result->tensor_shape();
87 if(output_shape.num_dimensions() > 1)
88 {
89 const unsigned int output_batch_idx = reinterpret_as_3d ? 3 : 2;
90
91 TensorShape vector_sum_row_shape = vector_sum_row->tensor_shape();
92 vector_sum_row_shape.collapse_from(1);
93 output_shape.collapse_from(output_batch_idx);
94
95 ARM_COMPUTE_RETURN_ERROR_ON_MSG(vector_sum_row_shape[1] != output_shape[output_batch_idx],
96 "mm_result tensor must have the same number of batches of output tensor");
97
98 if(a_offset != 0)
99 {
100 TensorShape vector_sum_col_shape = vector_sum_col->tensor_shape();
101 vector_sum_col_shape.collapse_from(1);
102
103 ARM_COMPUTE_RETURN_ERROR_ON_MSG(vector_sum_col_shape[1] != 1 && vector_sum_col_shape[1] != vector_sum_row_shape[1],
104 "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");
105 }
106 }
107 }
108
Manuel Bottini959c26d2019-12-02 16:22:35 +0000109 ARM_COMPUTE_RETURN_ERROR_ON(output_stage.type == GEMMLowpOutputStageType::NONE);
110 // Checks performed when output is configured
111 if((output != nullptr) && (output->total_size() != 0))
Gian Marco Iodice4b908652018-10-18 10:21:02 +0100112 {
Manuel Bottini959c26d2019-12-02 16:22:35 +0000113 ARM_COMPUTE_RETURN_ERROR_ON(output_stage.output_data_type != output->data_type());
114 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 +0100115 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_SHAPES(mm_result, output);
Manuel Bottini959c26d2019-12-02 16:22:35 +0000116 PixelValue min_val{};
117 PixelValue max_val{};
118 std::tie(min_val, max_val) = get_min_max(output->data_type());
119 ARM_COMPUTE_RETURN_ERROR_ON(output_stage.gemmlowp_max_bound > max_val.get<int32_t>());
120 ARM_COMPUTE_RETURN_ERROR_ON(output_stage.gemmlowp_min_bound < min_val.get<int32_t>() || output_stage.gemmlowp_min_bound > output_stage.gemmlowp_max_bound);
121 }
122 else
123 {
124 // Output will be configured as depending on the chosen output data type in the output stage
125 PixelValue min_val{};
126 PixelValue max_val{};
127 std::tie(min_val, max_val) = get_min_max(output_stage.output_data_type);
128 ARM_COMPUTE_RETURN_ERROR_ON(output_stage.gemmlowp_max_bound > max_val.get<int32_t>());
129 ARM_COMPUTE_RETURN_ERROR_ON(output_stage.gemmlowp_min_bound < min_val.get<int32_t>() || output_stage.gemmlowp_min_bound > output_stage.gemmlowp_max_bound);
Gian Marco Iodice4b908652018-10-18 10:21:02 +0100130 }
131
Manuel Bottini959c26d2019-12-02 16:22:35 +0000132 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 +0000133
Gian Marco Iodice4b908652018-10-18 10:21:02 +0100134 return Status{};
135}
136
137std::pair<Status, Window> validate_and_configure_window(ITensorInfo *mm_result, ITensorInfo *vector_sum_col, ITensorInfo *vector_sum_row, ITensorInfo *bias, ITensorInfo *output,
Manuel Bottini959c26d2019-12-02 16:22:35 +0000138 int32_t a_offset, int32_t b_offset, const GEMMLowpOutputStageInfo &output_stage, ITensorInfo *output_multipliers, ITensorInfo *output_shifts)
Gian Marco Iodice4b908652018-10-18 10:21:02 +0100139{
140 constexpr unsigned int num_elems_processed_per_iteration = 4;
141 bool window_changed = false;
142
143 // Auto initialize the output
Manuel Bottini959c26d2019-12-02 16:22:35 +0000144 auto_init_if_empty(*output, mm_result->clone()->set_data_type(output_stage.output_data_type));
Gian Marco Iodice4b908652018-10-18 10:21:02 +0100145
146 // Configure kernel window
147 Window win = calculate_max_window(*mm_result, Steps(num_elems_processed_per_iteration));
148
149 AccessWindowHorizontal mm_result_access(mm_result, 0, num_elems_processed_per_iteration);
150 window_changed = window_changed || update_window_and_padding(win, mm_result_access);
151
152 AccessWindowHorizontal output_access(output, 0, num_elems_processed_per_iteration);
153 window_changed = window_changed || update_window_and_padding(win, output_access);
154
155 if(a_offset != 0)
156 {
157 AccessWindowHorizontal vector_sum_col_access(vector_sum_col, 0, num_elems_processed_per_iteration);
158 window_changed = window_changed || update_window_and_padding(win, vector_sum_col_access);
159 }
160 if(b_offset != 0)
161 {
162 AccessWindowStatic vector_sum_row_access(vector_sum_row, 0, 0, vector_sum_row->dimension(0), 0); // NOLINT
163 window_changed = window_changed || update_window_and_padding(win, vector_sum_row_access);
164 }
165
166 if(bias != nullptr)
167 {
168 AccessWindowStatic bias_access(bias, 0, 0, ceil_to_multiple(bias->dimension(0), num_elems_processed_per_iteration), bias->tensor_shape()[1]);
169 window_changed = window_changed || update_window_and_padding(win, bias_access);
170 }
171
Vidhya Sudhan Loganathan951b8a42019-11-04 14:42:08 +0000172 if(output_multipliers->dimension(0) > 1)
173 {
174 AccessWindowHorizontal output_multipliers_access(output_multipliers, 0, num_elems_processed_per_iteration);
175 AccessWindowHorizontal output_shifts_access(output_shifts, 0, num_elems_processed_per_iteration);
176 window_changed = window_changed || update_window_and_padding(win, output_multipliers_access, output_shifts_access);
177 }
178
Gian Marco Iodice4b908652018-10-18 10:21:02 +0100179 Status err = (window_changed) ? ARM_COMPUTE_CREATE_ERROR(ErrorCode::RUNTIME_ERROR, "Insufficient Padding!") : Status{};
180 return std::make_pair(err, win);
181}
182} // namespace
183
184CLGEMMLowpOffsetContributionOutputStageKernel::CLGEMMLowpOffsetContributionOutputStageKernel()
Vidhya Sudhan Loganathan951b8a42019-11-04 14:42:08 +0000185 : _mm_result(nullptr),
186 _vector_sum_col(nullptr),
187 _vector_sum_row(nullptr),
188 _bias(nullptr),
189 _output(nullptr),
190 _output_multipliers(nullptr),
191 _output_shifts(nullptr),
192 _is_quantized_per_channel(false)
Gian Marco Iodice4b908652018-10-18 10:21:02 +0100193{
194}
195
196void 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 +0000197 int32_t k, int32_t a_offset, int32_t b_offset, const GEMMLowpOutputStageInfo &output_stage,
198 const ICLTensor *output_multipliers, const ICLTensor *output_shifts)
Gian Marco Iodice4b908652018-10-18 10:21:02 +0100199{
200 // Perform validate step
Vidhya Sudhan Loganathan951b8a42019-11-04 14:42:08 +0000201 ARM_COMPUTE_ERROR_ON_NULLPTR(mm_result, output, output_multipliers, output_shifts);
Gian Marco Iodice4b908652018-10-18 10:21:02 +0100202 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(mm_result->info(),
203 vector_sum_col != nullptr ? vector_sum_col->info() : nullptr,
204 vector_sum_row != nullptr ? vector_sum_row->info() : nullptr,
205 bias != nullptr ? bias->info() : nullptr,
206 output->info(),
Vidhya Sudhan Loganathan951b8a42019-11-04 14:42:08 +0000207 a_offset, b_offset, output_stage,
208 output_multipliers->info(), output_shifts->info())); // NOLINT
Gian Marco Iodice4b908652018-10-18 10:21:02 +0100209
210 const int min = output_stage.gemmlowp_min_bound;
211 const int max = output_stage.gemmlowp_max_bound;
212
Vidhya Sudhan Loganathan951b8a42019-11-04 14:42:08 +0000213 _vector_sum_col = vector_sum_col;
214 _vector_sum_row = vector_sum_row;
215 _mm_result = mm_result;
216 _bias = bias;
217 _output = output;
218 _output_multipliers = output_multipliers;
219 _output_shifts = output_shifts;
220 _is_quantized_per_channel = output_stage.is_quantized_per_channel;
Gian Marco Iodice4b908652018-10-18 10:21:02 +0100221
222 // Check if input is a 3D reinterpretation
223 const bool reinterpret_as_3d = vector_sum_row != nullptr
224 && mm_result->info()->num_dimensions() > 1
225 && mm_result->info()->tensor_shape().y() != vector_sum_row->info()->tensor_shape().x();
226
227 // Set the arguments to pass at compile time
228 CLBuildOptions build_opts;
229
230 // If a_offset == 0, vector_sum_col can be a nullptr
231 if(a_offset != 0)
232 {
233 build_opts.add_option("-DA_OFFSET=" + support::cpp11::to_string(a_offset));
234 build_opts.add_option_if(vector_sum_col->info()->tensor_shape().num_dimensions() > 1, "-DSUM_COL_HAS_BATCHES");
235 }
236 // If b_offset == 0, vector_sum_row can be a nullptr
237 build_opts.add_option_if(b_offset != 0, "-DB_OFFSET=" + support::cpp11::to_string(b_offset));
238 build_opts.add_option("-DK_OFFSET=" + support::cpp11::to_string(a_offset * b_offset * k));
239 build_opts.add_option_if(reinterpret_as_3d, "-DHEIGHT_INPUT3D=" + support::cpp11::to_string(mm_result->info()->dimension(1)));
240 build_opts.add_option_if(reinterpret_as_3d, "-DDEPTH_INPUT3D=" + support::cpp11::to_string(mm_result->info()->dimension(2)));
241 build_opts.add_option_if(bias != nullptr, "-DADD_BIAS");
242 build_opts.add_option("-DRESULT_OFFSET=" + support::cpp11::to_string(output_stage.gemmlowp_offset));
Vidhya Sudhan Loganathan951b8a42019-11-04 14:42:08 +0000243 build_opts.add_option("-DRESULT_MULTIPLIER=" + support::cpp11::to_string(output_stage.gemmlowp_multipliers[0]));
244 build_opts.add_option("-DRESULT_SHIFT=" + support::cpp11::to_string(output_stage.gemmlowp_shifts[0]));
245 build_opts.add_option_if(_is_quantized_per_channel, "-DPER_CHANNEL_QUANTIZATION");
Manuel Bottini959c26d2019-12-02 16:22:35 +0000246 build_opts.add_option("-DOUTPUT_DATA_TYPE=" + get_cl_type_from_data_type(output->info()->data_type()));
247
248 PixelValue min_val{};
249 PixelValue max_val{};
250 std::tie(min_val, max_val) = get_min_max(output->info()->data_type());
251 build_opts.add_option_if((min != min_val.get<int32_t>()) && (min != max), "-DMIN_BOUND=" + support::cpp11::to_string(min));
252 build_opts.add_option_if((max != max_val.get<int32_t>()) && (min != max), "-DMAX_BOUND=" + support::cpp11::to_string(max));
Gian Marco Iodice4b908652018-10-18 10:21:02 +0100253
254 std::string kernel_name("gemmlowp_offset_contribution");
Manuel Bottini959c26d2019-12-02 16:22:35 +0000255 kernel_name += "_" + string_from_gemmlowp_output_stage(output_stage.type);
Gian Marco Iodice4b908652018-10-18 10:21:02 +0100256
257 // Create kernel
258 _kernel = static_cast<cl::Kernel>(CLKernelLibrary::get().create_kernel(kernel_name, build_opts.options()));
259
260 // Configure kernel window
261 auto win_config = validate_and_configure_window(mm_result->info(),
262 vector_sum_col != nullptr ? vector_sum_col->info() : nullptr,
263 vector_sum_row != nullptr ? vector_sum_row->info() : nullptr,
264 bias != nullptr ? bias->info() : nullptr,
265 output->info(),
Manuel Bottini959c26d2019-12-02 16:22:35 +0000266 a_offset, b_offset, output_stage,
Vidhya Sudhan Loganathan951b8a42019-11-04 14:42:08 +0000267 output_multipliers->info(), output_shifts->info()); // NOLINT
Gian Marco Iodice4b908652018-10-18 10:21:02 +0100268 ARM_COMPUTE_ERROR_THROW_ON(win_config.first);
269 ICLKernel::configure_internal(win_config.second);
270
271 // Set config_id for enabling LWS tuning
272 _config_id = kernel_name + "_";
273 _config_id += support::cpp11::to_string(mm_result->info()->dimension(0));
274 _config_id += "_";
275 _config_id += support::cpp11::to_string(mm_result->info()->dimension(1));
276 _config_id += "_";
277 _config_id += support::cpp11::to_string(mm_result->info()->dimension(2));
278}
279
280Status 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 +0000281 const ITensorInfo *output, int32_t a_offset, int32_t b_offset, const GEMMLowpOutputStageInfo &output_stage,
282 const ITensorInfo *output_multipliers, const ITensorInfo *output_shifts)
Gian Marco Iodice4b908652018-10-18 10:21:02 +0100283{
Vidhya Sudhan Loganathan951b8a42019-11-04 14:42:08 +0000284 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 +0100285 ARM_COMPUTE_RETURN_ON_ERROR(validate_and_configure_window(mm_result->clone().get(),
286 vector_sum_col != nullptr ? vector_sum_col->clone().get() : nullptr,
287 vector_sum_row != nullptr ? vector_sum_row->clone().get() : nullptr,
288 bias != nullptr ? bias->clone().get() : nullptr,
289 output->clone().get(),
Manuel Bottini959c26d2019-12-02 16:22:35 +0000290 a_offset, b_offset, output_stage,
Vidhya Sudhan Loganathan951b8a42019-11-04 14:42:08 +0000291 output_multipliers->clone().get(), output_shifts->clone().get())
Gian Marco Iodice4b908652018-10-18 10:21:02 +0100292 .first); // NOLINT
293
294 return Status{};
295}
296
297void CLGEMMLowpOffsetContributionOutputStageKernel::run(const Window &window, cl::CommandQueue &queue)
298{
299 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
300 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(ICLKernel::window(), window);
301
302 Window collapsed = window.collapse_if_possible(ICLKernel::window(), Window::DimZ);
303 Window slice = collapsed.first_slice_window_3D();
304
305 // Set window for vector_sum_col
306 Window win_vector_sum_col = slice;
307 win_vector_sum_col.set(Window::DimY, Window::Dimension(0, 0, 0));
308 win_vector_sum_col.set(Window::DimZ, Window::Dimension(0, 0, 0));
309
310 // Set window for vector_sum_row
311 Window win_vector_sum_row = slice;
312 win_vector_sum_row.set(Window::DimX, Window::Dimension(0, 0, 0));
313 win_vector_sum_row.set(Window::DimY, Window::Dimension(0, 0, 0));
314 win_vector_sum_col.set(Window::DimZ, Window::Dimension(0, 0, 0));
315
316 Window biases_slice = slice;
317 biases_slice.set(Window::DimY, Window::Dimension(0, 1, 1));
318 biases_slice.set(Window::DimZ, Window::Dimension(0, 1, 1));
319
320 do
321 {
322 unsigned int idx = 0;
323 add_3D_tensor_argument(idx, _mm_result, slice);
Michalis Spyroue1651a52019-07-11 15:00:49 +0100324 add_2D_tensor_argument_if((_vector_sum_col != nullptr), idx, _vector_sum_col, win_vector_sum_col);
325 add_2D_tensor_argument_if((_vector_sum_row != nullptr), idx, _vector_sum_row, win_vector_sum_row);
326 add_1D_tensor_argument_if((_bias != nullptr), idx, _bias, biases_slice);
Gian Marco Iodice4b908652018-10-18 10:21:02 +0100327 add_3D_tensor_argument(idx, _output, slice);
Vidhya Sudhan Loganathan951b8a42019-11-04 14:42:08 +0000328 add_1D_tensor_argument_if(_is_quantized_per_channel, idx, _output_multipliers, biases_slice);
329 add_1D_tensor_argument_if(_is_quantized_per_channel, idx, _output_shifts, biases_slice);
Gian Marco Iodice4b908652018-10-18 10:21:02 +0100330 enqueue(queue, *this, slice, lws_hint());
331 }
332 while(collapsed.slide_window_slice_3D(slice));
333}
Vidhya Sudhan Loganathan951b8a42019-11-04 14:42:08 +0000334} // namespace arm_compute