blob: 5472bb8127b2a56c58c0c79019e3d057c8c8e121 [file] [log] [blame]
giuros01b3204e72019-04-01 13:50:22 +01001/*
Michele Di Giorgiod9eaf612020-07-08 11:12:57 +01002 * Copyright (c) 2019-2020 Arm Limited.
giuros01b3204e72019-04-01 13:50:22 +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/CLGEMMMatrixMultiplyNativeKernel.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"
Gian Marco Iodice82d9dd12019-06-10 16:45:40 +010038#include "arm_compute/core/utils/helpers/float_ops.h"
giuros01b3204e72019-04-01 13:50:22 +010039#include "arm_compute/core/utils/misc/ShapeCalculator.h"
Matthew Bentham758b5ba2020-03-05 23:37:48 +000040#include "support/StringSupport.h"
giuros01b3204e72019-04-01 13:50:22 +010041
42#include <cstddef>
43#include <cstdint>
44#include <tuple>
45
46using namespace arm_compute::misc::shape_calculator;
47
48namespace arm_compute
49{
50namespace
51{
52using ElementsProcessed = Steps;
53
Gian Marco Iodice944170e2019-06-24 14:40:30 +010054Status validate_arguments(const ITensorInfo *input0, const ITensorInfo *input1, const ITensorInfo *input2, const ITensorInfo *output, float alpha, float beta, const GEMMLHSMatrixInfo &lhs_info,
55 const GEMMRHSMatrixInfo &rhs_info,
Gian Marco Iodice7026b302019-06-26 17:18:11 +010056 const GEMMKernelInfo &gemm_info)
giuros01b3204e72019-04-01 13:50:22 +010057{
58 ARM_COMPUTE_UNUSED(alpha);
59 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(input0, input1, output);
Gian Marco Iodiced820db62019-08-05 14:23:23 +010060 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input0, 1, DataType::F32);
giuros01b3204e72019-04-01 13:50:22 +010061 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input0, input1);
62 ARM_COMPUTE_RETURN_ERROR_ON_MSG(input0->num_dimensions() > 4, "The number of dimensions for the LHS matrix must be <= 4");
63 ARM_COMPUTE_RETURN_ERROR_ON_MSG(input1->num_dimensions() > 3, "The number of dimensions for the RHS matrix must be <= 3");
64 ARM_COMPUTE_RETURN_ERROR_ON_MSG(((rhs_info.k0 & (rhs_info.k0 - 1)) && rhs_info.k0 != 3), "Only 2,3,4,8,16 are supported for k0");
65 ARM_COMPUTE_RETURN_ERROR_ON(rhs_info.k0 > 16);
66 ARM_COMPUTE_RETURN_ERROR_ON(lhs_info.m0 < 1 || lhs_info.m0 > 8);
67 ARM_COMPUTE_RETURN_ERROR_ON_MSG(((rhs_info.n0 & (rhs_info.n0 - 1)) && rhs_info.n0 != 3), "Only 2,3,4,8,16 are supported for n0");
Gian Marco Iodiceb238f5f2019-08-02 09:09:53 +010068 ARM_COMPUTE_RETURN_ERROR_ON_MSG((gemm_info.reinterpret_input_as_3d || gemm_info.depth_output_gemm3d != 0) && (input2 != nullptr)
Gian Marco Iodiced820db62019-08-05 14:23:23 +010069 && (!gemm_info.broadcast_bias),
70 "Bias addition only supported with broadcast mode in case the input or output has to be reinterpreted as 3D");
Gian Marco Iodice0c17aa22019-09-27 09:23:15 +010071 ARM_COMPUTE_RETURN_ERROR_ON_MSG(gemm_info.fp_mixed_precision, "Mixed precision not supported");
Gian Marco Iodicedd717c32020-05-28 10:22:03 +010072 ARM_COMPUTE_RETURN_ERROR_ON_MSG(rhs_info.export_to_cl_image, "Export to CLImage not supported for GEMM native");
giuros01b3204e72019-04-01 13:50:22 +010073
Gian Marco Iodice7026b302019-06-26 17:18:11 +010074 const unsigned int m = gemm_info.m;
75 const unsigned int n = gemm_info.n;
76 const unsigned int k = gemm_info.k;
giuros01b3204e72019-04-01 13:50:22 +010077
78 ARM_COMPUTE_UNUSED(m);
79 ARM_COMPUTE_UNUSED(n);
80 ARM_COMPUTE_UNUSED(k);
81
Gian Marco Iodice7026b302019-06-26 17:18:11 +010082 ARM_COMPUTE_RETURN_ERROR_ON(input0->dimension(0) != k);
83 ARM_COMPUTE_RETURN_ERROR_ON(input1->dimension(0) != n);
84 ARM_COMPUTE_RETURN_ERROR_ON(input1->dimension(1) != k);
85 if(gemm_info.reinterpret_input_as_3d)
giuros01b3204e72019-04-01 13:50:22 +010086 {
Gian Marco Iodice7026b302019-06-26 17:18:11 +010087 ARM_COMPUTE_RETURN_ERROR_ON(input0->dimension(1) * input0->dimension(2) != m);
giuros01b3204e72019-04-01 13:50:22 +010088 }
89 else
90 {
Gian Marco Iodice7026b302019-06-26 17:18:11 +010091 ARM_COMPUTE_RETURN_ERROR_ON(input0->dimension(1) != m);
giuros01b3204e72019-04-01 13:50:22 +010092 }
93
Gian Marco Iodice944170e2019-06-24 14:40:30 +010094 if(input2 != nullptr && !(helpers::float_ops::is_zero(beta)))
95 {
Gian Marco Iodice7026b302019-06-26 17:18:11 +010096 const unsigned int input2_dim0 = input2->dimension(0);
97 const unsigned int input2_dim1 = input2->dimension(1);
Gian Marco Iodice944170e2019-06-24 14:40:30 +010098
99 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input2, input1);
Gian Marco Iodice7026b302019-06-26 17:18:11 +0100100 if(gemm_info.broadcast_bias)
Gian Marco Iodice944170e2019-06-24 14:40:30 +0100101 {
102 ARM_COMPUTE_RETURN_ERROR_ON_MSG((input2_dim1 != 1 || input2_dim0 != n), "Incorrect dimension of bias matrix which is to be broadcasted");
103 }
104 else
105 {
106 ARM_COMPUTE_RETURN_ERROR_ON_MSG((input2_dim0 != n || input2_dim1 != m), "Incorrect dimension of bias matrix");
107 }
108 }
109
giuros01b3204e72019-04-01 13:50:22 +0100110 if(output->total_size() != 0)
111 {
112 const TensorInfo tensor_info_output = output->clone()->set_tensor_shape(compute_mm_shape(*input0, *input1, gemm_info));
113 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_SHAPES(output, &tensor_info_output);
114 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input0, output);
115 }
116
117 return Status{};
118}
119
Gian Marco Iodice944170e2019-06-24 14:40:30 +0100120std::pair<Status, Window> validate_and_configure_window(ITensorInfo *input0, ITensorInfo *input1, ITensorInfo *input2, ITensorInfo *output, const GEMMLHSMatrixInfo &lhs_info,
121 const GEMMRHSMatrixInfo &rhs_info,
Gian Marco Iodice7026b302019-06-26 17:18:11 +0100122 const GEMMKernelInfo &gemm_info, ElementsProcessed &num_elements_processed)
giuros01b3204e72019-04-01 13:50:22 +0100123{
124 unsigned int &num_elems_processed_per_iteration_x = num_elements_processed[0];
125 unsigned int &num_elems_processed_per_iteration_y = num_elements_processed[1];
Gian Marco Iodice7026b302019-06-26 17:18:11 +0100126 bool reinterpret_input_as_3d = gemm_info.reinterpret_input_as_3d;
127 bool reinterpret_output_as_3d = gemm_info.depth_output_gemm3d != 0;
giuros01b3204e72019-04-01 13:50:22 +0100128
129 Window win{};
130 Window win_out{};
131 bool window_changed = false;
132
133 // In case both input and output have to be reinterpreted as 3D tensors,
134 // force reinterpret_input_as_3d and reinterpret_output_as_3d to be false.
135 if(reinterpret_input_as_3d == reinterpret_output_as_3d)
136 {
137 reinterpret_output_as_3d = false;
138 }
139
140 // Output tensor auto initialization if not yet initialized
141 auto_init_if_empty(*output, input0->clone()->set_tensor_shape(compute_mm_shape(*input0, *input1, gemm_info)));
142
143 TensorInfo tmp_info(*output);
144
145 if(reinterpret_output_as_3d)
146 {
147 // Since the output tensor has to be reinterpreted as 3D and the execute window is based on a 2D GEMM,
148 // the window needs to be constructed on the 2D collapsed version of the tensor
149 TensorShape tmp_shape(output->tensor_shape());
150 tmp_shape.collapse(2U, 1U);
151 tmp_info.set_tensor_shape(tmp_shape);
152 }
153
154 // Configure kernel window
155 num_elems_processed_per_iteration_x = rhs_info.n0;
156 num_elems_processed_per_iteration_y = lhs_info.m0;
157
158 // Note: bottom paddings are calculated manually as the output can be reinterpreted as 3D tensor
159 // The only way to set properly the paddings, it is to set those explicitly through the AccessWindowStatic
Gian Marco Iodice7b9d7ca2019-09-19 16:37:39 +0100160 const unsigned int m = reinterpret_output_as_3d ? gemm_info.m : output->dimension(1);
Gian Marco Iodice7026b302019-06-26 17:18:11 +0100161 const unsigned int bottom_pad = (num_elems_processed_per_iteration_y - (m % num_elems_processed_per_iteration_y)) % num_elems_processed_per_iteration_y;
giuros01b3204e72019-04-01 13:50:22 +0100162
163 win = calculate_max_window(tmp_info, Steps(num_elems_processed_per_iteration_x, num_elems_processed_per_iteration_y));
164 win_out = calculate_max_window(*output, Steps(num_elems_processed_per_iteration_x, num_elems_processed_per_iteration_y));
165
166 AccessWindowStatic input0_access(input0, 0, 0,
167 input0->dimension(0),
168 input0->dimension(1) + bottom_pad);
169 AccessWindowStatic input1_access(input1, 0, 0,
170 ceil_to_multiple(input1->dimension(0), num_elems_processed_per_iteration_x),
171 input1->dimension(1));
172 AccessWindowStatic output_access(output, 0, 0,
173 ceil_to_multiple(output->dimension(0), num_elems_processed_per_iteration_x),
174 output->dimension(1) + bottom_pad);
175
Gian Marco Iodice944170e2019-06-24 14:40:30 +0100176 if(input2 != nullptr)
177 {
178 const int bias_processed_per_iteration_x = num_elems_processed_per_iteration_x;
179
Gian Marco Iodice7026b302019-06-26 17:18:11 +0100180 const int bias_processed_per_iteration_y = gemm_info.broadcast_bias ? 1 : num_elems_processed_per_iteration_y;
Gian Marco Iodice944170e2019-06-24 14:40:30 +0100181
182 AccessWindowStatic input2_access(input2, 0, 0,
183 ceil_to_multiple(input2->dimension(0), bias_processed_per_iteration_x),
184 ceil_to_multiple(input2->dimension(1), bias_processed_per_iteration_y));
185
186 window_changed = update_window_and_padding(win, input0_access, input1_access, input2_access) || // window used by the execute_window_loop
187 update_window_and_padding(win_out, output_access); // window used to update the padding requirements of output tensor
188 }
189 else
190 {
191 window_changed = update_window_and_padding(win, input0_access, input1_access) || // window used by the execute_window_loop
192 update_window_and_padding(win_out, output_access); // window used to update the padding requirements of output tensor
193 }
giuros01b3204e72019-04-01 13:50:22 +0100194
195 output_access.set_valid_region(win_out, ValidRegion(Coordinates(), output->tensor_shape()));
196
197 // Collapse along the Z direction
198 // This collapse needs to be here in order to tune the Z dimension of LWS
199 Window collapsed = win;
200 const unsigned int dimension_to_collapse = std::min(static_cast<unsigned int>(output->num_dimensions()), 2u);
201 collapsed = win.collapse(win, dimension_to_collapse);
202
203 Status err = (window_changed) ? ARM_COMPUTE_CREATE_ERROR(ErrorCode::RUNTIME_ERROR, "Insufficient Padding!") : Status{};
204 return std::make_pair(err, collapsed);
205}
206} // namespace
207
208CLGEMMMatrixMultiplyNativeKernel::CLGEMMMatrixMultiplyNativeKernel()
Gian Marco Iodice944170e2019-06-24 14:40:30 +0100209 : _input0(nullptr), _input1(nullptr), _input2(nullptr), _output(nullptr), _slide_matrix_b(true), _reinterpret_input_as_3d(false), _reinterpret_output_as_3d(false), _use_dummy_work_items(false),
210 _add_bias(false), _broadcast_bias(false)
giuros01b3204e72019-04-01 13:50:22 +0100211{
212}
213
Gian Marco Iodice944170e2019-06-24 14:40:30 +0100214void CLGEMMMatrixMultiplyNativeKernel::configure(const ICLTensor *input0, const ICLTensor *input1, const ICLTensor *input2, ICLTensor *output, float alpha, float beta,
215 const GEMMLHSMatrixInfo &lhs_info,
Gian Marco Iodice7026b302019-06-26 17:18:11 +0100216 const GEMMRHSMatrixInfo &rhs_info, const GEMMKernelInfo &gemm_info)
giuros01b3204e72019-04-01 13:50:22 +0100217{
Manuel Bottini4c6bd512020-04-08 10:15:51 +0100218 configure(CLKernelLibrary::get().get_compile_context(), input0, input1, input2, output, alpha, beta, lhs_info, rhs_info, gemm_info);
219}
220
Manuel Bottini679fc962020-04-21 16:08:53 +0100221void CLGEMMMatrixMultiplyNativeKernel::configure(const CLCompileContext &compile_context, const ICLTensor *input0, const ICLTensor *input1, const ICLTensor *input2, ICLTensor *output, float alpha,
Manuel Bottini4c6bd512020-04-08 10:15:51 +0100222 float beta,
223 const GEMMLHSMatrixInfo &lhs_info,
224 const GEMMRHSMatrixInfo &rhs_info, const GEMMKernelInfo &gemm_info)
225{
giuros01b3204e72019-04-01 13:50:22 +0100226 ARM_COMPUTE_ERROR_ON_NULLPTR(input0, input1, output);
227
Gian Marco Iodice944170e2019-06-24 14:40:30 +0100228 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(input0->info(), input1->info(), (input2 != nullptr ? input2->info() : nullptr), output->info(), alpha, beta, lhs_info, rhs_info, gemm_info));
giuros01b3204e72019-04-01 13:50:22 +0100229
230 _input0 = input0;
231 _input1 = input1;
Gian Marco Iodice944170e2019-06-24 14:40:30 +0100232 _input2 = helpers::float_ops::is_zero(beta) ? nullptr : input2;
giuros01b3204e72019-04-01 13:50:22 +0100233 _output = output;
Gian Marco Iodice7026b302019-06-26 17:18:11 +0100234 _reinterpret_input_as_3d = gemm_info.reinterpret_input_as_3d;
235 _reinterpret_output_as_3d = gemm_info.depth_output_gemm3d != 0;
giuros01b3204e72019-04-01 13:50:22 +0100236 _use_dummy_work_items = preferred_dummy_work_items_support(CLKernelLibrary::get().get_device());
Gian Marco Iodice944170e2019-06-24 14:40:30 +0100237 _add_bias = _input2 != nullptr;
Gian Marco Iodice7026b302019-06-26 17:18:11 +0100238 _broadcast_bias = gemm_info.broadcast_bias;
giuros01b3204e72019-04-01 13:50:22 +0100239
240 // In case both input and output have to be reinterpreted as 3D tensors,
241 // force reinterpret_input_as_3d and reinterpret_output_as_3d to be false.
242 if(_reinterpret_input_as_3d == _reinterpret_output_as_3d)
243 {
244 _reinterpret_input_as_3d = false;
245 _reinterpret_output_as_3d = false;
246 }
247
248 // Check if we need to slide the matrix B
249 const unsigned int num_dimensions_input0 = _input0->info()->num_dimensions();
250 _slide_matrix_b = (_input1->info()->num_dimensions() >= num_dimensions_input0);
251
252 ElementsProcessed num_elements_processed{};
253
254 // Configure kernel window
Gian Marco Iodice944170e2019-06-24 14:40:30 +0100255 auto win_config = validate_and_configure_window(input0->info(), input1->info(), input2 != nullptr ? input2->info() : nullptr, output->info(), lhs_info, rhs_info, gemm_info, num_elements_processed);
giuros01b3204e72019-04-01 13:50:22 +0100256 ARM_COMPUTE_ERROR_THROW_ON(win_config.first);
257 ICLKernel::configure_internal(win_config.second);
258
Gian Marco Iodice7b9d7ca2019-09-19 16:37:39 +0100259 // If _reinterpret_input_as_3d = _reinterpret_output_as_3d = true,
260 // we will dispatch a batched-GEMM to reduce the complexity of the address calculation within the OpenCL kernel.
261 // This means that the actual m used by the kernel is given by output->info()->dimension(1) and not by gemm_info.m
262 const unsigned int internal_m = _reinterpret_output_as_3d ? gemm_info.m : output->info()->dimension(1);
263
264 const unsigned int h_gemm_3d = _reinterpret_output_as_3d ? output->info()->dimension(1) : input0->info()->dimension(1);
265 const unsigned int d_gemm_3d = _reinterpret_output_as_3d ? output->info()->dimension(2) : input0->info()->dimension(2);
266
giuros01b3204e72019-04-01 13:50:22 +0100267 // Create build options
268 CLBuildOptions build_opts;
269 build_opts.add_option("-DDATA_TYPE=" + get_cl_type_from_data_type(input0->info()->data_type()));
Gian Marco Iodice82d9dd12019-06-10 16:45:40 +0100270 build_opts.add_option_if(!(helpers::float_ops::is_one(alpha)), "-DALPHA=" + float_to_string_with_full_precision(alpha));
Gian Marco Iodice944170e2019-06-24 14:40:30 +0100271 build_opts.add_option_if(_input2 != nullptr, "-DBETA=" + float_to_string_with_full_precision(beta));
272 build_opts.add_option_if(helpers::float_ops::is_one(beta), "-DUNIT_BETA");
Gian Marco Iodice7026b302019-06-26 17:18:11 +0100273 build_opts.add_option_if(gemm_info.broadcast_bias, "-DBROADCAST_BIAS");
giuros01b3204e72019-04-01 13:50:22 +0100274 build_opts.add_option_if(_reinterpret_input_as_3d, "-DREINTERPRET_INPUT_AS_3D");
275 build_opts.add_option_if(_reinterpret_output_as_3d, "-DREINTERPRET_OUTPUT_AS_3D");
Gian Marco Iodice7b9d7ca2019-09-19 16:37:39 +0100276 build_opts.add_option_if(_reinterpret_input_as_3d || _reinterpret_output_as_3d, "-DHEIGHT_GEMM3D=" + support::cpp11::to_string(h_gemm_3d));
277 build_opts.add_option_if(_reinterpret_input_as_3d || _reinterpret_output_as_3d, "-DDEPTH_GEMM3D=" + support::cpp11::to_string(d_gemm_3d));
giuros01b3204e72019-04-01 13:50:22 +0100278 build_opts.add_option_if(!_slide_matrix_b, "-DMATRIX_B_DEPTH=" + support::cpp11::to_string(input1->info()->dimension(2)));
279 build_opts.add_option_if(_use_dummy_work_items, "-DDUMMY_WORK_ITEMS");
Gian Marco Iodice7b9d7ca2019-09-19 16:37:39 +0100280 build_opts.add_option("-DM=" + support::cpp11::to_string(internal_m));
Gian Marco Iodice7026b302019-06-26 17:18:11 +0100281 build_opts.add_option("-DN=" + support::cpp11::to_string(gemm_info.n));
282 build_opts.add_option("-DK=" + support::cpp11::to_string(gemm_info.k));
giuros01b3204e72019-04-01 13:50:22 +0100283 build_opts.add_option("-DM0=" + support::cpp11::to_string(lhs_info.m0));
284 build_opts.add_option("-DN0=" + support::cpp11::to_string(rhs_info.n0));
285 build_opts.add_option("-DK0=" + support::cpp11::to_string(rhs_info.k0));
Gian Marco Iodiceca1f4602019-07-16 15:46:48 +0100286 build_opts.add_option_if(gemm_info.activation_info.enabled(), "-DACTIVATION_TYPE=" + lower_string(string_from_activation_func(gemm_info.activation_info.activation())));
287 build_opts.add_option_if(gemm_info.activation_info.enabled(), "-DA_VAL=" + float_to_string_with_full_precision(gemm_info.activation_info.a()));
288 build_opts.add_option_if(gemm_info.activation_info.enabled(), "-DB_VAL=" + float_to_string_with_full_precision(gemm_info.activation_info.b()));
giuros01b3204e72019-04-01 13:50:22 +0100289
290 std::string kernel_name("gemm_mm_native");
291
292 // Create kernel
Manuel Bottini4c6bd512020-04-08 10:15:51 +0100293 _kernel = create_kernel(compile_context, kernel_name, build_opts.options());
giuros01b3204e72019-04-01 13:50:22 +0100294
295 // Set config_id for enabling LWS tuning
296 _config_id = kernel_name;
297 _config_id += "_";
Gian Marco Iodice944170e2019-06-24 14:40:30 +0100298 _config_id += (_add_bias ? "add_bias_" : "");
299 _config_id += (_broadcast_bias ? "broadcast_bias_" : "");
giuros01b3204e72019-04-01 13:50:22 +0100300 _config_id += (_reinterpret_input_as_3d ? "3di_" : "");
301 _config_id += (_reinterpret_output_as_3d ? "3do_" : "");
Gian Marco Iodiceca1f4602019-07-16 15:46:48 +0100302 _config_id += (gemm_info.activation_info.enabled() ? "fused_activation_" : "");
giuros01b3204e72019-04-01 13:50:22 +0100303 _config_id += lower_string(string_from_data_type(input0->info()->data_type()));
304 _config_id += "_";
305 _config_id += support::cpp11::to_string(output->info()->dimension(1));
306 _config_id += "_";
307 _config_id += support::cpp11::to_string(output->info()->dimension(0));
308 _config_id += "_";
Gian Marco Iodice7026b302019-06-26 17:18:11 +0100309 _config_id += support::cpp11::to_string(gemm_info.k);
giuros01b3204e72019-04-01 13:50:22 +0100310 _config_id += "_";
311 _config_id += support::cpp11::to_string(output->info()->dimension(2));
312 _config_id += "_";
313 _config_id += support::cpp11::to_string(lhs_info.m0);
314 _config_id += "_";
315 _config_id += support::cpp11::to_string(rhs_info.n0);
316 _config_id += "_";
317 _config_id += support::cpp11::to_string(rhs_info.k0);
318}
319
Gian Marco Iodice944170e2019-06-24 14:40:30 +0100320Status CLGEMMMatrixMultiplyNativeKernel::validate(const ITensorInfo *input0, const ITensorInfo *input1, const ITensorInfo *input2, const ITensorInfo *output, float alpha, float beta,
321 const GEMMLHSMatrixInfo &lhs_info,
Gian Marco Iodice7026b302019-06-26 17:18:11 +0100322 const GEMMRHSMatrixInfo &rhs_info, const GEMMKernelInfo &gemm_info)
giuros01b3204e72019-04-01 13:50:22 +0100323{
324 ElementsProcessed num_elements_processed{};
Gian Marco Iodice944170e2019-06-24 14:40:30 +0100325 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(input0, input1, input2, output, alpha, beta, lhs_info, rhs_info, gemm_info));
giuros01b3204e72019-04-01 13:50:22 +0100326 ARM_COMPUTE_RETURN_ON_ERROR(validate_and_configure_window(input0->clone().get(),
327 input1->clone().get(),
Gian Marco Iodice944170e2019-06-24 14:40:30 +0100328 input2 != nullptr ? input2->clone().get() : nullptr,
giuros01b3204e72019-04-01 13:50:22 +0100329 output->clone().get(),
330 lhs_info,
331 rhs_info,
332 gemm_info,
333 num_elements_processed)
334 .first);
335
336 return Status{};
337}
338
339void CLGEMMMatrixMultiplyNativeKernel::run(const Window &window, cl::CommandQueue &queue)
340{
341 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
342 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(ICLKernel::window(), window);
343
344 if(_input1->info()->num_dimensions() < 3)
345 {
346 // The stride_z for matrix B must be zero if we do not slice
347 ARM_COMPUTE_ERROR_ON(_input1->info()->strides_in_bytes()[3] != 0);
348 }
349
350 Window slice = window.first_slice_window_3D();
351 Window slice_matrix_b = slice;
352
353 slice_matrix_b.set(Window::DimX, Window::Dimension(0, 1, 1));
354 slice_matrix_b.set(Window::DimY, Window::Dimension(0, 1, 1));
355
356 if(_reinterpret_input_as_3d)
357 {
358 // Pass bottom paddings to the kernel if the input has to be reinterpreted as 3D tensor
Gian Marco Iodice944170e2019-06-24 14:40:30 +0100359 unsigned int idx0;
360 if(_add_bias)
361 {
362 idx0 = 4 * num_arguments_per_2D_tensor() + 4;
363 }
364 else
365 {
366 idx0 = 3 * num_arguments_per_2D_tensor() + 3;
367 }
giuros01b3204e72019-04-01 13:50:22 +0100368 const unsigned int total_cross_plane_pad = _input0->info()->padding().top + _input0->info()->padding().bottom;
369 _kernel.setArg<cl_uint>(idx0, static_cast<unsigned int>(total_cross_plane_pad));
370 }
371
372 if(_reinterpret_output_as_3d)
373 {
374 // Pass bottom paddings to the kernel if the output has to be reinterpreted as 3D tensor
Gian Marco Iodice944170e2019-06-24 14:40:30 +0100375 unsigned int idx0;
376 if(_add_bias)
377 {
378 idx0 = 4 * num_arguments_per_2D_tensor() + 4 + (_reinterpret_input_as_3d ? 1 : 0);
379 }
380 else
381 {
382 idx0 = 3 * num_arguments_per_2D_tensor() + 3 + (_reinterpret_input_as_3d ? 1 : 0);
383 }
giuros01b3204e72019-04-01 13:50:22 +0100384 const unsigned int total_cross_plane_pad = _output->info()->padding().top + _output->info()->padding().bottom;
385 _kernel.setArg<cl_uint>(idx0, static_cast<unsigned int>(total_cross_plane_pad));
386 }
387
388 do
389 {
390 Window slice_b = slice;
391 // Don't slice matrix B along the z dimension if matrix B has just 2 dimensions and matrix A more than 2
392 // This scenario can happen when the matrix multiplication is used to perform a convolution operation
393 if(!_slide_matrix_b)
394 {
395 slice_b = slice_matrix_b;
396 }
397
398 unsigned int idx = 0;
399 add_2D_tensor_argument(idx, _input0, slice);
400 add_2D_tensor_argument(idx, _input1, slice_b);
Gian Marco Iodice944170e2019-06-24 14:40:30 +0100401 if(_add_bias)
402 {
403 add_2D_tensor_argument(idx, _input2, slice);
404 }
giuros01b3204e72019-04-01 13:50:22 +0100405 add_2D_tensor_argument(idx, _output, slice);
406 _kernel.setArg<cl_uint>(idx++, static_cast<unsigned int>(_input0->info()->strides_in_bytes()[2]));
407 _kernel.setArg<cl_uint>(idx++, static_cast<unsigned int>(_input1->info()->strides_in_bytes()[2]));
Gian Marco Iodice944170e2019-06-24 14:40:30 +0100408 if(_add_bias)
409 {
410 _kernel.setArg<cl_uint>(idx++, static_cast<unsigned int>(_input2->info()->strides_in_bytes()[2]));
411 }
giuros01b3204e72019-04-01 13:50:22 +0100412 _kernel.setArg<cl_uint>(idx++, static_cast<unsigned int>(_output->info()->strides_in_bytes()[2]));
413 enqueue(queue, *this, slice, lws_hint(), _use_dummy_work_items);
414 }
415 while(window.slide_window_slice_3D(slice));
416}
417} // namespace arm_compute