blob: 4770329b7d2bd2b87cebe1dc27984b9590d1e5de [file] [log] [blame]
Gian Marco Iodice62251f72019-03-11 16:07:12 +00001/*
Michele Di Giorgiod9eaf612020-07-08 11:12:57 +01002 * Copyright (c) 2019-2020 Arm Limited.
Gian Marco Iodice62251f72019-03-11 16:07:12 +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 */
24#include "arm_compute/core/CL/kernels/CLGEMMLowpMatrixMultiplyReshapedOnlyRHSKernel.h"
25
26#include "arm_compute/core/AccessWindowStatic.h"
27#include "arm_compute/core/CL/CLHelpers.h"
28#include "arm_compute/core/CL/CLKernelLibrary.h"
29#include "arm_compute/core/CL/ICLTensor.h"
30#include "arm_compute/core/CL/OpenCL.h"
31#include "arm_compute/core/Error.h"
32#include "arm_compute/core/Helpers.h"
33#include "arm_compute/core/TensorInfo.h"
34#include "arm_compute/core/Types.h"
35#include "arm_compute/core/Utils.h"
36#include "arm_compute/core/Validate.h"
37#include "arm_compute/core/Window.h"
38#include "arm_compute/core/utils/misc/ShapeCalculator.h"
Matthew Bentham758b5ba2020-03-05 23:37:48 +000039#include "support/StringSupport.h"
Gian Marco Iodice62251f72019-03-11 16:07:12 +000040
41#include <cstddef>
42#include <cstdint>
43#include <tuple>
44
45using namespace arm_compute::misc::shape_calculator;
46
47namespace arm_compute
48{
49namespace
50{
51using ElementsProcessed = Steps;
52
Michele Di Giorgiob54ba282020-01-14 15:31:55 +000053Status validate_arguments(const ITensorInfo *input0, const ITensorInfo *input1, const ITensorInfo *output, const GEMMKernelInfo &gemm_info,
54 const ITensorInfo *vector_sum_col, const ITensorInfo *vector_sum_row, const ITensorInfo *bias,
55 const ITensorInfo *output_multipliers, const ITensorInfo *output_shifts)
Gian Marco Iodice62251f72019-03-11 16:07:12 +000056{
57 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(input0, input1, output);
Michele Di Giorgiof9179d32019-11-27 16:17:30 +000058 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input0, 1, DataType::QASYMM8, DataType::QASYMM8_SIGNED);
Michele Di Giorgio1c1b3aa2020-04-02 17:35:42 +010059 if(input0->data_type() == DataType::QASYMM8)
60 {
61 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input0, input1);
62 }
63 else
64 {
morgolockd13931d2020-06-23 15:49:35 +010065 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input1, 1, DataType::QASYMM8, DataType::QSYMM8, DataType::QASYMM8_SIGNED, DataType::QSYMM8_PER_CHANNEL);
Michele Di Giorgio1c1b3aa2020-04-02 17:35:42 +010066 }
Gian Marco Iodice62251f72019-03-11 16:07:12 +000067 ARM_COMPUTE_RETURN_ERROR_ON_MSG(input0->num_dimensions() > 4, "The number of dimensions for the LHS matrix must be <= 4");
68 ARM_COMPUTE_RETURN_ERROR_ON_MSG(input1->num_dimensions() > 3, "The number of dimensions for the RHS matrix must be <= 3");
Michele Di Giorgiob54ba282020-01-14 15:31:55 +000069
70 const GEMMRHSMatrixInfo rhs_info = gemm_info.rhs_info;
71 const GEMMLHSMatrixInfo lhs_info = gemm_info.lhs_info;
72 const GEMMLowpOutputStageInfo output_stage = gemm_info.output_stage;
73
Gian Marco Iodice62251f72019-03-11 16:07:12 +000074 ARM_COMPUTE_RETURN_ERROR_ON_MSG((((rhs_info.k0 & (rhs_info.k0 - 1)) && rhs_info.k0 != 3) || (rhs_info.k0 > 16)), "Only 2,3,4,8,16 are supported for k0");
75 ARM_COMPUTE_RETURN_ERROR_ON(lhs_info.m0 < 1 || lhs_info.m0 > 8);
76 ARM_COMPUTE_RETURN_ERROR_ON_MSG((((rhs_info.n0 & (rhs_info.n0 - 1)) && rhs_info.n0 != 3) || rhs_info.n0 > 16), "Only 2,3,4,8,16 are supported for n0");
Gian Marco Iodicedd717c32020-05-28 10:22:03 +010077 ARM_COMPUTE_RETURN_ERROR_ON_MSG(rhs_info.export_to_cl_image, "Export to CLImage not supported for quantized GEMM");
Gian Marco Iodice62251f72019-03-11 16:07:12 +000078
Michele Di Giorgiob54ba282020-01-14 15:31:55 +000079 const int m = gemm_info.m;
80 const int n = gemm_info.n;
81 const int k = gemm_info.k;
Gian Marco Iodice62251f72019-03-11 16:07:12 +000082
Gian Marco Iodice62251f72019-03-11 16:07:12 +000083 TensorShape tensor_shape1{ input1->tensor_shape() };
84 tensor_shape1.set(0, n);
85 tensor_shape1.set(1, k);
86
Gian Marco Iodice86cfffe2019-04-02 11:02:20 +010087 const TensorInfo tensor_info1 = input1->clone()->set_tensor_shape(tensor_shape1);
Gian Marco Iodice62251f72019-03-11 16:07:12 +000088 const TensorInfo tensor_info_reshaped1 = input1->clone()->set_tensor_shape(compute_rhs_reshaped_shape(tensor_info1, rhs_info));
89
Gian Marco Iodice86cfffe2019-04-02 11:02:20 +010090 ARM_COMPUTE_RETURN_ERROR_ON(input0->dimension(0) != static_cast<unsigned int>(k));
Michele Di Giorgiob54ba282020-01-14 15:31:55 +000091 if(gemm_info.reinterpret_input_as_3d)
Gian Marco Iodice86cfffe2019-04-02 11:02:20 +010092 {
93 ARM_COMPUTE_RETURN_ERROR_ON(input0->dimension(1) * input0->dimension(2) != static_cast<unsigned int>(m));
94 }
95 else
96 {
97 ARM_COMPUTE_RETURN_ERROR_ON(input0->dimension(1) != static_cast<unsigned int>(m));
98 }
Gian Marco Iodice62251f72019-03-11 16:07:12 +000099 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_SHAPES(input1, &tensor_info_reshaped1);
100
Michele Di Giorgiob54ba282020-01-14 15:31:55 +0000101 const TensorShape expected_output_shape = compute_mm_shape(*input0, *input1, gemm_info);
Gian Marco Iodice62251f72019-03-11 16:07:12 +0000102 if(output->total_size() != 0)
103 {
Michele Di Giorgiob54ba282020-01-14 15:31:55 +0000104 const TensorInfo tensor_info_output = output->clone()->set_tensor_shape(expected_output_shape);
Gian Marco Iodice62251f72019-03-11 16:07:12 +0000105 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_SHAPES(output, &tensor_info_output);
Michele Di Giorgiob54ba282020-01-14 15:31:55 +0000106 if(output_stage.type == GEMMLowpOutputStageType::NONE)
107 {
108 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(output, 1, DataType::S32);
109 }
110 else
111 {
112 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input0, output);
113 }
Gian Marco Iodice62251f72019-03-11 16:07:12 +0000114 }
115
Michele Di Giorgiob54ba282020-01-14 15:31:55 +0000116 if(bias != nullptr)
117 {
118 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(bias, 1, DataType::S32);
119 ARM_COMPUTE_RETURN_ERROR_ON(bias->num_dimensions() > 1);
120 ARM_COMPUTE_RETURN_ERROR_ON(expected_output_shape[0] != bias->dimension(0));
121 }
122
123 ARM_COMPUTE_RETURN_ERROR_ON_MSG((output_stage.type == GEMMLowpOutputStageType::QUANTIZE_DOWN) || (output_stage.type == GEMMLowpOutputStageType::QUANTIZE_DOWN_FLOAT),
124 "Only GEMMLowpOutputStageType::QUANTIZE_DOWN_FIXEDPOINT is supported");
125
126 // Checks performed if the output stage needs to be fused
127 if(output_stage.type == GEMMLowpOutputStageType::QUANTIZE_DOWN_FIXEDPOINT)
128 {
129 // If a_offset == 0, vector_sum_col can be a nullptr
130 if(gemm_info.a_offset != 0)
131 {
132 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(vector_sum_col, 1, DataType::S32);
133 ARM_COMPUTE_RETURN_ERROR_ON(vector_sum_col->dimension(0) != expected_output_shape[0]);
134 }
135
136 // If b_offset == 0, vector_sum_row can be a nullptr
137 if(gemm_info.b_offset != 0)
138 {
139 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(vector_sum_row, 1, DataType::S32);
140
141 // Check if mm result is a 3D reinterpretation
142 const bool reinterpret_as_3d = expected_output_shape.num_dimensions() > 1 && expected_output_shape.y() != vector_sum_row->tensor_shape().x();
143
144 // Validate input
145 ARM_COMPUTE_RETURN_ERROR_ON(reinterpret_as_3d && vector_sum_row->dimension(0) != (expected_output_shape[1] * expected_output_shape[2]));
146 ARM_COMPUTE_RETURN_ERROR_ON(!reinterpret_as_3d && vector_sum_row->dimension(0) != expected_output_shape[1]);
147
148 if(expected_output_shape.num_dimensions() > 1)
149 {
150 const unsigned int output_batch_idx = reinterpret_as_3d ? 3 : 2;
151
152 TensorShape vector_sum_row_shape = vector_sum_row->tensor_shape();
153 vector_sum_row_shape.collapse_from(1);
154 TensorShape collapsed_output_shape(expected_output_shape);
155 collapsed_output_shape.collapse_from(output_batch_idx);
156
157 ARM_COMPUTE_RETURN_ERROR_ON_MSG(vector_sum_row_shape[1] != collapsed_output_shape[output_batch_idx],
158 "vector_sum_row must have the same number of batches of output tensor");
159
160 if(gemm_info.a_offset != 0)
161 {
162 TensorShape vector_sum_col_shape = vector_sum_col->tensor_shape();
163 vector_sum_col_shape.collapse_from(1);
164
165 ARM_COMPUTE_RETURN_ERROR_ON_MSG(vector_sum_col_shape[1] != 1 && vector_sum_col_shape[1] != vector_sum_row_shape[1],
166 "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");
167 }
168 }
169 }
170
Michele Di Giorgiob54ba282020-01-14 15:31:55 +0000171 if(output->total_size() != 0)
172 {
173 ARM_COMPUTE_RETURN_ERROR_ON(output_stage.output_data_type != output->data_type());
Michele Di Giorgiob54ba282020-01-14 15:31:55 +0000174 }
Michele Di Giorgio398b8e42020-03-06 13:56:54 +0000175 ARM_COMPUTE_RETURN_ERROR_ON(output_stage.gemmlowp_min_bound > output_stage.gemmlowp_max_bound);
Michele Di Giorgiob54ba282020-01-14 15:31:55 +0000176
177 if(output_multipliers != nullptr && output_shifts != nullptr)
178 {
179 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(output_multipliers, 1, DataType::S32);
180 ARM_COMPUTE_RETURN_ERROR_ON(output_multipliers->num_dimensions() > 1);
181 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(output_shifts, 1, DataType::S32);
182 ARM_COMPUTE_RETURN_ERROR_ON(output_shifts->num_dimensions() > 1);
183 if(output_stage.is_quantized_per_channel)
184 {
185 ARM_COMPUTE_RETURN_ERROR_ON(expected_output_shape[0] != output_shifts->dimension(0));
186 ARM_COMPUTE_RETURN_ERROR_ON(expected_output_shape[0] != output_multipliers->dimension(0));
187 }
188 }
189 }
Gian Marco Iodice62251f72019-03-11 16:07:12 +0000190 return Status{};
191}
192
Michele Di Giorgiob54ba282020-01-14 15:31:55 +0000193std::pair<Status, Window> validate_and_configure_window(ITensorInfo *input0, ITensorInfo *input1, ITensorInfo *output, const GEMMKernelInfo &gemm_info,
194 ITensorInfo *vector_sum_col, ITensorInfo *vector_sum_row, ITensorInfo *bias,
195 ITensorInfo *output_multipliers, ITensorInfo *output_shifts, ElementsProcessed &num_elements_processed)
Gian Marco Iodice62251f72019-03-11 16:07:12 +0000196{
Michele Di Giorgiob54ba282020-01-14 15:31:55 +0000197 const GEMMLowpOutputStageInfo output_stage = gemm_info.output_stage;
198
Gian Marco Iodice62251f72019-03-11 16:07:12 +0000199 unsigned int &num_elems_processed_per_iteration_x = num_elements_processed[0];
200 unsigned int &num_elems_processed_per_iteration_y = num_elements_processed[1];
Michele Di Giorgiob54ba282020-01-14 15:31:55 +0000201 bool reinterpret_input_as_3d = gemm_info.reinterpret_input_as_3d;
202 bool reinterpret_output_as_3d = (gemm_info.depth_output_gemm3d != 0);
Gian Marco Iodice62251f72019-03-11 16:07:12 +0000203
204 Window win{};
205 Window win_out{};
206 bool window_changed = false;
207
208 // In case both input and output have to be reinterpreted as 3D tensors,
209 // force reinterpret_input_as_3d and reinterpret_output_as_3d to be false.
Gian Marco Iodice86cfffe2019-04-02 11:02:20 +0100210 if(reinterpret_input_as_3d == reinterpret_output_as_3d)
211 {
212 reinterpret_output_as_3d = false;
213 }
Gian Marco Iodice62251f72019-03-11 16:07:12 +0000214
215 // Output tensor auto initialization if not yet initialized
Michele Di Giorgiob54ba282020-01-14 15:31:55 +0000216 const TensorShape expected_output_shape = compute_mm_shape(*input0, *input1, gemm_info);
217 if(output_stage.type != GEMMLowpOutputStageType::NONE)
218 {
219 auto_init_if_empty(*output, input0->clone()->set_tensor_shape(expected_output_shape).set_data_type(output_stage.output_data_type));
220 }
221 else
222 {
223 auto_init_if_empty(*output, input0->clone()->set_tensor_shape(expected_output_shape).set_data_type(DataType::S32));
224 }
Gian Marco Iodice62251f72019-03-11 16:07:12 +0000225
226 TensorInfo tmp_info(*output);
227
228 if(reinterpret_output_as_3d)
229 {
230 // Since the output tensor has to be reinterpreted as 3D and the execute window is based on a 2D GEMM,
231 // the window needs to be constructed on the 2D collapsed version of the tensor
232 TensorShape tmp_shape(output->tensor_shape());
233 tmp_shape.collapse(2U, 1U);
234 tmp_info.set_tensor_shape(tmp_shape);
235 }
236
237 // Configure kernel window
Michele Di Giorgiob54ba282020-01-14 15:31:55 +0000238 num_elems_processed_per_iteration_x = gemm_info.rhs_info.n0;
239 num_elems_processed_per_iteration_y = gemm_info.lhs_info.m0;
Gian Marco Iodice62251f72019-03-11 16:07:12 +0000240
241 // Note: bottom paddings are calculated manually as the output can be reinterpreted as 3D tensor
242 // The only way to set properly the paddings, it is to set those explicitly through the AccessWindowStatic
Michele Di Giorgiob54ba282020-01-14 15:31:55 +0000243 const int m = reinterpret_output_as_3d ? gemm_info.m : input0->dimension(1);
Gian Marco Iodice62251f72019-03-11 16:07:12 +0000244 const int bottom_pad = (num_elems_processed_per_iteration_y - (m % num_elems_processed_per_iteration_y)) % num_elems_processed_per_iteration_y;
245
246 win = calculate_max_window(tmp_info, Steps(num_elems_processed_per_iteration_x, num_elems_processed_per_iteration_y));
247 win_out = calculate_max_window(*output, Steps(num_elems_processed_per_iteration_x, num_elems_processed_per_iteration_y));
248
249 AccessWindowStatic input0_access(input0, 0, 0,
Michele Di Giorgiob54ba282020-01-14 15:31:55 +0000250 ceil_to_multiple(input0->dimension(0), gemm_info.lhs_info.k0),
Gian Marco Iodice62251f72019-03-11 16:07:12 +0000251 input0->dimension(1) + bottom_pad);
252 AccessWindowStatic input1_access(input1, 0, 0,
253 input1->dimension(0),
254 input1->dimension(1));
255 AccessWindowStatic output_access(output, 0, 0,
256 ceil_to_multiple(output->dimension(0), num_elems_processed_per_iteration_x),
257 output->dimension(1) + bottom_pad);
258
259 window_changed = update_window_and_padding(win, input0_access, input1_access) || // window used by the execute_window_loop
260 update_window_and_padding(win_out, output_access); // window used to update the padding requirements of output tensor
261
Michele Di Giorgiob54ba282020-01-14 15:31:55 +0000262 if(output_stage.type == GEMMLowpOutputStageType::QUANTIZE_DOWN_FIXEDPOINT)
263 {
264 if(gemm_info.a_offset != 0)
265 {
266 AccessWindowHorizontal vector_sum_col_access(vector_sum_col, 0, num_elems_processed_per_iteration_x);
267 window_changed = window_changed || update_window_and_padding(win_out, vector_sum_col_access);
268 }
269 // No access window needed for vector_sum_row
270 ARM_COMPUTE_UNUSED(vector_sum_row);
271
272 if(bias != nullptr)
273 {
274 AccessWindowHorizontal bias_access(bias, 0, num_elems_processed_per_iteration_x);
275 window_changed = window_changed || update_window_and_padding(win_out, bias_access);
276 }
277
278 if(output_multipliers != nullptr && output_multipliers->dimension(0) > 1)
279 {
280 AccessWindowHorizontal output_multipliers_access(output_multipliers, 0, num_elems_processed_per_iteration_x);
281 AccessWindowHorizontal output_shifts_access(output_shifts, 0, num_elems_processed_per_iteration_x);
282 window_changed = window_changed || update_window_and_padding(win_out, output_multipliers_access, output_shifts_access);
283 }
284 }
285
Gian Marco Iodice2ec6c1e2019-04-09 12:03:05 +0100286 output_access.set_valid_region(win_out, ValidRegion(Coordinates(), output->tensor_shape()));
Gian Marco Iodice62251f72019-03-11 16:07:12 +0000287
288 // Collapse along the Z direction
289 // This collapse needs to be here in order to tune the Z dimension of LWS
290 Window collapsed = win;
291 const unsigned int dimension_to_collapse = std::min(static_cast<unsigned int>(output->num_dimensions()), 2u);
292 collapsed = win.collapse(win, dimension_to_collapse);
293
294 Status err = (window_changed) ? ARM_COMPUTE_CREATE_ERROR(ErrorCode::RUNTIME_ERROR, "Insufficient Padding!") : Status{};
295 return std::make_pair(err, collapsed);
296}
297} // namespace
298
299CLGEMMLowpMatrixMultiplyReshapedOnlyRHSKernel::CLGEMMLowpMatrixMultiplyReshapedOnlyRHSKernel()
Michele Di Giorgiob54ba282020-01-14 15:31:55 +0000300 : _input0(nullptr),
301 _input1(nullptr),
302 _output(nullptr),
303 _vector_sum_col(nullptr),
304 _vector_sum_row(nullptr),
305 _bias(nullptr),
306 _output_multipliers(nullptr),
307 _output_shifts(nullptr),
308 _slide_matrix_b(true),
309 _reinterpret_input_as_3d(false),
310 _reinterpret_output_as_3d(false),
311 _use_dummy_work_items(false),
312 _is_quantized_per_channel(false),
313 _fuse_output_stage(false)
Gian Marco Iodice62251f72019-03-11 16:07:12 +0000314{
315}
316
Michele Di Giorgiob54ba282020-01-14 15:31:55 +0000317void CLGEMMLowpMatrixMultiplyReshapedOnlyRHSKernel::configure(const ICLTensor *input0, const ICLTensor *input1, ICLTensor *output, const GEMMKernelInfo &gemm_info,
318 const ICLTensor *vector_sum_col, const ICLTensor *vector_sum_row, const ICLTensor *bias,
319 const ICLTensor *output_multipliers, const ICLTensor *output_shifts)
Gian Marco Iodice62251f72019-03-11 16:07:12 +0000320{
Manuel Bottini4c6bd512020-04-08 10:15:51 +0100321 configure(CLKernelLibrary::get().get_compile_context(), input0, input1, output, gemm_info, vector_sum_col, vector_sum_row, bias, output_multipliers, output_shifts);
322}
323
Gian Marco Iodicedd717c32020-05-28 10:22:03 +0100324void CLGEMMLowpMatrixMultiplyReshapedOnlyRHSKernel::configure(const CLCompileContext &compile_context, const ICLTensor *input0, const ICLTensor *input1, ICLTensor *output,
325 const GEMMKernelInfo &gemm_info,
Manuel Bottini4c6bd512020-04-08 10:15:51 +0100326 const ICLTensor *vector_sum_col, const ICLTensor *vector_sum_row, const ICLTensor *bias,
327 const ICLTensor *output_multipliers, const ICLTensor *output_shifts)
328{
Gian Marco Iodice62251f72019-03-11 16:07:12 +0000329 ARM_COMPUTE_ERROR_ON_NULLPTR(input0, input1, output);
Michele Di Giorgiob54ba282020-01-14 15:31:55 +0000330 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(input0->info(),
331 input1->info(),
332 output->info(),
333 gemm_info,
334 vector_sum_col != nullptr ? vector_sum_col->info() : nullptr,
335 vector_sum_row != nullptr ? vector_sum_row->info() : nullptr,
336 bias != nullptr ? bias->info() : nullptr,
337 output_multipliers != nullptr ? output_multipliers->info() : nullptr,
338 output_shifts != nullptr ? output_shifts->info() : nullptr));
Gian Marco Iodice62251f72019-03-11 16:07:12 +0000339
Michele Di Giorgiob54ba282020-01-14 15:31:55 +0000340 const GEMMRHSMatrixInfo rhs_info = gemm_info.rhs_info;
341 const GEMMLHSMatrixInfo lhs_info = gemm_info.lhs_info;
342 const GEMMLowpOutputStageInfo output_stage = gemm_info.output_stage;
343 const int32_t a_offset = gemm_info.a_offset;
344 const int32_t b_offset = gemm_info.b_offset;
Gian Marco Iodice62251f72019-03-11 16:07:12 +0000345
346 _input0 = input0;
347 _input1 = input1;
348 _output = output;
Michele Di Giorgiob54ba282020-01-14 15:31:55 +0000349 _vector_sum_col = vector_sum_col;
350 _vector_sum_row = vector_sum_row;
351 _bias = bias;
352 _output_multipliers = output_multipliers;
353 _output_shifts = output_shifts;
354 _reinterpret_input_as_3d = gemm_info.reinterpret_input_as_3d;
355 _reinterpret_output_as_3d = (gemm_info.depth_output_gemm3d != 0);
Gian Marco Iodice86cfffe2019-04-02 11:02:20 +0100356 _use_dummy_work_items = preferred_dummy_work_items_support(CLKernelLibrary::get().get_device());
Michele Di Giorgiob54ba282020-01-14 15:31:55 +0000357 _is_quantized_per_channel = output_stage.is_quantized_per_channel;
Gian Marco Iodice62251f72019-03-11 16:07:12 +0000358
359 // In case both input and output have to be reinterpreted as 3D tensors,
360 // force reinterpret_input_as_3d and reinterpret_output_as_3d to be false.
Gian Marco Iodice86cfffe2019-04-02 11:02:20 +0100361 if(_reinterpret_input_as_3d == _reinterpret_output_as_3d)
362 {
363 _reinterpret_input_as_3d = false;
364 _reinterpret_output_as_3d = false;
365 }
Gian Marco Iodice62251f72019-03-11 16:07:12 +0000366
367 // Check if we need to slide the matrix B
368 const unsigned int num_dimensions_input0 = _input0->info()->num_dimensions();
369 _slide_matrix_b = (_input1->info()->num_dimensions() >= num_dimensions_input0);
370
371 ElementsProcessed num_elements_processed{};
372
373 // Configure kernel window
Michele Di Giorgiob54ba282020-01-14 15:31:55 +0000374 auto win_config = validate_and_configure_window(input0->info(),
375 input1->info(),
376 output->info(),
377 gemm_info,
378 vector_sum_col != nullptr ? vector_sum_col->info() : nullptr,
379 vector_sum_row != nullptr ? vector_sum_row->info() : nullptr,
380 bias != nullptr ? bias->info() : nullptr,
381 output_multipliers != nullptr ? output_multipliers->info() : nullptr,
382 output_shifts != nullptr ? output_shifts->info() : nullptr,
383 num_elements_processed);
Gian Marco Iodice62251f72019-03-11 16:07:12 +0000384 ARM_COMPUTE_ERROR_THROW_ON(win_config.first);
385 ICLKernel::configure_internal(win_config.second);
386
387 // Create build options
388 CLBuildOptions build_opts;
389 build_opts.add_option_if(_reinterpret_input_as_3d, "-DREINTERPRET_INPUT_AS_3D");
390 build_opts.add_option_if(_reinterpret_output_as_3d, "-DREINTERPRET_OUTPUT_AS_3D");
391 build_opts.add_option_if(_reinterpret_input_as_3d || _reinterpret_output_as_3d, "-DHEIGHT_GEMM3D=" + support::cpp11::to_string(output->info()->dimension(1)));
392 build_opts.add_option_if(_reinterpret_input_as_3d || _reinterpret_output_as_3d, "-DDEPTH_GEMM3D=" + support::cpp11::to_string(output->info()->dimension(2)));
393 build_opts.add_option_if(!_slide_matrix_b, "-DMATRIX_B_DEPTH=" + support::cpp11::to_string(input1->info()->dimension(2)));
394 build_opts.add_option_if(rhs_info.interleave, "-DRHS_INTERLEAVE");
Gian Marco Iodice86cfffe2019-04-02 11:02:20 +0100395 build_opts.add_option_if(_use_dummy_work_items, "-DDUMMY_WORK_ITEMS");
396 build_opts.add_option("-DM=" + support::cpp11::to_string(input0->info()->dimension(1)));
Michele Di Giorgiob54ba282020-01-14 15:31:55 +0000397 build_opts.add_option("-DN=" + support::cpp11::to_string(gemm_info.n));
398 build_opts.add_option("-DK=" + support::cpp11::to_string(gemm_info.k));
Gian Marco Iodice62251f72019-03-11 16:07:12 +0000399 build_opts.add_option("-DM0=" + support::cpp11::to_string(lhs_info.m0));
400 build_opts.add_option("-DN0=" + support::cpp11::to_string(rhs_info.n0));
401 build_opts.add_option("-DK0=" + support::cpp11::to_string(rhs_info.k0));
402 build_opts.add_option("-DH0=" + support::cpp11::to_string(rhs_info.h0));
Michele Di Giorgiof9179d32019-11-27 16:17:30 +0000403 build_opts.add_option("-DDATA_TYPE=" + get_cl_type_from_data_type(input0->info()->data_type()));
404 build_opts.add_option("-DACC_DATA_TYPE=" + get_cl_dot8_acc_type_from_data_type(input0->info()->data_type()));
Gian Marco Iodice62251f72019-03-11 16:07:12 +0000405
406 std::string kernel_name("gemmlowp_mm_reshaped_only_rhs_");
407 kernel_name += rhs_info.transpose ? "t" : "nt";
408
Michele Di Giorgiob54ba282020-01-14 15:31:55 +0000409 if(output_stage.type == GEMMLowpOutputStageType::QUANTIZE_DOWN_FIXEDPOINT)
410 {
411 kernel_name += "_fused_output_stage_fixedpoint";
412 _fuse_output_stage = true;
413 // If a_offset == 0, vector_sum_col can be a nullptr
414 if(a_offset != 0)
415 {
416 build_opts.add_option("-DA_OFFSET=" + support::cpp11::to_string(a_offset));
417 build_opts.add_option_if(vector_sum_col->info()->tensor_shape().num_dimensions() > 1, "-DSUM_COL_HAS_BATCHES");
418 }
419 // If b_offset == 0, vector_sum_row can be a nullptr
420 build_opts.add_option_if(b_offset != 0, "-DB_OFFSET=" + support::cpp11::to_string(b_offset));
421 build_opts.add_option("-DK_OFFSET=" + support::cpp11::to_string(a_offset * b_offset * input0->info()->dimension(0)));
422 build_opts.add_option_if(bias != nullptr, "-DADD_BIAS");
423 build_opts.add_option("-DRESULT_OFFSET=" + support::cpp11::to_string(output_stage.gemmlowp_offset));
424 build_opts.add_option("-DRESULT_MULTIPLIER=" + support::cpp11::to_string(output_stage.gemmlowp_multipliers[0]));
425 build_opts.add_option("-DRESULT_SHIFT=" + support::cpp11::to_string(output_stage.gemmlowp_shifts[0]));
426 build_opts.add_option_if(_is_quantized_per_channel, "-DPER_CHANNEL_QUANTIZATION");
427
428 const int min = output_stage.gemmlowp_min_bound;
429 const int max = output_stage.gemmlowp_max_bound;
430
431 PixelValue min_val{};
432 PixelValue max_val{};
433 std::tie(min_val, max_val) = get_min_max(output->info()->data_type());
Michele Di Giorgio398b8e42020-03-06 13:56:54 +0000434 build_opts.add_option_if(min != min_val.get<int32_t>(), "-DMIN_BOUND=" + support::cpp11::to_string(min));
435 build_opts.add_option_if(max != max_val.get<int32_t>(), "-DMAX_BOUND=" + support::cpp11::to_string(max));
Michele Di Giorgiob54ba282020-01-14 15:31:55 +0000436 }
437
Gian Marco Iodice62251f72019-03-11 16:07:12 +0000438 // Create kernel
Manuel Bottini4c6bd512020-04-08 10:15:51 +0100439 _kernel = create_kernel(compile_context, kernel_name, build_opts.options());
Gian Marco Iodice62251f72019-03-11 16:07:12 +0000440
441 // Set config_id for enabling LWS tuning
442 _config_id = kernel_name;
443 _config_id += "_";
Gian Marco Iodice43a129e2019-05-14 10:14:08 +0100444 _config_id += dot8_supported(CLKernelLibrary::get().get_device()) ? "_dot8" : "";
445 _config_id += "_";
Gian Marco Iodice62251f72019-03-11 16:07:12 +0000446 _config_id += (_reinterpret_input_as_3d ? "3di_" : "");
447 _config_id += (_reinterpret_output_as_3d ? "3do_" : "");
448 _config_id += support::cpp11::to_string(output->info()->dimension(1));
449 _config_id += "_";
450 _config_id += support::cpp11::to_string(output->info()->dimension(0));
451 _config_id += "_";
Michele Di Giorgiob54ba282020-01-14 15:31:55 +0000452 _config_id += support::cpp11::to_string(gemm_info.k);
Gian Marco Iodice62251f72019-03-11 16:07:12 +0000453 _config_id += "_";
454 _config_id += support::cpp11::to_string(output->info()->dimension(2));
455 _config_id += "_";
456 _config_id += support::cpp11::to_string(lhs_info.m0);
457 _config_id += "_";
458 _config_id += support::cpp11::to_string(rhs_info.n0);
459 _config_id += "_";
460 _config_id += support::cpp11::to_string(rhs_info.k0);
461 _config_id += "_";
462 _config_id += support::cpp11::to_string(rhs_info.h0);
463 _config_id += "_";
464 _config_id += support::cpp11::to_string(rhs_info.interleave);
465}
466
Michele Di Giorgiob54ba282020-01-14 15:31:55 +0000467Status CLGEMMLowpMatrixMultiplyReshapedOnlyRHSKernel::validate(const ITensorInfo *input0, const ITensorInfo *input1, const ITensorInfo *output, const GEMMKernelInfo &gemm_info,
468 const ITensorInfo *vector_sum_col, const ITensorInfo *vector_sum_row, const ITensorInfo *bias,
469 const ITensorInfo *output_multipliers, const ITensorInfo *output_shifts)
Gian Marco Iodice62251f72019-03-11 16:07:12 +0000470{
471 ElementsProcessed num_elements_processed{};
Michele Di Giorgiob54ba282020-01-14 15:31:55 +0000472 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(input0, input1, output, gemm_info, vector_sum_col, vector_sum_row, bias, output_multipliers, output_shifts));
Gian Marco Iodice62251f72019-03-11 16:07:12 +0000473 ARM_COMPUTE_RETURN_ON_ERROR(validate_and_configure_window(input0->clone().get(),
474 input1->clone().get(),
475 output->clone().get(),
Gian Marco Iodice62251f72019-03-11 16:07:12 +0000476 gemm_info,
Michele Di Giorgiob54ba282020-01-14 15:31:55 +0000477 vector_sum_col != nullptr ? vector_sum_col->clone().get() : nullptr,
478 vector_sum_row != nullptr ? vector_sum_row->clone().get() : nullptr,
479 bias != nullptr ? bias->clone().get() : nullptr,
480 output_multipliers != nullptr ? output_multipliers->clone().get() : nullptr,
481 output_shifts != nullptr ? output_shifts->clone().get() : nullptr,
Gian Marco Iodice62251f72019-03-11 16:07:12 +0000482 num_elements_processed)
483 .first);
484
485 return Status{};
486}
487
488void CLGEMMLowpMatrixMultiplyReshapedOnlyRHSKernel::run(const Window &window, cl::CommandQueue &queue)
489{
490 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
491 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(ICLKernel::window(), window);
492
493 if(_input1->info()->num_dimensions() < 3)
494 {
495 // The stride_z for matrix B must be zero if we do not slice
496 ARM_COMPUTE_ERROR_ON(_input1->info()->strides_in_bytes()[3] != 0);
497 }
498
499 Window slice = window.first_slice_window_3D();
500 Window slice_matrix_b = slice;
501
502 slice_matrix_b.set(Window::DimX, Window::Dimension(0, 1, 1));
503 slice_matrix_b.set(Window::DimY, Window::Dimension(0, 1, 1));
504
505 if(_reinterpret_input_as_3d)
506 {
507 // Pass bottom paddings to the kernel if the input has to be reinterpreted as 3D tensor
508 const unsigned int idx0 = 3 * num_arguments_per_2D_tensor() + 3;
509 const unsigned int total_cross_plane_pad = _input0->info()->padding().top + _input0->info()->padding().bottom;
510 _kernel.setArg<cl_uint>(idx0, static_cast<unsigned int>(total_cross_plane_pad));
511 }
512
513 if(_reinterpret_output_as_3d)
514 {
515 // Pass bottom paddings to the kernel if the output has to be reinterpreted as 3D tensor
516 const unsigned int idx0 = 3 * num_arguments_per_2D_tensor() + 3 + (_reinterpret_input_as_3d ? 1 : 0);
517 const unsigned int total_cross_plane_pad = _output->info()->padding().top + _output->info()->padding().bottom;
518 _kernel.setArg<cl_uint>(idx0, static_cast<unsigned int>(total_cross_plane_pad));
519 }
520
Michele Di Giorgiob54ba282020-01-14 15:31:55 +0000521 // Set window for vector_sum_col
522 Window win_vector_sum_col = slice;
523 win_vector_sum_col.set(Window::DimY, Window::Dimension(0, 0, 0));
524 win_vector_sum_col.set(Window::DimZ, Window::Dimension(0, 0, 0));
525
526 // Set window for vector_sum_row
527 Window win_vector_sum_row = slice;
528 win_vector_sum_row.set(Window::DimX, Window::Dimension(0, 0, 0));
529 win_vector_sum_row.set(Window::DimY, Window::Dimension(0, 0, 0));
530 win_vector_sum_col.set(Window::DimZ, Window::Dimension(0, 0, 0));
531
532 Window biases_slice = slice;
533 biases_slice.set(Window::DimY, Window::Dimension(0, 1, 1));
534 biases_slice.set(Window::DimZ, Window::Dimension(0, 1, 1));
535
Gian Marco Iodice62251f72019-03-11 16:07:12 +0000536 do
537 {
538 Window slice_b = slice;
539 // Don't slice matrix B along the z dimension if matrix B has just 2 dimensions and matrix A more than 2
540 // This scenario can happen when the matrix multiplication is used to perform a convolution operation
541 if(!_slide_matrix_b)
542 {
543 slice_b = slice_matrix_b;
544 }
545
546 unsigned int idx = 0;
547 add_2D_tensor_argument(idx, _input0, slice);
548 add_2D_tensor_argument(idx, _input1, slice_b);
549 add_2D_tensor_argument(idx, _output, slice);
550 _kernel.setArg<cl_uint>(idx++, static_cast<unsigned int>(_input0->info()->strides_in_bytes()[2]));
551 _kernel.setArg<cl_uint>(idx++, static_cast<unsigned int>(_input1->info()->strides_in_bytes()[2]));
552 _kernel.setArg<cl_uint>(idx++, static_cast<unsigned int>(_output->info()->strides_in_bytes()[2]));
Michele Di Giorgiob54ba282020-01-14 15:31:55 +0000553 if(_reinterpret_input_as_3d)
554 {
555 // Pass bottom paddings to the kernel if the input has to be reinterpreted as 3D tensor
556 idx++;
557 }
558
559 if(_reinterpret_output_as_3d)
560 {
561 // Pass bottom paddings to the kernel if the output has to be reinterpreted as 3D tensor
562 idx++;
563 }
564
565 if(_fuse_output_stage)
566 {
567 add_2D_tensor_argument_if((_vector_sum_col != nullptr), idx, _vector_sum_col, win_vector_sum_col);
568 add_2D_tensor_argument_if((_vector_sum_row != nullptr), idx, _vector_sum_row, win_vector_sum_row);
569 add_1D_tensor_argument_if((_bias != nullptr), idx, _bias, biases_slice);
570 add_1D_tensor_argument_if(_is_quantized_per_channel, idx, _output_multipliers, biases_slice);
571 add_1D_tensor_argument_if(_is_quantized_per_channel, idx, _output_shifts, biases_slice);
572 }
Gian Marco Iodice86cfffe2019-04-02 11:02:20 +0100573 enqueue(queue, *this, slice, lws_hint(), _use_dummy_work_items);
Gian Marco Iodice62251f72019-03-11 16:07:12 +0000574 }
575 while(window.slide_window_slice_3D(slice));
576}
giuros0146a49a02019-04-01 13:50:22 +0100577} // namespace arm_compute