blob: d13884f26721e451b28361b57d899c1e8bb8a335 [file] [log] [blame]
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001/*
Matthew Bentham758b5ba2020-03-05 23:37:48 +00002 * Copyright (c) 2017-2020 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"
Matthew Bentham758b5ba2020-03-05 23:37:48 +000040#include "support/StringSupport.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 Marco Iodice06be6f82019-06-24 17:47:51 +010058Status validate_arguments(const ITensorInfo *input0, const ITensorInfo *input1, const ITensorInfo *output, const GEMMReshapeInfo &gemm_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);
Sang-Hoon Parkfe7bf012019-12-03 10:31:43 +000061 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input0, 1, DataType::QASYMM8, DataType::QASYMM8_SIGNED);
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");
Gian Marco Iodice06be6f82019-06-24 17:47:51 +010065 ARM_COMPUTE_RETURN_ERROR_ON_MSG(input1->num_dimensions() > 2 && gemm_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 +000066
Gian Marco Iodice06be6f82019-06-24 17:47:51 +010067 const int m = gemm_info.m();
68 const int n = gemm_info.n();
69 const int k = gemm_info.k();
70
71 ARM_COMPUTE_UNUSED(m);
72 ARM_COMPUTE_UNUSED(n);
73 ARM_COMPUTE_UNUSED(k);
74
75 ARM_COMPUTE_RETURN_ERROR_ON(input0->dimension(0) != static_cast<unsigned int>(k));
76 ARM_COMPUTE_RETURN_ERROR_ON(input1->dimension(0) != static_cast<unsigned int>(n));
77 ARM_COMPUTE_RETURN_ERROR_ON(input1->dimension(1) != static_cast<unsigned int>(k));
78 if(gemm_info.reinterpret_input_as_3d())
Georgios Pinitas358ca202017-12-07 16:47:52 +000079 {
Gian Marco Iodice06be6f82019-06-24 17:47:51 +010080 ARM_COMPUTE_RETURN_ERROR_ON(input0->dimension(1) * input0->dimension(2) != static_cast<unsigned int>(m));
Gian Marco19835e52018-01-30 13:35:54 +000081 }
82 else
83 {
Gian Marco Iodice06be6f82019-06-24 17:47:51 +010084 ARM_COMPUTE_RETURN_ERROR_ON(input0->dimension(1) != static_cast<unsigned int>(m));
Georgios Pinitasebf6b8a2018-09-24 16:31:08 +010085 }
Gian Marco19835e52018-01-30 13:35:54 +000086
Georgios Pinitasebf6b8a2018-09-24 16:31:08 +010087 if(output->total_size() != 0)
88 {
Gian Marco Iodice06be6f82019-06-24 17:47:51 +010089 const TensorInfo tensor_info_output = output->clone()->set_tensor_shape(compute_mm_shape(*input0, *input1, false, gemm_info));
Georgios Pinitasebf6b8a2018-09-24 16:31:08 +010090 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_SHAPES(output, &tensor_info_output);
91 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(output, 1, DataType::S32);
Georgios Pinitas358ca202017-12-07 16:47:52 +000092 }
93
94 return Status{};
95}
96
Gian Marco Iodice06be6f82019-06-24 17:47:51 +010097std::pair<Status, Window> validate_and_configure_window(ITensorInfo *input0, ITensorInfo *input1, ITensorInfo *output, const GEMMReshapeInfo &gemm_info, ElementsProcessed &num_elements_processed)
Georgios Pinitas358ca202017-12-07 16:47:52 +000098{
99 unsigned int &num_elems_processed_per_iteration_x = num_elements_processed[0];
100 unsigned int &num_elems_processed_per_iteration_y = num_elements_processed[1];
Gian Marco Iodice06be6f82019-06-24 17:47:51 +0100101 bool reinterpret_input_as_3d = gemm_info.reinterpret_input_as_3d();
102 bool reinterpret_output_as_3d = (gemm_info.depth_output_gemm3d() != 0);
Georgios Pinitas358ca202017-12-07 16:47:52 +0000103
104 Window win{};
Georgios Pinitasebf6b8a2018-09-24 16:31:08 +0100105 Window win_out{};
Georgios Pinitas358ca202017-12-07 16:47:52 +0000106 bool window_changed = false;
107
Georgios Pinitasebf6b8a2018-09-24 16:31:08 +0100108 // In case both input and output have to be reinterpreted as 3D tensors,
109 // force reinterpret_input_as_3d and reinterpret_output_as_3d to be false.
110 if(reinterpret_input_as_3d == reinterpret_output_as_3d)
111 {
112 reinterpret_input_as_3d = false;
113 reinterpret_output_as_3d = false;
114 }
115
116 // Output tensor auto inizialitation if not yet initialized
Gian Marco Iodice06be6f82019-06-24 17:47:51 +0100117 auto_init_if_empty(*output, input0->clone()->set_tensor_shape(compute_mm_shape(*input0, *input1, false, gemm_info)).set_data_type(DataType::S32));
Georgios Pinitasebf6b8a2018-09-24 16:31:08 +0100118
119 TensorInfo tmp_info(*output);
120
121 if(reinterpret_output_as_3d)
122 {
123 // Since the output tensor has to be reinterpreted as 3D and the execute window is based on a 2D GEMM,
124 // the window needs to be constructed on the 2D collapsed version of the tensor
125 TensorShape tmp_shape(output->tensor_shape());
126 tmp_shape.collapse(2U, 1U);
127 tmp_info.set_tensor_shape(tmp_shape);
128 }
129
Gian Marco Iodice06be6f82019-06-24 17:47:51 +0100130 // Special case for 1xN, 2xN, 3xN and 4xN input0 tensor. num_elems_processed_per_iteration_x
131 // Note: if the dot product instruction is available, the 8x2 tile has to be used
132 num_elems_processed_per_iteration_x = 4;
133 num_elems_processed_per_iteration_y = std::min(static_cast<int>(output->dimension(1)), 4);
Georgios Pinitasebf6b8a2018-09-24 16:31:08 +0100134
Gian Marco Iodice06be6f82019-06-24 17:47:51 +0100135 // Note: bottom paddings are calculated manually as the output can be reinterpreted as 3D tensor
136 // The only way to set properly the paddings, it is to set those explicitly through the AccessWindowStatic
137 const int m = reinterpret_input_as_3d ? input0->tensor_shape()[1] * input0->tensor_shape()[2] : input0->tensor_shape()[1];
138 const int bottom_pad = (num_elems_processed_per_iteration_y - (m % num_elems_processed_per_iteration_y)) % num_elems_processed_per_iteration_y;
Georgios Pinitas358ca202017-12-07 16:47:52 +0000139
Gian Marco Iodice06be6f82019-06-24 17:47:51 +0100140 // Configure window
141 win = calculate_max_window(tmp_info, Steps(num_elems_processed_per_iteration_x, num_elems_processed_per_iteration_y));
142 win_out = calculate_max_window(*output, Steps(num_elems_processed_per_iteration_x, num_elems_processed_per_iteration_y));
Georgios Pinitasebf6b8a2018-09-24 16:31:08 +0100143
Gian Marco Iodice06be6f82019-06-24 17:47:51 +0100144 AccessWindowStatic input0_access(input0, 0, 0, input0->dimension(0), input0->dimension(1) + bottom_pad);
145 AccessWindowStatic input1_access(input1, 0, 0, ceil_to_multiple(input1->dimension(0), num_elems_processed_per_iteration_x), input1->dimension(1));
146 AccessWindowStatic output_access(output, 0, 0,
147 ceil_to_multiple(output->dimension(0), num_elems_processed_per_iteration_x),
148 output->dimension(1) + bottom_pad);
Georgios Pinitas358ca202017-12-07 16:47:52 +0000149
Gian Marco Iodice06be6f82019-06-24 17:47:51 +0100150 window_changed = update_window_and_padding(win, input0_access, input1_access) || // window used by the execute_window_loop
151 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 +0000152
Gian Marco Iodice06be6f82019-06-24 17:47:51 +0100153 Coordinates coord;
154 coord.set_num_dimensions(output->num_dimensions());
155 output_access.set_valid_region(win_out, ValidRegion(coord, output->tensor_shape()));
Georgios Pinitas358ca202017-12-07 16:47:52 +0000156
Georgios Pinitasebf6b8a2018-09-24 16:31:08 +0100157 // Collapse along the Z direction
158 // This collapse needs to be here in order to tune the Z dimension of LWS
159 Window collapsed = win;
160 const unsigned int dimension_to_collapse = std::min(static_cast<unsigned int>(output->num_dimensions()), 2u);
161 collapsed = win.collapse(win, dimension_to_collapse);
162
Georgios Pinitas358ca202017-12-07 16:47:52 +0000163 Status err = (window_changed) ? ARM_COMPUTE_CREATE_ERROR(ErrorCode::RUNTIME_ERROR, "Insufficient Padding!") : Status{};
Georgios Pinitasebf6b8a2018-09-24 16:31:08 +0100164 return std::make_pair(err, collapsed);
Georgios Pinitas358ca202017-12-07 16:47:52 +0000165}
166} // namespace
167
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100168CLGEMMLowpMatrixMultiplyKernel::CLGEMMLowpMatrixMultiplyKernel()
Georgios Pinitasebf6b8a2018-09-24 16:31:08 +0100169 : _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 +0100170{
171}
172
Gian Marco Iodice06be6f82019-06-24 17:47:51 +0100173void CLGEMMLowpMatrixMultiplyKernel::configure(const ICLTensor *input0, const ICLTensor *input1, ICLTensor *output, const GEMMReshapeInfo &gemm_info)
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100174{
Georgios Pinitas358ca202017-12-07 16:47:52 +0000175 ARM_COMPUTE_ERROR_ON_NULLPTR(input0, input1, output);
Gian Marco19835e52018-01-30 13:35:54 +0000176
Gian Marco Iodice06be6f82019-06-24 17:47:51 +0100177 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(input0->info(), input1->info(), output->info(), gemm_info));
Gian Marco05288a22017-11-21 10:57:50 +0000178
Georgios Pinitasebf6b8a2018-09-24 16:31:08 +0100179 _input0 = input0;
180 _input1 = input1;
181 _output = output;
Gian Marco Iodice06be6f82019-06-24 17:47:51 +0100182 _reinterpret_input_as_3d = gemm_info.reinterpret_input_as_3d();
183 _reinterpret_output_as_3d = (gemm_info.depth_output_gemm3d() != 0);
Georgios Pinitasebf6b8a2018-09-24 16:31:08 +0100184
185 // In case both input and output have to be reinterpreted as 3D tensors,
186 // force reinterpret_input_as_3d and reinterpret_output_as_3d to be false.
187 if(_reinterpret_input_as_3d == _reinterpret_output_as_3d)
188 {
189 _reinterpret_input_as_3d = false;
190 _reinterpret_output_as_3d = false;
191 }
192
193 // Check if we need to slide the matrix B
194 const unsigned int num_dimensions_input0 = _reinterpret_input_as_3d ? _input0->info()->num_dimensions() - 1 : _input0->info()->num_dimensions();
195 _slide_matrix_b = (_input1->info()->num_dimensions() >= num_dimensions_input0);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100196
Georgios Pinitas358ca202017-12-07 16:47:52 +0000197 ElementsProcessed num_elements_processed{};
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100198
Georgios Pinitas358ca202017-12-07 16:47:52 +0000199 // Configure kernel window
Gian Marco Iodice06be6f82019-06-24 17:47:51 +0100200 auto win_config = validate_and_configure_window(input0->info(), input1->info(), output->info(), gemm_info, num_elements_processed);
Georgios Pinitas358ca202017-12-07 16:47:52 +0000201 ARM_COMPUTE_ERROR_THROW_ON(win_config.first);
Anthony Barbierb6eb3532018-08-08 13:20:04 +0100202 ICLKernel::configure_internal(win_config.second);
Georgios Pinitas358ca202017-12-07 16:47:52 +0000203
204 // Create build options
Georgios Pinitas358ca202017-12-07 16:47:52 +0000205 std::string kernel_name(" ");
Georgios Pinitasebf6b8a2018-09-24 16:31:08 +0100206 CLBuildOptions build_opts;
207 build_opts.add_option_if(_reinterpret_input_as_3d, "-DREINTERPRET_INPUT_AS_3D");
208 build_opts.add_option_if(_reinterpret_output_as_3d, "-DREINTERPRET_OUTPUT_AS_3D");
209 build_opts.add_option_if(_reinterpret_input_as_3d || _reinterpret_output_as_3d, "-DHEIGHT_GEMM3D=" + support::cpp11::to_string(output->info()->dimension(1)));
210 build_opts.add_option_if(_reinterpret_input_as_3d || _reinterpret_output_as_3d, "-DDEPTH_GEMM3D=" + support::cpp11::to_string(output->info()->dimension(2)));
211 build_opts.add_option_if(!_slide_matrix_b, "-DMATRIX_B_DEPTH=" + support::cpp11::to_string(input1->info()->dimension(2)));
Gian Marco Iodice06be6f82019-06-24 17:47:51 +0100212 build_opts.add_option("-DCOLS_A=" + support::cpp11::to_string(input0->info()->dimension(0)));
213 build_opts.add_option("-DNUM_ELEMS_PROCESSED_PER_THREAD_X=" + support::cpp11::to_string(num_elements_processed.x()));
214 build_opts.add_option("-DNUM_ELEMS_PROCESSED_PER_THREAD_Y=" + support::cpp11::to_string(num_elements_processed.y()));
Michele Di Giorgiof9179d32019-11-27 16:17:30 +0000215 build_opts.add_option("-DDATA_TYPE=" + get_cl_type_from_data_type(input0->info()->data_type()));
216 build_opts.add_option("-DACC_DATA_TYPE=" + get_cl_dot8_acc_type_from_data_type(input0->info()->data_type()));
Georgios Pinitasebf6b8a2018-09-24 16:31:08 +0100217
Gian Marco Iodice06be6f82019-06-24 17:47:51 +0100218 kernel_name = "gemmlowp_mm_midgard";
Giorgio Arena6200fa42018-07-06 17:06:36 +0100219
Georgios Pinitas358ca202017-12-07 16:47:52 +0000220 // Create kernel
221 _kernel = static_cast<cl::Kernel>(CLKernelLibrary::get().create_kernel(kernel_name, build_opts.options()));
Gian Marco05288a22017-11-21 10:57:50 +0000222
223 // Set config_id for enabling LWS tuning
Gian Marco Iodice06be6f82019-06-24 17:47:51 +0100224 _config_id = kernel_name;
225 _config_id += "_";
Georgios Pinitasebf6b8a2018-09-24 16:31:08 +0100226 _config_id += (_reinterpret_input_as_3d ? "3di_" : "");
227 _config_id += (_reinterpret_output_as_3d ? "3do_" : "");
Gian Marco05288a22017-11-21 10:57:50 +0000228 _config_id += lower_string(string_from_data_type(input0->info()->data_type()));
229 _config_id += "_";
230 _config_id += support::cpp11::to_string(output->info()->dimension(1));
231 _config_id += "_";
232 _config_id += support::cpp11::to_string(output->info()->dimension(0));
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100233}
234
Gian Marco Iodice06be6f82019-06-24 17:47:51 +0100235Status CLGEMMLowpMatrixMultiplyKernel::validate(const ITensorInfo *input0, const ITensorInfo *input1, const ITensorInfo *output, const GEMMReshapeInfo &gemm_info)
Georgios Pinitas358ca202017-12-07 16:47:52 +0000236{
237 ElementsProcessed num_elements_processed{};
Gian Marco Iodice06be6f82019-06-24 17:47:51 +0100238 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(input0, input1, output, gemm_info));
Georgios Pinitas358ca202017-12-07 16:47:52 +0000239 ARM_COMPUTE_RETURN_ON_ERROR(validate_and_configure_window(input0->clone().get(),
240 input1->clone().get(),
241 output->clone().get(),
Gian Marco Iodice06be6f82019-06-24 17:47:51 +0100242 gemm_info,
Georgios Pinitas358ca202017-12-07 16:47:52 +0000243 num_elements_processed)
244 .first);
245
246 return Status{};
247}
248
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100249void CLGEMMLowpMatrixMultiplyKernel::run(const Window &window, cl::CommandQueue &queue)
250{
251 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
252 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(ICLKernel::window(), window);
253
Isabella Gottardib92805b2018-09-28 18:24:27 +0100254 if(_input1->info()->num_dimensions() < 3)
255 {
256 // The stride_z for matrix B must be zero if we do not slice
257 ARM_COMPUTE_ERROR_ON(_input1->info()->strides_in_bytes()[3] != 0);
258 }
259
Georgios Pinitasebf6b8a2018-09-24 16:31:08 +0100260 Window slice = window.first_slice_window_3D();
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100261 Window slice_matrix_b = slice;
Isabella Gottardib92805b2018-09-28 18:24:27 +0100262
Georgios Pinitasebf6b8a2018-09-24 16:31:08 +0100263 slice_matrix_b.set(Window::DimX, Window::Dimension(0, 1, 1));
264 slice_matrix_b.set(Window::DimY, Window::Dimension(0, 1, 1));
265
266 if(_reinterpret_input_as_3d)
267 {
268 // Pass bottom paddings to the kernel if the input has to be reinterpreted as 3D tensor
269 const unsigned int idx0 = 3 * num_arguments_per_2D_tensor() + 3;
270 const unsigned int total_cross_plane_pad = _input0->info()->padding().top + _input0->info()->padding().bottom;
271 _kernel.setArg<cl_uint>(idx0, static_cast<unsigned int>(total_cross_plane_pad));
272 }
273
274 if(_reinterpret_output_as_3d)
275 {
276 // Pass bottom paddings to the kernel if the output has to be reinterpreted as 3D tensor
277 const unsigned int idx0 = 3 * num_arguments_per_2D_tensor() + 3 + (_reinterpret_input_as_3d ? 1 : 0);
278 const unsigned int total_cross_plane_pad = _output->info()->padding().top + _output->info()->padding().bottom;
279 _kernel.setArg<cl_uint>(idx0, static_cast<unsigned int>(total_cross_plane_pad));
280 }
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100281
282 do
283 {
284 Window slice_b = slice;
285 // 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 +0100286 // This scenario can happen when the matrix multiplication is used to perform a convolution operation
287 if(!_slide_matrix_b)
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100288 {
289 slice_b = slice_matrix_b;
290 }
291
292 unsigned int idx = 0;
293 add_2D_tensor_argument(idx, _input0, slice);
294 add_2D_tensor_argument(idx, _input1, slice_b);
295 add_2D_tensor_argument(idx, _output, slice);
Georgios Pinitasebf6b8a2018-09-24 16:31:08 +0100296 _kernel.setArg<cl_uint>(idx++, static_cast<unsigned int>(_input0->info()->strides_in_bytes()[2]));
297 _kernel.setArg<cl_uint>(idx++, static_cast<unsigned int>(_input1->info()->strides_in_bytes()[2]));
298 _kernel.setArg<cl_uint>(idx++, static_cast<unsigned int>(_output->info()->strides_in_bytes()[2]));
Anthony Barbierb6eb3532018-08-08 13:20:04 +0100299 enqueue(queue, *this, slice, lws_hint());
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100300 }
Georgios Pinitasebf6b8a2018-09-24 16:31:08 +0100301 while(window.slide_window_slice_3D(slice));
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100302}