blob: e5d199d4ee4827eb13bbd17b62d9891b7b67859c [file] [log] [blame]
giuros01b3204e72019-04-01 13:50:22 +01001/*
2 * Copyright (c) 2019 ARM Limited.
3 *
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"
40#include "support/ToolchainSupport.h"
41
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);
60 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input0, 1, DataType::F32, DataType::F16);
61 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");
68
Gian Marco Iodice7026b302019-06-26 17:18:11 +010069 const unsigned int m = gemm_info.m;
70 const unsigned int n = gemm_info.n;
71 const unsigned int k = gemm_info.k;
giuros01b3204e72019-04-01 13:50:22 +010072
73 ARM_COMPUTE_UNUSED(m);
74 ARM_COMPUTE_UNUSED(n);
75 ARM_COMPUTE_UNUSED(k);
76
Gian Marco Iodice7026b302019-06-26 17:18:11 +010077 ARM_COMPUTE_RETURN_ERROR_ON(input0->dimension(0) != k);
78 ARM_COMPUTE_RETURN_ERROR_ON(input1->dimension(0) != n);
79 ARM_COMPUTE_RETURN_ERROR_ON(input1->dimension(1) != k);
80 if(gemm_info.reinterpret_input_as_3d)
giuros01b3204e72019-04-01 13:50:22 +010081 {
Gian Marco Iodice7026b302019-06-26 17:18:11 +010082 ARM_COMPUTE_RETURN_ERROR_ON(input0->dimension(1) * input0->dimension(2) != m);
giuros01b3204e72019-04-01 13:50:22 +010083 }
84 else
85 {
Gian Marco Iodice7026b302019-06-26 17:18:11 +010086 ARM_COMPUTE_RETURN_ERROR_ON(input0->dimension(1) != m);
giuros01b3204e72019-04-01 13:50:22 +010087 }
88
Gian Marco Iodice944170e2019-06-24 14:40:30 +010089 if(input2 != nullptr && !(helpers::float_ops::is_zero(beta)))
90 {
Gian Marco Iodice7026b302019-06-26 17:18:11 +010091 const unsigned int input2_dim0 = input2->dimension(0);
92 const unsigned int input2_dim1 = input2->dimension(1);
Gian Marco Iodice944170e2019-06-24 14:40:30 +010093
94 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input2, input1);
Gian Marco Iodice7026b302019-06-26 17:18:11 +010095 if(gemm_info.broadcast_bias)
Gian Marco Iodice944170e2019-06-24 14:40:30 +010096 {
97 ARM_COMPUTE_RETURN_ERROR_ON_MSG((input2_dim1 != 1 || input2_dim0 != n), "Incorrect dimension of bias matrix which is to be broadcasted");
98 }
99 else
100 {
101 ARM_COMPUTE_RETURN_ERROR_ON_MSG((input2_dim0 != n || input2_dim1 != m), "Incorrect dimension of bias matrix");
102 }
103 }
104
giuros01b3204e72019-04-01 13:50:22 +0100105 if(output->total_size() != 0)
106 {
107 const TensorInfo tensor_info_output = output->clone()->set_tensor_shape(compute_mm_shape(*input0, *input1, gemm_info));
108 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_SHAPES(output, &tensor_info_output);
109 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input0, output);
110 }
111
112 return Status{};
113}
114
Gian Marco Iodice944170e2019-06-24 14:40:30 +0100115std::pair<Status, Window> validate_and_configure_window(ITensorInfo *input0, ITensorInfo *input1, ITensorInfo *input2, ITensorInfo *output, const GEMMLHSMatrixInfo &lhs_info,
116 const GEMMRHSMatrixInfo &rhs_info,
Gian Marco Iodice7026b302019-06-26 17:18:11 +0100117 const GEMMKernelInfo &gemm_info, ElementsProcessed &num_elements_processed)
giuros01b3204e72019-04-01 13:50:22 +0100118{
119 unsigned int &num_elems_processed_per_iteration_x = num_elements_processed[0];
120 unsigned int &num_elems_processed_per_iteration_y = num_elements_processed[1];
Gian Marco Iodice7026b302019-06-26 17:18:11 +0100121 bool reinterpret_input_as_3d = gemm_info.reinterpret_input_as_3d;
122 bool reinterpret_output_as_3d = gemm_info.depth_output_gemm3d != 0;
giuros01b3204e72019-04-01 13:50:22 +0100123
124 Window win{};
125 Window win_out{};
126 bool window_changed = false;
127
128 // In case both input and output have to be reinterpreted as 3D tensors,
129 // force reinterpret_input_as_3d and reinterpret_output_as_3d to be false.
130 if(reinterpret_input_as_3d == reinterpret_output_as_3d)
131 {
132 reinterpret_output_as_3d = false;
133 }
134
135 // Output tensor auto initialization if not yet initialized
136 auto_init_if_empty(*output, input0->clone()->set_tensor_shape(compute_mm_shape(*input0, *input1, gemm_info)));
137
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
149 // Configure kernel window
150 num_elems_processed_per_iteration_x = rhs_info.n0;
151 num_elems_processed_per_iteration_y = lhs_info.m0;
152
153 // Note: bottom paddings are calculated manually as the output can be reinterpreted as 3D tensor
154 // The only way to set properly the paddings, it is to set those explicitly through the AccessWindowStatic
Gian Marco Iodice7026b302019-06-26 17:18:11 +0100155 const unsigned int m = reinterpret_output_as_3d ? gemm_info.m : input0->dimension(1);
156 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 +0100157
158 win = calculate_max_window(tmp_info, Steps(num_elems_processed_per_iteration_x, num_elems_processed_per_iteration_y));
159 win_out = calculate_max_window(*output, Steps(num_elems_processed_per_iteration_x, num_elems_processed_per_iteration_y));
160
161 AccessWindowStatic input0_access(input0, 0, 0,
162 input0->dimension(0),
163 input0->dimension(1) + bottom_pad);
164 AccessWindowStatic input1_access(input1, 0, 0,
165 ceil_to_multiple(input1->dimension(0), num_elems_processed_per_iteration_x),
166 input1->dimension(1));
167 AccessWindowStatic output_access(output, 0, 0,
168 ceil_to_multiple(output->dimension(0), num_elems_processed_per_iteration_x),
169 output->dimension(1) + bottom_pad);
170
Gian Marco Iodice944170e2019-06-24 14:40:30 +0100171 if(input2 != nullptr)
172 {
173 const int bias_processed_per_iteration_x = num_elems_processed_per_iteration_x;
174
Gian Marco Iodice7026b302019-06-26 17:18:11 +0100175 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 +0100176
177 AccessWindowStatic input2_access(input2, 0, 0,
178 ceil_to_multiple(input2->dimension(0), bias_processed_per_iteration_x),
179 ceil_to_multiple(input2->dimension(1), bias_processed_per_iteration_y));
180
181 window_changed = update_window_and_padding(win, input0_access, input1_access, input2_access) || // window used by the execute_window_loop
182 update_window_and_padding(win_out, output_access); // window used to update the padding requirements of output tensor
183 }
184 else
185 {
186 window_changed = update_window_and_padding(win, input0_access, input1_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 }
giuros01b3204e72019-04-01 13:50:22 +0100189
190 output_access.set_valid_region(win_out, ValidRegion(Coordinates(), output->tensor_shape()));
191
192 // Collapse along the Z direction
193 // This collapse needs to be here in order to tune the Z dimension of LWS
194 Window collapsed = win;
195 const unsigned int dimension_to_collapse = std::min(static_cast<unsigned int>(output->num_dimensions()), 2u);
196 collapsed = win.collapse(win, dimension_to_collapse);
197
198 Status err = (window_changed) ? ARM_COMPUTE_CREATE_ERROR(ErrorCode::RUNTIME_ERROR, "Insufficient Padding!") : Status{};
199 return std::make_pair(err, collapsed);
200}
201} // namespace
202
203CLGEMMMatrixMultiplyNativeKernel::CLGEMMMatrixMultiplyNativeKernel()
Gian Marco Iodice944170e2019-06-24 14:40:30 +0100204 : _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),
205 _add_bias(false), _broadcast_bias(false)
giuros01b3204e72019-04-01 13:50:22 +0100206{
207}
208
Gian Marco Iodice944170e2019-06-24 14:40:30 +0100209void CLGEMMMatrixMultiplyNativeKernel::configure(const ICLTensor *input0, const ICLTensor *input1, const ICLTensor *input2, ICLTensor *output, float alpha, float beta,
210 const GEMMLHSMatrixInfo &lhs_info,
Gian Marco Iodice7026b302019-06-26 17:18:11 +0100211 const GEMMRHSMatrixInfo &rhs_info, const GEMMKernelInfo &gemm_info)
giuros01b3204e72019-04-01 13:50:22 +0100212{
213 ARM_COMPUTE_ERROR_ON_NULLPTR(input0, input1, output);
214
Gian Marco Iodice944170e2019-06-24 14:40:30 +0100215 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 +0100216
217 _input0 = input0;
218 _input1 = input1;
Gian Marco Iodice944170e2019-06-24 14:40:30 +0100219 _input2 = helpers::float_ops::is_zero(beta) ? nullptr : input2;
giuros01b3204e72019-04-01 13:50:22 +0100220 _output = output;
Gian Marco Iodice7026b302019-06-26 17:18:11 +0100221 _reinterpret_input_as_3d = gemm_info.reinterpret_input_as_3d;
222 _reinterpret_output_as_3d = gemm_info.depth_output_gemm3d != 0;
giuros01b3204e72019-04-01 13:50:22 +0100223 _use_dummy_work_items = preferred_dummy_work_items_support(CLKernelLibrary::get().get_device());
Gian Marco Iodice944170e2019-06-24 14:40:30 +0100224 _add_bias = _input2 != nullptr;
Gian Marco Iodice7026b302019-06-26 17:18:11 +0100225 _broadcast_bias = gemm_info.broadcast_bias;
giuros01b3204e72019-04-01 13:50:22 +0100226
227 // In case both input and output have to be reinterpreted as 3D tensors,
228 // force reinterpret_input_as_3d and reinterpret_output_as_3d to be false.
229 if(_reinterpret_input_as_3d == _reinterpret_output_as_3d)
230 {
231 _reinterpret_input_as_3d = false;
232 _reinterpret_output_as_3d = false;
233 }
234
235 // Check if we need to slide the matrix B
236 const unsigned int num_dimensions_input0 = _input0->info()->num_dimensions();
237 _slide_matrix_b = (_input1->info()->num_dimensions() >= num_dimensions_input0);
238
239 ElementsProcessed num_elements_processed{};
240
241 // Configure kernel window
Gian Marco Iodice944170e2019-06-24 14:40:30 +0100242 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 +0100243 ARM_COMPUTE_ERROR_THROW_ON(win_config.first);
244 ICLKernel::configure_internal(win_config.second);
245
246 // Create build options
247 CLBuildOptions build_opts;
248 build_opts.add_option("-DDATA_TYPE=" + get_cl_type_from_data_type(input0->info()->data_type()));
Gian Marco Iodice82d9dd12019-06-10 16:45:40 +0100249 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 +0100250 build_opts.add_option_if(_input2 != nullptr, "-DBETA=" + float_to_string_with_full_precision(beta));
251 build_opts.add_option_if(helpers::float_ops::is_one(beta), "-DUNIT_BETA");
Gian Marco Iodice7026b302019-06-26 17:18:11 +0100252 build_opts.add_option_if(gemm_info.broadcast_bias, "-DBROADCAST_BIAS");
giuros01b3204e72019-04-01 13:50:22 +0100253 build_opts.add_option_if(_reinterpret_input_as_3d, "-DREINTERPRET_INPUT_AS_3D");
254 build_opts.add_option_if(_reinterpret_output_as_3d, "-DREINTERPRET_OUTPUT_AS_3D");
255 build_opts.add_option_if(_reinterpret_input_as_3d || _reinterpret_output_as_3d, "-DHEIGHT_GEMM3D=" + support::cpp11::to_string(output->info()->dimension(1)));
256 build_opts.add_option_if(_reinterpret_input_as_3d || _reinterpret_output_as_3d, "-DDEPTH_GEMM3D=" + support::cpp11::to_string(output->info()->dimension(2)));
257 build_opts.add_option_if(!_slide_matrix_b, "-DMATRIX_B_DEPTH=" + support::cpp11::to_string(input1->info()->dimension(2)));
258 build_opts.add_option_if(_use_dummy_work_items, "-DDUMMY_WORK_ITEMS");
259 build_opts.add_option("-DM=" + support::cpp11::to_string(input0->info()->dimension(1)));
Gian Marco Iodice7026b302019-06-26 17:18:11 +0100260 build_opts.add_option("-DN=" + support::cpp11::to_string(gemm_info.n));
261 build_opts.add_option("-DK=" + support::cpp11::to_string(gemm_info.k));
giuros01b3204e72019-04-01 13:50:22 +0100262 build_opts.add_option("-DM0=" + support::cpp11::to_string(lhs_info.m0));
263 build_opts.add_option("-DN0=" + support::cpp11::to_string(rhs_info.n0));
264 build_opts.add_option("-DK0=" + support::cpp11::to_string(rhs_info.k0));
265
266 std::string kernel_name("gemm_mm_native");
267
268 // Create kernel
269 _kernel = static_cast<cl::Kernel>(CLKernelLibrary::get().create_kernel(kernel_name, build_opts.options()));
270
271 // Set config_id for enabling LWS tuning
272 _config_id = kernel_name;
273 _config_id += "_";
Gian Marco Iodice944170e2019-06-24 14:40:30 +0100274 _config_id += (_add_bias ? "add_bias_" : "");
275 _config_id += (_broadcast_bias ? "broadcast_bias_" : "");
giuros01b3204e72019-04-01 13:50:22 +0100276 _config_id += (_reinterpret_input_as_3d ? "3di_" : "");
277 _config_id += (_reinterpret_output_as_3d ? "3do_" : "");
278 _config_id += lower_string(string_from_data_type(input0->info()->data_type()));
279 _config_id += "_";
280 _config_id += support::cpp11::to_string(output->info()->dimension(1));
281 _config_id += "_";
282 _config_id += support::cpp11::to_string(output->info()->dimension(0));
283 _config_id += "_";
Gian Marco Iodice7026b302019-06-26 17:18:11 +0100284 _config_id += support::cpp11::to_string(gemm_info.k);
giuros01b3204e72019-04-01 13:50:22 +0100285 _config_id += "_";
286 _config_id += support::cpp11::to_string(output->info()->dimension(2));
287 _config_id += "_";
288 _config_id += support::cpp11::to_string(lhs_info.m0);
289 _config_id += "_";
290 _config_id += support::cpp11::to_string(rhs_info.n0);
291 _config_id += "_";
292 _config_id += support::cpp11::to_string(rhs_info.k0);
293}
294
Gian Marco Iodice944170e2019-06-24 14:40:30 +0100295Status CLGEMMMatrixMultiplyNativeKernel::validate(const ITensorInfo *input0, const ITensorInfo *input1, const ITensorInfo *input2, const ITensorInfo *output, float alpha, float beta,
296 const GEMMLHSMatrixInfo &lhs_info,
Gian Marco Iodice7026b302019-06-26 17:18:11 +0100297 const GEMMRHSMatrixInfo &rhs_info, const GEMMKernelInfo &gemm_info)
giuros01b3204e72019-04-01 13:50:22 +0100298{
299 ElementsProcessed num_elements_processed{};
Gian Marco Iodice944170e2019-06-24 14:40:30 +0100300 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 +0100301 ARM_COMPUTE_RETURN_ON_ERROR(validate_and_configure_window(input0->clone().get(),
302 input1->clone().get(),
Gian Marco Iodice944170e2019-06-24 14:40:30 +0100303 input2 != nullptr ? input2->clone().get() : nullptr,
giuros01b3204e72019-04-01 13:50:22 +0100304 output->clone().get(),
305 lhs_info,
306 rhs_info,
307 gemm_info,
308 num_elements_processed)
309 .first);
310
311 return Status{};
312}
313
314void CLGEMMMatrixMultiplyNativeKernel::run(const Window &window, cl::CommandQueue &queue)
315{
316 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
317 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(ICLKernel::window(), window);
318
319 if(_input1->info()->num_dimensions() < 3)
320 {
321 // The stride_z for matrix B must be zero if we do not slice
322 ARM_COMPUTE_ERROR_ON(_input1->info()->strides_in_bytes()[3] != 0);
323 }
324
325 Window slice = window.first_slice_window_3D();
326 Window slice_matrix_b = slice;
327
328 slice_matrix_b.set(Window::DimX, Window::Dimension(0, 1, 1));
329 slice_matrix_b.set(Window::DimY, Window::Dimension(0, 1, 1));
330
331 if(_reinterpret_input_as_3d)
332 {
333 // Pass bottom paddings to the kernel if the input has to be reinterpreted as 3D tensor
Gian Marco Iodice944170e2019-06-24 14:40:30 +0100334 unsigned int idx0;
335 if(_add_bias)
336 {
337 idx0 = 4 * num_arguments_per_2D_tensor() + 4;
338 }
339 else
340 {
341 idx0 = 3 * num_arguments_per_2D_tensor() + 3;
342 }
giuros01b3204e72019-04-01 13:50:22 +0100343 const unsigned int total_cross_plane_pad = _input0->info()->padding().top + _input0->info()->padding().bottom;
344 _kernel.setArg<cl_uint>(idx0, static_cast<unsigned int>(total_cross_plane_pad));
345 }
346
347 if(_reinterpret_output_as_3d)
348 {
349 // Pass bottom paddings to the kernel if the output has to be reinterpreted as 3D tensor
Gian Marco Iodice944170e2019-06-24 14:40:30 +0100350 unsigned int idx0;
351 if(_add_bias)
352 {
353 idx0 = 4 * num_arguments_per_2D_tensor() + 4 + (_reinterpret_input_as_3d ? 1 : 0);
354 }
355 else
356 {
357 idx0 = 3 * num_arguments_per_2D_tensor() + 3 + (_reinterpret_input_as_3d ? 1 : 0);
358 }
giuros01b3204e72019-04-01 13:50:22 +0100359 const unsigned int total_cross_plane_pad = _output->info()->padding().top + _output->info()->padding().bottom;
360 _kernel.setArg<cl_uint>(idx0, static_cast<unsigned int>(total_cross_plane_pad));
361 }
362
363 do
364 {
365 Window slice_b = slice;
366 // Don't slice matrix B along the z dimension if matrix B has just 2 dimensions and matrix A more than 2
367 // This scenario can happen when the matrix multiplication is used to perform a convolution operation
368 if(!_slide_matrix_b)
369 {
370 slice_b = slice_matrix_b;
371 }
372
373 unsigned int idx = 0;
374 add_2D_tensor_argument(idx, _input0, slice);
375 add_2D_tensor_argument(idx, _input1, slice_b);
Gian Marco Iodice944170e2019-06-24 14:40:30 +0100376 if(_add_bias)
377 {
378 add_2D_tensor_argument(idx, _input2, slice);
379 }
giuros01b3204e72019-04-01 13:50:22 +0100380 add_2D_tensor_argument(idx, _output, slice);
381 _kernel.setArg<cl_uint>(idx++, static_cast<unsigned int>(_input0->info()->strides_in_bytes()[2]));
382 _kernel.setArg<cl_uint>(idx++, static_cast<unsigned int>(_input1->info()->strides_in_bytes()[2]));
Gian Marco Iodice944170e2019-06-24 14:40:30 +0100383 if(_add_bias)
384 {
385 _kernel.setArg<cl_uint>(idx++, static_cast<unsigned int>(_input2->info()->strides_in_bytes()[2]));
386 }
giuros01b3204e72019-04-01 13:50:22 +0100387 _kernel.setArg<cl_uint>(idx++, static_cast<unsigned int>(_output->info()->strides_in_bytes()[2]));
388 enqueue(queue, *this, slice, lws_hint(), _use_dummy_work_items);
389 }
390 while(window.slide_window_slice_3D(slice));
391}
392} // namespace arm_compute