blob: 66fafe4de56f4a187dae0f6d69da8e83738a8bc4 [file] [log] [blame]
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001/*
Gian Marco7b4d5472018-01-10 15:56:30 +00002 * Copyright (c) 2017-2018 ARM Limited.
Anthony Barbier6ff3b192017-09-04 18:44:23 +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/CLGEMMLowpMatrixMultiplyKernel.h"
25
26#include "arm_compute/core/AccessWindowStatic.h"
Gian Marco19835e52018-01-30 13:35:54 +000027#include "arm_compute/core/AccessWindowTranspose.h"
Gian Marco7b4d5472018-01-10 15:56:30 +000028#include "arm_compute/core/CL/CLHelpers.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010029#include "arm_compute/core/CL/CLKernelLibrary.h"
30#include "arm_compute/core/CL/ICLTensor.h"
31#include "arm_compute/core/CL/OpenCL.h"
32#include "arm_compute/core/Error.h"
33#include "arm_compute/core/Helpers.h"
Isabella Gottardid56e7702018-02-28 14:29:36 +000034#include "arm_compute/core/TensorInfo.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010035#include "arm_compute/core/Types.h"
36#include "arm_compute/core/Utils.h"
37#include "arm_compute/core/Validate.h"
38#include "arm_compute/core/Window.h"
Gian Marco19835e52018-01-30 13:35:54 +000039#include "arm_compute/core/utils/misc/ShapeCalculator.h"
Moritz Pflanzer05da6dd2017-07-04 12:08:41 +010040#include "support/ToolchainSupport.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010041
42#include <cstddef>
43#include <cstdint>
44#include <tuple>
45
46using namespace arm_compute;
Gian Marco19835e52018-01-30 13:35:54 +000047using namespace arm_compute::misc::shape_calculator;
Anthony Barbier6ff3b192017-09-04 18:44:23 +010048
49namespace arm_compute
50{
51class Coordinates;
52} // namespace arm_compute
53
Georgios Pinitas358ca202017-12-07 16:47:52 +000054namespace
55{
56using ElementsProcessed = Steps;
57
Gian Marco19835e52018-01-30 13:35:54 +000058Status validate_arguments(const ITensorInfo *input0, const ITensorInfo *input1, const ITensorInfo *output, bool is_interleaved_transposed, const GEMMReshapeInfo &reshape_info)
Georgios Pinitas358ca202017-12-07 16:47:52 +000059{
Isabella Gottardic4f582e2018-10-11 19:14:55 +010060 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(input0, input1, output);
Georgios Pinitas358ca202017-12-07 16:47:52 +000061 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input0, 1, DataType::QASYMM8);
Gian Marco19835e52018-01-30 13:35:54 +000062 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input0, input1);
Isabella Gottardif02e5272018-10-01 12:26:28 +010063 ARM_COMPUTE_RETURN_ERROR_ON_MSG(input0->num_dimensions() > 4, "The number of dimensions for the matrix A must be <= 4");
64 ARM_COMPUTE_RETURN_ERROR_ON_MSG(input1->num_dimensions() > 3, "The number of dimensions for the matrix B must be <= 3");
Georgios Pinitasebf6b8a2018-09-24 16:31:08 +010065 ARM_COMPUTE_RETURN_ERROR_ON_MSG(is_interleaved_transposed && reshape_info.reinterpret_input_as_3d(), "The input tensor cannot be reinterpreted as 3D if is_interleaved_transposed is true");
66 ARM_COMPUTE_RETURN_ERROR_ON_MSG(input1->num_dimensions() > 2 && reshape_info.reinterpret_input_as_3d(), "The input1 tensor cannot have more than 2 dimensions if input0 has to be reinterpreted as 3D");
Gian Marco19835e52018-01-30 13:35:54 +000067
Georgios Pinitas358ca202017-12-07 16:47:52 +000068 if(!is_interleaved_transposed)
69 {
70 ARM_COMPUTE_RETURN_ERROR_ON(input0->dimension(0) != input1->dimension(1));
Gian Marco19835e52018-01-30 13:35:54 +000071 }
72 else
73 {
giuros018b6b4a92018-12-18 19:01:33 +000074 GEMMRHSMatrixInfo rhs_info;
75 const int m = reshape_info.m();
76 const int n = reshape_info.n();
77 const int k = reshape_info.k();
78 const int mult_transpose1xW_width = reshape_info.mult_transpose1xW_width();
79 const int mult_interleave4x4_height = reshape_info.mult_interleave4x4_height();
80 rhs_info.n0 = 16 / input1->element_size();
81 rhs_info.k0 = 1;
82 rhs_info.h0 = mult_transpose1xW_width;
83 rhs_info.interleave = false;
84 rhs_info.transpose = false;
Gian Marco19835e52018-01-30 13:35:54 +000085
86 TensorShape tensor_shape0{ input0->tensor_shape() };
87 tensor_shape0.set(0, k);
88 tensor_shape0.set(1, m);
89
90 TensorShape tensor_shape1{ input1->tensor_shape() };
91 tensor_shape1.set(0, n);
92 tensor_shape1.set(1, k);
93
94 const TensorInfo tensor_info0 = input0->clone()->set_tensor_shape(tensor_shape0);
95 const TensorInfo tensor_info1 = input1->clone()->set_tensor_shape(tensor_shape1);
96
Isabella Gottardic4f582e2018-10-11 19:14:55 +010097 const TensorInfo tensor_info_reshaped0 = input0->clone()->set_tensor_shape(compute_interleaved_shape(tensor_info0, mult_interleave4x4_height));
giuros018b6b4a92018-12-18 19:01:33 +000098 const TensorInfo tensor_info_reshaped1 = input1->clone()->set_tensor_shape(compute_rhs_reshaped_shape(tensor_info1, rhs_info));
Gian Marco19835e52018-01-30 13:35:54 +000099
100 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_SHAPES(input0, &tensor_info_reshaped0);
101 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_SHAPES(input1, &tensor_info_reshaped1);
Georgios Pinitasebf6b8a2018-09-24 16:31:08 +0100102 }
Gian Marco19835e52018-01-30 13:35:54 +0000103
Georgios Pinitasebf6b8a2018-09-24 16:31:08 +0100104 if(output->total_size() != 0)
105 {
106 const TensorInfo tensor_info_output = output->clone()->set_tensor_shape(compute_mm_shape(*input0, *input1, is_interleaved_transposed, reshape_info));
107 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_SHAPES(output, &tensor_info_output);
108 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(output, 1, DataType::S32);
Georgios Pinitas358ca202017-12-07 16:47:52 +0000109 }
110
111 return Status{};
112}
113
114std::pair<Status, Window> validate_and_configure_window(ITensorInfo *input0, ITensorInfo *input1, ITensorInfo *output, bool is_interleaved_transposed,
Georgios Pinitasebf6b8a2018-09-24 16:31:08 +0100115 const GEMMReshapeInfo &reshape_info, ElementsProcessed &num_elements_processed)
Georgios Pinitas358ca202017-12-07 16:47:52 +0000116{
Gian Marco Iodice4b908652018-10-18 10:21:02 +0100117 const bool is_dot8_supported = dot8_supported(CLKernelLibrary::get().get_device());
Georgios Pinitas358ca202017-12-07 16:47:52 +0000118 unsigned int &num_elems_processed_per_iteration_x = num_elements_processed[0];
119 unsigned int &num_elems_processed_per_iteration_y = num_elements_processed[1];
Georgios Pinitasebf6b8a2018-09-24 16:31:08 +0100120 bool reinterpret_input_as_3d = reshape_info.reinterpret_input_as_3d();
Gian Marco Iodice3139f032018-11-05 14:26:32 +0000121 bool reinterpret_output_as_3d = (reshape_info.depth_output_gemm3d() != 0);
Georgios Pinitas358ca202017-12-07 16:47:52 +0000122
123 Window win{};
Georgios Pinitasebf6b8a2018-09-24 16:31:08 +0100124 Window win_out{};
Georgios Pinitas358ca202017-12-07 16:47:52 +0000125 bool window_changed = false;
126
Georgios Pinitasebf6b8a2018-09-24 16:31:08 +0100127 // In case both input and output have to be reinterpreted as 3D tensors,
128 // force reinterpret_input_as_3d and reinterpret_output_as_3d to be false.
129 if(reinterpret_input_as_3d == reinterpret_output_as_3d)
130 {
131 reinterpret_input_as_3d = false;
132 reinterpret_output_as_3d = false;
133 }
134
135 // Output tensor auto inizialitation if not yet initialized
Gian Marco Iodice4b908652018-10-18 10:21:02 +0100136 auto_init_if_empty(*output, input0->clone()->set_tensor_shape(compute_mm_shape(*input0, *input1, is_interleaved_transposed, reshape_info)).set_data_type(DataType::S32));
Georgios Pinitasebf6b8a2018-09-24 16:31:08 +0100137
138 TensorInfo tmp_info(*output);
139
140 if(reinterpret_output_as_3d)
141 {
142 // Since the output tensor has to be reinterpreted as 3D and the execute window is based on a 2D GEMM,
143 // the window needs to be constructed on the 2D collapsed version of the tensor
144 TensorShape tmp_shape(output->tensor_shape());
145 tmp_shape.collapse(2U, 1U);
146 tmp_info.set_tensor_shape(tmp_shape);
147 }
148
Georgios Pinitas358ca202017-12-07 16:47:52 +0000149 // Check if the output tensor is a vector. If so,the kernel runs the vector-matrix multiplication
150 if(is_interleaved_transposed)
151 {
Georgios Pinitasebf6b8a2018-09-24 16:31:08 +0100152 // reinterpret_input_as_3d is not supported if is_interleaved_transposed is set
Isabella Gottardic4f582e2018-10-11 19:14:55 +0100153 ARM_COMPUTE_ERROR_ON(reshape_info.reinterpret_input_as_3d());
Georgios Pinitasebf6b8a2018-09-24 16:31:08 +0100154
Gian Marco19835e52018-01-30 13:35:54 +0000155 // Configure kernel window
156 num_elems_processed_per_iteration_x = 4;
157 num_elems_processed_per_iteration_y = 4;
Georgios Pinitas358ca202017-12-07 16:47:52 +0000158
Georgios Pinitasebf6b8a2018-09-24 16:31:08 +0100159 // Note: bottom paddings are calculated manually as the output can be reinterpreted as 3D tensor
160 // The only way to set properly the paddings, it is to set those explicitly through the AccessWindowStatic
161 const int m = reshape_info.m();
162 const int bottom_pad = (num_elems_processed_per_iteration_y - (m % num_elems_processed_per_iteration_y)) % num_elems_processed_per_iteration_y;
163
164 win = calculate_max_window(tmp_info, Steps(num_elems_processed_per_iteration_x, num_elems_processed_per_iteration_y));
165 win_out = calculate_max_window(*output, Steps(num_elems_processed_per_iteration_x, num_elems_processed_per_iteration_y));
Georgios Pinitas358ca202017-12-07 16:47:52 +0000166
Gian Marco19835e52018-01-30 13:35:54 +0000167 AccessWindowRectangle input0_access(input0, 0, 0, num_elems_processed_per_iteration_y, 1, 1.f, 0.25f);
Georgios Pinitasebf6b8a2018-09-24 16:31:08 +0100168 AccessWindowStatic input1_access(input1, 0, 0,
169 ceil_to_multiple(input1->dimension(0), num_elems_processed_per_iteration_x),
170 ceil_to_multiple(input1->dimension(1), num_elems_processed_per_iteration_y));
171 AccessWindowStatic output_access(output, 0, 0,
172 ceil_to_multiple(output->dimension(0), num_elems_processed_per_iteration_x),
173 output->dimension(1) + bottom_pad);
Georgios Pinitas358ca202017-12-07 16:47:52 +0000174
Georgios Pinitasebf6b8a2018-09-24 16:31:08 +0100175 window_changed = update_window_and_padding(win, input0_access, input1_access) || // window used by the execute_window_loop
176 update_window_and_padding(win_out, output_access); // window used to update the padding requirements of output tensor
Georgios Pinitas358ca202017-12-07 16:47:52 +0000177
Georgios Pinitasebf6b8a2018-09-24 16:31:08 +0100178 output_access.set_valid_region(win_out, ValidRegion(Coordinates(0, 0), output->tensor_shape()));
Georgios Pinitas358ca202017-12-07 16:47:52 +0000179 }
180 else
181 {
182 // Special case for 1xN, 2xN, 3xN and 4xN input0 tensor. num_elems_processed_per_iteration_x
Gian Marco Iodice4b908652018-10-18 10:21:02 +0100183 // Note: if the dot product instruction is available, the 8x2 tile has to be used
184 num_elems_processed_per_iteration_x = is_dot8_supported ? 8 : 4;
185 num_elems_processed_per_iteration_y = std::min(static_cast<int>(output->dimension(1)), is_dot8_supported ? 2 : 4);
Georgios Pinitas358ca202017-12-07 16:47:52 +0000186
Georgios Pinitasebf6b8a2018-09-24 16:31:08 +0100187 // Note: bottom paddings are calculated manually as the output can be reinterpreted as 3D tensor
188 // The only way to set properly the paddings, it is to set those explicitly through the AccessWindowStatic
189 const int m = reinterpret_input_as_3d ? input0->tensor_shape()[1] * input0->tensor_shape()[2] : input0->tensor_shape()[1];
190 const int bottom_pad = (num_elems_processed_per_iteration_y - (m % num_elems_processed_per_iteration_y)) % num_elems_processed_per_iteration_y;
191
Georgios Pinitas358ca202017-12-07 16:47:52 +0000192 // Configure window
Georgios Pinitasebf6b8a2018-09-24 16:31:08 +0100193 win = calculate_max_window(tmp_info, Steps(num_elems_processed_per_iteration_x, num_elems_processed_per_iteration_y));
194 win_out = calculate_max_window(*output, Steps(num_elems_processed_per_iteration_x, num_elems_processed_per_iteration_y));
Georgios Pinitas358ca202017-12-07 16:47:52 +0000195
Georgios Pinitasebf6b8a2018-09-24 16:31:08 +0100196 AccessWindowStatic input0_access(input0, 0, 0, input0->dimension(0), input0->dimension(1) + bottom_pad);
197 AccessWindowStatic input1_access(input1, 0, 0, ceil_to_multiple(input1->dimension(0), num_elems_processed_per_iteration_x), input1->dimension(1));
198 AccessWindowStatic output_access(output, 0, 0,
199 ceil_to_multiple(output->dimension(0), num_elems_processed_per_iteration_x),
200 output->dimension(1) + bottom_pad);
Georgios Pinitas358ca202017-12-07 16:47:52 +0000201
Georgios Pinitasebf6b8a2018-09-24 16:31:08 +0100202 window_changed = update_window_and_padding(win, input0_access, input1_access) || // window used by the execute_window_loop
203 update_window_and_padding(win_out, output_access); // window used to update the padding requirements of output tensor
Georgios Pinitas358ca202017-12-07 16:47:52 +0000204
205 Coordinates coord;
206 coord.set_num_dimensions(output->num_dimensions());
Isabella Gottardic4f582e2018-10-11 19:14:55 +0100207 output_access.set_valid_region(win_out, ValidRegion(coord, output->tensor_shape()));
Georgios Pinitas358ca202017-12-07 16:47:52 +0000208 }
209
Georgios Pinitasebf6b8a2018-09-24 16:31:08 +0100210 // Collapse along the Z direction
211 // This collapse needs to be here in order to tune the Z dimension of LWS
212 Window collapsed = win;
213 const unsigned int dimension_to_collapse = std::min(static_cast<unsigned int>(output->num_dimensions()), 2u);
214 collapsed = win.collapse(win, dimension_to_collapse);
215
Georgios Pinitas358ca202017-12-07 16:47:52 +0000216 Status err = (window_changed) ? ARM_COMPUTE_CREATE_ERROR(ErrorCode::RUNTIME_ERROR, "Insufficient Padding!") : Status{};
Georgios Pinitasebf6b8a2018-09-24 16:31:08 +0100217 return std::make_pair(err, collapsed);
Georgios Pinitas358ca202017-12-07 16:47:52 +0000218}
219} // namespace
220
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100221CLGEMMLowpMatrixMultiplyKernel::CLGEMMLowpMatrixMultiplyKernel()
Georgios Pinitasebf6b8a2018-09-24 16:31:08 +0100222 : _input0(nullptr), _input1(nullptr), _output(nullptr), _slide_matrix_b(true), _reinterpret_input_as_3d(false), _reinterpret_output_as_3d(false)
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100223{
224}
225
Gian Marco19835e52018-01-30 13:35:54 +0000226void CLGEMMLowpMatrixMultiplyKernel::configure(const ICLTensor *input0, const ICLTensor *input1, ICLTensor *output, bool is_interleaved_transposed, const GEMMReshapeInfo &reshape_info)
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100227{
Georgios Pinitas358ca202017-12-07 16:47:52 +0000228 ARM_COMPUTE_ERROR_ON_NULLPTR(input0, input1, output);
Gian Marco19835e52018-01-30 13:35:54 +0000229
Gian Marco19835e52018-01-30 13:35:54 +0000230 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(input0->info(), input1->info(), output->info(), is_interleaved_transposed, reshape_info));
Gian Marco05288a22017-11-21 10:57:50 +0000231
Georgios Pinitasebf6b8a2018-09-24 16:31:08 +0100232 _input0 = input0;
233 _input1 = input1;
234 _output = output;
235 _reinterpret_input_as_3d = reshape_info.reinterpret_input_as_3d();
Gian Marco Iodice3139f032018-11-05 14:26:32 +0000236 _reinterpret_output_as_3d = (reshape_info.depth_output_gemm3d() != 0);
Georgios Pinitasebf6b8a2018-09-24 16:31:08 +0100237
238 // In case both input and output have to be reinterpreted as 3D tensors,
239 // force reinterpret_input_as_3d and reinterpret_output_as_3d to be false.
240 if(_reinterpret_input_as_3d == _reinterpret_output_as_3d)
241 {
242 _reinterpret_input_as_3d = false;
243 _reinterpret_output_as_3d = false;
244 }
245
246 // Check if we need to slide the matrix B
247 const unsigned int num_dimensions_input0 = _reinterpret_input_as_3d ? _input0->info()->num_dimensions() - 1 : _input0->info()->num_dimensions();
248 _slide_matrix_b = (_input1->info()->num_dimensions() >= num_dimensions_input0);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100249
Georgios Pinitas358ca202017-12-07 16:47:52 +0000250 ElementsProcessed num_elements_processed{};
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100251
Gian Marco7b4d5472018-01-10 15:56:30 +0000252 // Get target architecture
253 GPUTarget arch_target = get_arch_from_target(get_target());
254
Georgios Pinitas358ca202017-12-07 16:47:52 +0000255 // Configure kernel window
Georgios Pinitasebf6b8a2018-09-24 16:31:08 +0100256 auto win_config = validate_and_configure_window(input0->info(), input1->info(), output->info(), is_interleaved_transposed, reshape_info, num_elements_processed);
Georgios Pinitas358ca202017-12-07 16:47:52 +0000257 ARM_COMPUTE_ERROR_THROW_ON(win_config.first);
Anthony Barbierb6eb3532018-08-08 13:20:04 +0100258 ICLKernel::configure_internal(win_config.second);
Georgios Pinitas358ca202017-12-07 16:47:52 +0000259
Giorgio Arena6200fa42018-07-06 17:06:36 +0100260 const bool is_dot8_supported = dot8_supported(CLKernelLibrary::get().get_device());
261
Georgios Pinitas358ca202017-12-07 16:47:52 +0000262 // Create build options
Georgios Pinitas358ca202017-12-07 16:47:52 +0000263 std::string kernel_name(" ");
Georgios Pinitasebf6b8a2018-09-24 16:31:08 +0100264 CLBuildOptions build_opts;
265 build_opts.add_option_if(_reinterpret_input_as_3d, "-DREINTERPRET_INPUT_AS_3D");
266 build_opts.add_option_if(_reinterpret_output_as_3d, "-DREINTERPRET_OUTPUT_AS_3D");
267 build_opts.add_option_if(_reinterpret_input_as_3d || _reinterpret_output_as_3d, "-DHEIGHT_GEMM3D=" + support::cpp11::to_string(output->info()->dimension(1)));
268 build_opts.add_option_if(_reinterpret_input_as_3d || _reinterpret_output_as_3d, "-DDEPTH_GEMM3D=" + support::cpp11::to_string(output->info()->dimension(2)));
269 build_opts.add_option_if(!_slide_matrix_b, "-DMATRIX_B_DEPTH=" + support::cpp11::to_string(input1->info()->dimension(2)));
270
Gian Marco05288a22017-11-21 10:57:50 +0000271 if(is_interleaved_transposed)
272 {
Gian Marco19835e52018-01-30 13:35:54 +0000273 const int mult_transpose1xW_width = reshape_info.mult_transpose1xW_width();
274 const int mult_interleave4x4_height = reshape_info.mult_interleave4x4_height();
275
276 // Note: The computation tile has the x dimension equal to 4 which is less than the transpose_width (16)
277 // In order to access correctly the elements from the transposed matrix B, we need to pass
278 // the correct step which is calculated as (16 * mult_transpose1xW_width) / 4)
279
Gian Marco05288a22017-11-21 10:57:50 +0000280 build_opts.add_option("-DCOLS_B=" + support::cpp11::to_string(input1->info()->dimension(0)));
Gian Marco Iodice4b908652018-10-18 10:21:02 +0100281 build_opts.add_option("-DMULT_TRANSPOSE1XW_WIDTH=" + support::cpp11::to_string(mult_transpose1xW_width));
Gian Marco19835e52018-01-30 13:35:54 +0000282 build_opts.add_option("-DTRANSPOSE1XW_WIDTH_STEP=" + support::cpp11::to_string(4 * mult_transpose1xW_width));
283 build_opts.add_option("-DMULT_INTERLEAVE4X4_HEIGHT=" + support::cpp11::to_string(mult_interleave4x4_height));
284
Giorgio Arena6200fa42018-07-06 17:06:36 +0100285 kernel_name = "gemmlowp_mm_interleaved_transposed_" + string_from_target(arch_target) + (is_dot8_supported ? "_dot8" : "");
Gian Marco05288a22017-11-21 10:57:50 +0000286 }
287 else
288 {
Gian Marco05288a22017-11-21 10:57:50 +0000289 build_opts.add_option("-DCOLS_A=" + support::cpp11::to_string(input0->info()->dimension(0)));
Georgios Pinitas358ca202017-12-07 16:47:52 +0000290 build_opts.add_option("-DNUM_ELEMS_PROCESSED_PER_THREAD_X=" + support::cpp11::to_string(num_elements_processed.x()));
291 build_opts.add_option("-DNUM_ELEMS_PROCESSED_PER_THREAD_Y=" + support::cpp11::to_string(num_elements_processed.y()));
Giorgio Arena6200fa42018-07-06 17:06:36 +0100292
293 kernel_name = "gemmlowp_mm_" + string_from_target(arch_target) + (is_dot8_supported ? "_dot8" : "");
Gian Marco05288a22017-11-21 10:57:50 +0000294 }
Giorgio Arena6200fa42018-07-06 17:06:36 +0100295
Georgios Pinitas358ca202017-12-07 16:47:52 +0000296 // Create kernel
297 _kernel = static_cast<cl::Kernel>(CLKernelLibrary::get().create_kernel(kernel_name, build_opts.options()));
Gian Marco05288a22017-11-21 10:57:50 +0000298
299 // Set config_id for enabling LWS tuning
300 _config_id = "gemmlowp_";
301 _config_id += (is_interleaved_transposed ? "reshaped_" : "");
Georgios Pinitasebf6b8a2018-09-24 16:31:08 +0100302 _config_id += (_reinterpret_input_as_3d ? "3di_" : "");
303 _config_id += (_reinterpret_output_as_3d ? "3do_" : "");
Gian Marco05288a22017-11-21 10:57:50 +0000304 _config_id += lower_string(string_from_data_type(input0->info()->data_type()));
305 _config_id += "_";
306 _config_id += support::cpp11::to_string(output->info()->dimension(1));
307 _config_id += "_";
308 _config_id += support::cpp11::to_string(output->info()->dimension(0));
309 _config_id += "_";
310 _config_id += (is_interleaved_transposed ? support::cpp11::to_string(input1->info()->dimension(0)) : support::cpp11::to_string(input1->info()->dimension(1)));
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100311}
312
Gian Marco19835e52018-01-30 13:35:54 +0000313Status CLGEMMLowpMatrixMultiplyKernel::validate(const ITensorInfo *input0, const ITensorInfo *input1, const ITensorInfo *output, bool is_interleaved_transposed, const GEMMReshapeInfo &reshape_info)
Georgios Pinitas358ca202017-12-07 16:47:52 +0000314{
315 ElementsProcessed num_elements_processed{};
Gian Marco19835e52018-01-30 13:35:54 +0000316 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(input0, input1, output, is_interleaved_transposed, reshape_info));
Georgios Pinitas358ca202017-12-07 16:47:52 +0000317 ARM_COMPUTE_RETURN_ON_ERROR(validate_and_configure_window(input0->clone().get(),
318 input1->clone().get(),
319 output->clone().get(),
320 is_interleaved_transposed,
Georgios Pinitasebf6b8a2018-09-24 16:31:08 +0100321 reshape_info,
Georgios Pinitas358ca202017-12-07 16:47:52 +0000322 num_elements_processed)
323 .first);
324
325 return Status{};
326}
327
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100328void CLGEMMLowpMatrixMultiplyKernel::run(const Window &window, cl::CommandQueue &queue)
329{
330 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
331 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(ICLKernel::window(), window);
332
Isabella Gottardib92805b2018-09-28 18:24:27 +0100333 if(_input1->info()->num_dimensions() < 3)
334 {
335 // The stride_z for matrix B must be zero if we do not slice
336 ARM_COMPUTE_ERROR_ON(_input1->info()->strides_in_bytes()[3] != 0);
337 }
338
Georgios Pinitasebf6b8a2018-09-24 16:31:08 +0100339 Window slice = window.first_slice_window_3D();
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100340 Window slice_matrix_b = slice;
Isabella Gottardib92805b2018-09-28 18:24:27 +0100341
Georgios Pinitasebf6b8a2018-09-24 16:31:08 +0100342 slice_matrix_b.set(Window::DimX, Window::Dimension(0, 1, 1));
343 slice_matrix_b.set(Window::DimY, Window::Dimension(0, 1, 1));
344
345 if(_reinterpret_input_as_3d)
346 {
347 // Pass bottom paddings to the kernel if the input has to be reinterpreted as 3D tensor
348 const unsigned int idx0 = 3 * num_arguments_per_2D_tensor() + 3;
349 const unsigned int total_cross_plane_pad = _input0->info()->padding().top + _input0->info()->padding().bottom;
350 _kernel.setArg<cl_uint>(idx0, static_cast<unsigned int>(total_cross_plane_pad));
351 }
352
353 if(_reinterpret_output_as_3d)
354 {
355 // Pass bottom paddings to the kernel if the output has to be reinterpreted as 3D tensor
356 const unsigned int idx0 = 3 * num_arguments_per_2D_tensor() + 3 + (_reinterpret_input_as_3d ? 1 : 0);
357 const unsigned int total_cross_plane_pad = _output->info()->padding().top + _output->info()->padding().bottom;
358 _kernel.setArg<cl_uint>(idx0, static_cast<unsigned int>(total_cross_plane_pad));
359 }
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100360
361 do
362 {
363 Window slice_b = slice;
364 // Don't slice matrix B along the z dimension if matrix B has just 2 dimensions and matrix A more than 2
Isabella Gottardib92805b2018-09-28 18:24:27 +0100365 // This scenario can happen when the matrix multiplication is used to perform a convolution operation
366 if(!_slide_matrix_b)
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100367 {
368 slice_b = slice_matrix_b;
369 }
370
371 unsigned int idx = 0;
372 add_2D_tensor_argument(idx, _input0, slice);
373 add_2D_tensor_argument(idx, _input1, slice_b);
374 add_2D_tensor_argument(idx, _output, slice);
Georgios Pinitasebf6b8a2018-09-24 16:31:08 +0100375 _kernel.setArg<cl_uint>(idx++, static_cast<unsigned int>(_input0->info()->strides_in_bytes()[2]));
376 _kernel.setArg<cl_uint>(idx++, static_cast<unsigned int>(_input1->info()->strides_in_bytes()[2]));
377 _kernel.setArg<cl_uint>(idx++, static_cast<unsigned int>(_output->info()->strides_in_bytes()[2]));
Anthony Barbierb6eb3532018-08-08 13:20:04 +0100378 enqueue(queue, *this, slice, lws_hint());
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100379 }
Georgios Pinitasebf6b8a2018-09-24 16:31:08 +0100380 while(window.slide_window_slice_3D(slice));
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100381}