blob: 44367268521fabf6a78735d40fb0fdb2bd2af2b1 [file] [log] [blame]
Gian Marco Iodicebf9731e2018-12-12 10:18:04 +00001/*
Gian Marco Iodicebacfec52019-01-11 11:30:55 +00002 * Copyright (c) 2018-2019 ARM Limited.
Gian Marco Iodicebf9731e2018-12-12 10:18:04 +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/CLGEMMMatrixMultiplyReshapedKernel.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"
Georgios Pinitas8f5802f2019-02-22 11:08:32 +000029#include "arm_compute/core/CL/CLValidate.h"
Gian Marco Iodicebf9731e2018-12-12 10:18:04 +000030#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"
34#include "arm_compute/core/TensorInfo.h"
35#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 Marco Iodice82d9dd12019-06-10 16:45:40 +010039#include "arm_compute/core/utils/helpers/float_ops.h"
Gian Marco Iodicebf9731e2018-12-12 10:18:04 +000040#include "arm_compute/core/utils/misc/ShapeCalculator.h"
41#include "support/ToolchainSupport.h"
42
43#include <cstddef>
44#include <cstdint>
45#include <tuple>
46
47using namespace arm_compute;
48using namespace arm_compute::misc::shape_calculator;
49
50namespace arm_compute
51{
52class Coordinates;
53} // namespace arm_compute
54
55namespace
56{
57using ElementsProcessed = Steps;
58
Gian Marco Iodicee16c8902019-06-14 16:11:10 +010059Status validate_arguments(const ITensorInfo *input0, const ITensorInfo *input1, const ITensorInfo *input2, const ITensorInfo *output, float alpha, float beta, const GEMMLHSMatrixInfo &lhs_info,
60 const GEMMRHSMatrixInfo &rhs_info,
61 const GEMMReshapeInfo &gemm_info)
Gian Marco Iodicebf9731e2018-12-12 10:18:04 +000062{
63 ARM_COMPUTE_UNUSED(alpha);
64 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(input0, input1, output);
Georgios Pinitas8f5802f2019-02-22 11:08:32 +000065 ARM_COMPUTE_RETURN_ERROR_ON_F16_UNSUPPORTED(input0);
Gian Marco Iodicebf9731e2018-12-12 10:18:04 +000066 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input0, 1, DataType::F32, DataType::F16);
67 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input0, input1);
68 ARM_COMPUTE_RETURN_ERROR_ON_MSG(input0->num_dimensions() > 4, "The number of dimensions for the LHS matrix must be <= 4");
69 ARM_COMPUTE_RETURN_ERROR_ON_MSG(input1->num_dimensions() > 3, "The number of dimensions for the RHS matrix must be <= 3");
70 ARM_COMPUTE_RETURN_ERROR_ON(lhs_info.transpose);
71 ARM_COMPUTE_RETURN_ERROR_ON(!rhs_info.transpose);
72 ARM_COMPUTE_RETURN_ERROR_ON(lhs_info.k0 != rhs_info.k0);
Gian Marco Iodicebacfec52019-01-11 11:30:55 +000073 ARM_COMPUTE_RETURN_ERROR_ON_MSG(((lhs_info.k0 & (lhs_info.k0 - 1)) && lhs_info.k0 != 3), "Only 2,3,4,8,16 are supported for k0");
74 ARM_COMPUTE_RETURN_ERROR_ON(lhs_info.k0 > 16);
Gian Marco Iodicebf9731e2018-12-12 10:18:04 +000075 ARM_COMPUTE_RETURN_ERROR_ON(lhs_info.m0 < 2 || lhs_info.m0 > 8);
Gian Marco Iodicebacfec52019-01-11 11:30:55 +000076 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 Iodicebf9731e2018-12-12 10:18:04 +000077
78 const int m = gemm_info.m();
79 const int n = gemm_info.n();
80 const int k = gemm_info.k();
81
82 TensorShape tensor_shape0{ input0->tensor_shape() };
83 tensor_shape0.set(0, k);
84 tensor_shape0.set(1, m);
85
86 TensorShape tensor_shape1{ input1->tensor_shape() };
87 tensor_shape1.set(0, n);
88 tensor_shape1.set(1, k);
89
Gian Marco Iodicee16c8902019-06-14 16:11:10 +010090 if(input2 != nullptr && !(helpers::float_ops::is_zero(beta)))
91 {
92 const int input2_dim0 = static_cast<int>(input2->dimension(0));
93 const int input2_dim1 = static_cast<int>(input2->dimension(1));
94
95 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input2, input1);
96 if(gemm_info.broadcast_bias())
97 {
98 ARM_COMPUTE_RETURN_ERROR_ON_MSG((input2_dim1 != 1 || input2_dim0 != n), "Incorrect dimension of bias matrix which is to be broadcasted");
99 }
100 else
101 {
102 ARM_COMPUTE_RETURN_ERROR_ON_MSG((input2_dim0 != n || input2_dim1 != m), "Incorrect dimension of bias matrix");
103 }
104 }
105
Gian Marco Iodicebf9731e2018-12-12 10:18:04 +0000106 const TensorInfo tensor_info0 = input0->clone()->set_tensor_shape(tensor_shape0);
107 const TensorInfo tensor_info1 = input1->clone()->set_tensor_shape(tensor_shape1);
108
109 const TensorInfo tensor_info_reshaped0 = input0->clone()->set_tensor_shape(compute_lhs_reshaped_shape(tensor_info0, lhs_info));
110 const TensorInfo tensor_info_reshaped1 = input1->clone()->set_tensor_shape(compute_rhs_reshaped_shape(tensor_info1, rhs_info));
111
112 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_SHAPES(input0, &tensor_info_reshaped0);
113 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_SHAPES(input1, &tensor_info_reshaped1);
114
115 if(output->total_size() != 0)
116 {
117 const TensorInfo tensor_info_output = output->clone()->set_tensor_shape(compute_mm_shape(*input0, *input1, gemm_info));
118 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_SHAPES(output, &tensor_info_output);
119 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input0, output);
120 }
121
122 return Status{};
123}
124
Gian Marco Iodicee16c8902019-06-14 16:11:10 +0100125std::pair<Status, Window> validate_and_configure_window(ITensorInfo *input0, ITensorInfo *input1, ITensorInfo *input2, ITensorInfo *output, const GEMMLHSMatrixInfo &lhs_info,
126 const GEMMRHSMatrixInfo &rhs_info,
Gian Marco Iodicebf9731e2018-12-12 10:18:04 +0000127 const GEMMReshapeInfo &gemm_info, ElementsProcessed &num_elements_processed)
128{
129 unsigned int &num_elems_processed_per_iteration_x = num_elements_processed[0];
130 unsigned int &num_elems_processed_per_iteration_y = num_elements_processed[1];
131 bool reinterpret_output_as_3d = (gemm_info.depth_output_gemm3d() != 0);
132
133 Window win{};
134 Window win_out{};
135 bool window_changed = false;
136
137 // Output tensor auto initialization if not yet initialized
138 auto_init_if_empty(*output, input0->clone()->set_tensor_shape(compute_mm_shape(*input0, *input1, gemm_info)));
139
140 TensorInfo tmp_info(*output);
141
142 if(reinterpret_output_as_3d)
143 {
144 // Since the output tensor has to be reinterpreted as 3D and the execute window is based on a 2D GEMM,
145 // the window needs to be constructed on the 2D collapsed version of the tensor
146 TensorShape tmp_shape(output->tensor_shape());
147 tmp_shape.collapse(2U, 1U);
148 tmp_info.set_tensor_shape(tmp_shape);
149 }
150
151 // Configure kernel window
152 num_elems_processed_per_iteration_x = rhs_info.n0;
153 num_elems_processed_per_iteration_y = lhs_info.m0;
154
155 // Note: bottom paddings are calculated manually as the output can be reinterpreted as 3D tensor
156 // The only way to set properly the paddings, it is to set those explicitly through the AccessWindowStatic
157 const int m = gemm_info.m();
158 const int bottom_pad = (num_elems_processed_per_iteration_y - (m % num_elems_processed_per_iteration_y)) % num_elems_processed_per_iteration_y;
159
160 win = calculate_max_window(tmp_info, Steps(num_elems_processed_per_iteration_x, num_elems_processed_per_iteration_y));
161 win_out = calculate_max_window(*output, Steps(num_elems_processed_per_iteration_x, num_elems_processed_per_iteration_y));
162
163 AccessWindowStatic input0_access(input0, 0, 0,
164 ceil_to_multiple(input0->dimension(0), num_elems_processed_per_iteration_y),
165 input0->dimension(1));
166 AccessWindowStatic input1_access(input1, 0, 0,
167 ceil_to_multiple(input1->dimension(0), num_elems_processed_per_iteration_x),
168 input1->dimension(1));
169 AccessWindowStatic output_access(output, 0, 0,
170 ceil_to_multiple(output->dimension(0), num_elems_processed_per_iteration_x),
171 output->dimension(1) + bottom_pad);
172
Gian Marco Iodicee16c8902019-06-14 16:11:10 +0100173 if(input2 != nullptr)
174 {
175 const int bias_processed_per_iteration_x = num_elems_processed_per_iteration_x;
176
177 const int bias_processed_per_iteration_y = gemm_info.broadcast_bias() ? 1 : num_elems_processed_per_iteration_y;
178
179 AccessWindowStatic input2_access(input2, 0, 0,
180 ceil_to_multiple(input2->dimension(0), bias_processed_per_iteration_x),
181 ceil_to_multiple(input2->dimension(1), bias_processed_per_iteration_y));
182
183 window_changed = update_window_and_padding(win, input0_access, input1_access, input2_access) || // window used by the execute_window_loop
184 update_window_and_padding(win_out, output_access); // window used to update the padding requirements of output tensor
185 }
186 else
187 {
188 window_changed = update_window_and_padding(win, input0_access, input1_access) || // window used by the execute_window_loop
189 update_window_and_padding(win_out, output_access); // window used to update the padding requirements of output tensor
190 }
Gian Marco Iodicebf9731e2018-12-12 10:18:04 +0000191
192 output_access.set_valid_region(win_out, ValidRegion(Coordinates(0, 0), output->tensor_shape()));
193
194 // Collapse along the Z direction
195 // This collapse needs to be here in order to tune the Z dimension of LWS
196 Window collapsed = win;
197 const unsigned int dimension_to_collapse = std::min(static_cast<unsigned int>(output->num_dimensions()), 2u);
198 collapsed = win.collapse(win, dimension_to_collapse);
199
200 Status err = (window_changed) ? ARM_COMPUTE_CREATE_ERROR(ErrorCode::RUNTIME_ERROR, "Insufficient Padding!") : Status{};
201 return std::make_pair(err, collapsed);
202}
203} // namespace
204
205CLGEMMMatrixMultiplyReshapedKernel::CLGEMMMatrixMultiplyReshapedKernel()
Gian Marco Iodicee16c8902019-06-14 16:11:10 +0100206 : _input0(nullptr), _input1(nullptr), _input2(nullptr), _output(nullptr), _slide_matrix_b(true), _reinterpret_output_as_3d(false), _k(1), _use_dummy_work_items(false), _add_bias(false),
207 _broadcast_bias(false)
Gian Marco Iodicebf9731e2018-12-12 10:18:04 +0000208{
209}
210
Gian Marco Iodicee16c8902019-06-14 16:11:10 +0100211void CLGEMMMatrixMultiplyReshapedKernel::configure(const ICLTensor *input0, const ICLTensor *input1, const ICLTensor *input2, ICLTensor *output, float alpha, float beta,
212 const GEMMLHSMatrixInfo &lhs_info,
Gian Marco Iodicebf9731e2018-12-12 10:18:04 +0000213 const GEMMRHSMatrixInfo &rhs_info, const GEMMReshapeInfo &gemm_info)
214{
215 ARM_COMPUTE_ERROR_ON_NULLPTR(input0, input1, output);
216
Gian Marco Iodicee16c8902019-06-14 16:11:10 +0100217 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));
Gian Marco Iodicebf9731e2018-12-12 10:18:04 +0000218
219 _input0 = input0;
220 _input1 = input1;
Gian Marco Iodicee16c8902019-06-14 16:11:10 +0100221 _input2 = helpers::float_ops::is_zero(beta) ? nullptr : input2;
Gian Marco Iodicebf9731e2018-12-12 10:18:04 +0000222 _output = output;
223 _reinterpret_output_as_3d = (gemm_info.depth_output_gemm3d() != 0);
Gian Marco Iodicebacfec52019-01-11 11:30:55 +0000224 _k = gemm_info.k();
Gian Marco Iodiceb0c50372019-03-15 10:13:05 +0000225 _use_dummy_work_items = preferred_dummy_work_items_support(CLKernelLibrary::get().get_device());
Gian Marco Iodicee16c8902019-06-14 16:11:10 +0100226 _add_bias = _input2 != nullptr;
227 _broadcast_bias = gemm_info.broadcast_bias();
Gian Marco Iodicebf9731e2018-12-12 10:18:04 +0000228
229 // Check if we need to slide the matrix B
230 const unsigned int num_dimensions_input0 = _input0->info()->num_dimensions();
231 _slide_matrix_b = (_input1->info()->num_dimensions() >= num_dimensions_input0);
232
233 ElementsProcessed num_elements_processed{};
234
235 // Configure kernel window
Gian Marco Iodicee16c8902019-06-14 16:11:10 +0100236 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);
Gian Marco Iodicebf9731e2018-12-12 10:18:04 +0000237 ARM_COMPUTE_ERROR_THROW_ON(win_config.first);
238 ICLKernel::configure_internal(win_config.second);
239
240 // Create build options
241 CLBuildOptions build_opts;
242 build_opts.add_option("-DDATA_TYPE=" + get_cl_type_from_data_type(input0->info()->data_type()));
Gian Marco Iodice82d9dd12019-06-10 16:45:40 +0100243 build_opts.add_option_if(!(helpers::float_ops::is_one(alpha)), "-DALPHA=" + float_to_string_with_full_precision(alpha));
Gian Marco Iodicee16c8902019-06-14 16:11:10 +0100244 build_opts.add_option_if(_input2 != nullptr, "-DBETA=" + float_to_string_with_full_precision(beta));
245 build_opts.add_option_if(helpers::float_ops::is_one(beta), "-DUNIT_BETA");
Gian Marco Iodicebf9731e2018-12-12 10:18:04 +0000246 build_opts.add_option_if(_reinterpret_output_as_3d, "-DREINTERPRET_OUTPUT_AS_3D");
247 build_opts.add_option_if(_reinterpret_output_as_3d, "-DHEIGHT_GEMM3D=" + support::cpp11::to_string(output->info()->dimension(1)));
248 build_opts.add_option_if(_reinterpret_output_as_3d, "-DDEPTH_GEMM3D=" + support::cpp11::to_string(output->info()->dimension(2)));
Gian Marco Iodicee16c8902019-06-14 16:11:10 +0100249 build_opts.add_option_if(gemm_info.broadcast_bias(), "-DBROADCAST_BIAS");
Gian Marco Iodicebf9731e2018-12-12 10:18:04 +0000250 build_opts.add_option_if(!_slide_matrix_b, "-DMATRIX_B_DEPTH=" + support::cpp11::to_string(input1->info()->dimension(2)));
251 build_opts.add_option_if(lhs_info.interleave, "-DLHS_INTERLEAVE");
252 build_opts.add_option_if(rhs_info.interleave, "-DRHS_INTERLEAVE");
Gian Marco Iodiceb0c50372019-03-15 10:13:05 +0000253 build_opts.add_option_if(_use_dummy_work_items, "-DDUMMY_WORK_ITEMS");
254 build_opts.add_option("-DM=" + support::cpp11::to_string(gemm_info.m()));
255 build_opts.add_option("-DN=" + support::cpp11::to_string(gemm_info.n()));
Gian Marco Iodicebf9731e2018-12-12 10:18:04 +0000256 build_opts.add_option("-DM0=" + support::cpp11::to_string(lhs_info.m0));
257 build_opts.add_option("-DN0=" + support::cpp11::to_string(rhs_info.n0));
258 build_opts.add_option("-DK0=" + support::cpp11::to_string(lhs_info.k0));
259 build_opts.add_option("-DV0=" + support::cpp11::to_string(lhs_info.v0));
260 build_opts.add_option("-DH0=" + support::cpp11::to_string(rhs_info.h0));
261
262 std::string kernel_name("gemm_mm_reshaped_");
263 kernel_name += lhs_info.transpose ? "lhs_t_" : "lhs_nt_";
264 kernel_name += rhs_info.transpose ? "rhs_t" : "rhs_nt";
265
266 // Create kernel
267 _kernel = static_cast<cl::Kernel>(CLKernelLibrary::get().create_kernel(kernel_name, build_opts.options()));
268
269 // Set config_id for enabling LWS tuning
270 _config_id = kernel_name;
271 _config_id += "_";
Gian Marco Iodicee16c8902019-06-14 16:11:10 +0100272 _config_id += (_add_bias ? "add_bias_" : "");
273 _config_id += (_broadcast_bias ? "broadcast_bias_" : "");
Gian Marco Iodicebf9731e2018-12-12 10:18:04 +0000274 _config_id += (_reinterpret_output_as_3d ? "3do_" : "");
275 _config_id += lower_string(string_from_data_type(input0->info()->data_type()));
276 _config_id += "_";
277 _config_id += support::cpp11::to_string(output->info()->dimension(1));
278 _config_id += "_";
279 _config_id += support::cpp11::to_string(output->info()->dimension(0));
280 _config_id += "_";
281 _config_id += support::cpp11::to_string(gemm_info.k());
282 _config_id += "_";
283 _config_id += support::cpp11::to_string(output->info()->dimension(2));
284 _config_id += "_";
285 _config_id += support::cpp11::to_string(lhs_info.m0);
286 _config_id += "_";
287 _config_id += support::cpp11::to_string(rhs_info.n0);
288 _config_id += "_";
289 _config_id += support::cpp11::to_string(lhs_info.k0);
290 _config_id += "_";
291 _config_id += support::cpp11::to_string(lhs_info.v0);
292 _config_id += "_";
293 _config_id += support::cpp11::to_string(rhs_info.h0);
294 _config_id += "_";
295 _config_id += support::cpp11::to_string(lhs_info.interleave);
296 _config_id += "_";
297 _config_id += support::cpp11::to_string(rhs_info.interleave);
298}
299
Gian Marco Iodicee16c8902019-06-14 16:11:10 +0100300Status CLGEMMMatrixMultiplyReshapedKernel::validate(const ITensorInfo *input0, const ITensorInfo *input1, const ITensorInfo *input2, const ITensorInfo *output, float alpha, float beta,
301 const GEMMLHSMatrixInfo &lhs_info,
Gian Marco Iodicebf9731e2018-12-12 10:18:04 +0000302 const GEMMRHSMatrixInfo &rhs_info, const GEMMReshapeInfo &gemm_info)
303{
304 ElementsProcessed num_elements_processed{};
Gian Marco Iodicee16c8902019-06-14 16:11:10 +0100305 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(input0, input1, input2, output, alpha, beta, lhs_info, rhs_info, gemm_info));
Gian Marco Iodicebf9731e2018-12-12 10:18:04 +0000306 ARM_COMPUTE_RETURN_ON_ERROR(validate_and_configure_window(input0->clone().get(),
307 input1->clone().get(),
Gian Marco Iodicee16c8902019-06-14 16:11:10 +0100308 input2 != nullptr ? input2->clone().get() : nullptr,
Gian Marco Iodicebf9731e2018-12-12 10:18:04 +0000309 output->clone().get(),
310 lhs_info,
311 rhs_info,
312 gemm_info,
313 num_elements_processed)
314 .first);
315
316 return Status{};
317}
318
319void CLGEMMMatrixMultiplyReshapedKernel::run(const Window &window, cl::CommandQueue &queue)
320{
321 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
322 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(ICLKernel::window(), window);
323
324 if(_input1->info()->num_dimensions() < 3)
325 {
326 // The stride_z for matrix B must be zero if we do not slice
327 ARM_COMPUTE_ERROR_ON(_input1->info()->strides_in_bytes()[3] != 0);
328 }
329
330 Window slice = window.first_slice_window_3D();
331 Window slice_matrix_b = slice;
332
333 slice_matrix_b.set(Window::DimX, Window::Dimension(0, 1, 1));
334 slice_matrix_b.set(Window::DimY, Window::Dimension(0, 1, 1));
335
336 if(_reinterpret_output_as_3d)
337 {
338 // Pass bottom paddings to the kernel if the output has to be reinterpreted as 3D tensor
Gian Marco Iodicee16c8902019-06-14 16:11:10 +0100339 unsigned int idx0;
340 if(_add_bias)
341 {
342 idx0 = 4 * num_arguments_per_2D_tensor() + 5;
343 }
344 else
345 {
346 idx0 = 3 * num_arguments_per_2D_tensor() + 4;
347 }
Gian Marco Iodicebf9731e2018-12-12 10:18:04 +0000348 const unsigned int total_cross_plane_pad = _output->info()->padding().top + _output->info()->padding().bottom;
349 _kernel.setArg<cl_uint>(idx0, static_cast<unsigned int>(total_cross_plane_pad));
350 }
351
352 do
353 {
354 Window slice_b = slice;
355 // Don't slice matrix B along the z dimension if matrix B has just 2 dimensions and matrix A more than 2
356 // This scenario can happen when the matrix multiplication is used to perform a convolution operation
357 if(!_slide_matrix_b)
358 {
359 slice_b = slice_matrix_b;
360 }
361
362 unsigned int idx = 0;
363 add_2D_tensor_argument(idx, _input0, slice);
364 add_2D_tensor_argument(idx, _input1, slice_b);
Gian Marco Iodicee16c8902019-06-14 16:11:10 +0100365 if(_add_bias)
366 {
367 add_2D_tensor_argument(idx, _input2, slice);
368 }
Gian Marco Iodicebf9731e2018-12-12 10:18:04 +0000369 add_2D_tensor_argument(idx, _output, slice);
Gian Marco Iodicebacfec52019-01-11 11:30:55 +0000370 _kernel.setArg<cl_uint>(idx++, static_cast<unsigned int>(_k));
Gian Marco Iodicebf9731e2018-12-12 10:18:04 +0000371 _kernel.setArg<cl_uint>(idx++, static_cast<unsigned int>(_input0->info()->strides_in_bytes()[2]));
372 _kernel.setArg<cl_uint>(idx++, static_cast<unsigned int>(_input1->info()->strides_in_bytes()[2]));
Gian Marco Iodicee16c8902019-06-14 16:11:10 +0100373 if(_add_bias)
374 {
375 _kernel.setArg<cl_uint>(idx++, static_cast<unsigned int>(_input2->info()->strides_in_bytes()[2]));
376 }
Gian Marco Iodicebf9731e2018-12-12 10:18:04 +0000377 _kernel.setArg<cl_uint>(idx++, static_cast<unsigned int>(_output->info()->strides_in_bytes()[2]));
Gian Marco Iodiceb0c50372019-03-15 10:13:05 +0000378 enqueue(queue, *this, slice, lws_hint(), _use_dummy_work_items);
Gian Marco Iodicebf9731e2018-12-12 10:18:04 +0000379 }
380 while(window.slide_window_slice_3D(slice));
381}