blob: 58874216bb529a6f21cb109f46644a7fedab53e3 [file] [log] [blame]
Giorgio Arena1f9ca1d2018-03-01 11:13:45 +00001/*
Gian Marco Iodice534b8892021-04-01 16:17:16 +01002 * Copyright (c) 2018-2021 Arm Limited.
Giorgio Arena1f9ca1d2018-03-01 11:13:45 +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 */
Georgios Pinitas7891a732021-08-20 21:39:25 +010024#include "src/gpu/cl/kernels/ClWinogradInputTransformKernel.h"
Giorgio Arena1f9ca1d2018-03-01 11:13:45 +000025
26#include "arm_compute/core/CL/CLHelpers.h"
27#include "arm_compute/core/CL/CLKernelLibrary.h"
28#include "arm_compute/core/CL/ICLTensor.h"
29#include "arm_compute/core/CL/OpenCL.h"
30#include "arm_compute/core/Error.h"
31#include "arm_compute/core/Helpers.h"
32#include "arm_compute/core/Types.h"
Gian Marco Iodicef1c2bf02018-06-13 14:05:54 +010033#include "arm_compute/core/Utils.h"
Giorgio Arena1f9ca1d2018-03-01 11:13:45 +000034#include "arm_compute/core/utils/misc/ShapeCalculator.h"
Sang-Hoon Park68dd25f2020-10-19 16:00:11 +010035#include "src/core/AccessWindowStatic.h"
36#include "src/core/CL/CLValidate.h"
37#include "src/core/helpers/AutoConfiguration.h"
38#include "src/core/helpers/WindowHelpers.h"
Manuel Bottinic6f4ec32021-05-18 18:41:56 +010039#include "support/Cast.h"
Matthew Bentham758b5ba2020-03-05 23:37:48 +000040#include "support/StringSupport.h"
Giorgio Arena1f9ca1d2018-03-01 11:13:45 +000041
Manuel Bottinic6f4ec32021-05-18 18:41:56 +010042namespace arm_compute
43{
44namespace opencl
45{
46namespace kernels
47{
Giorgio Arena1f9ca1d2018-03-01 11:13:45 +000048namespace
49{
Gian Marco Iodice247f52c2018-03-22 11:24:56 +000050Status validate_arguments(const ITensorInfo *input, const ITensorInfo *output, const WinogradInfo &winograd_info)
Giorgio Arena1f9ca1d2018-03-01 11:13:45 +000051{
Vidhya Sudhan Loganathan71ecf392018-08-31 16:10:16 +010052 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input, 1, DataType::F32, DataType::F16);
53 ARM_COMPUTE_RETURN_ERROR_ON_F16_UNSUPPORTED(input);
Gian Marco Iodice247f52c2018-03-22 11:24:56 +000054
55 const PadStrideInfo conv_info = winograd_info.convolution_info;
56 const Size2D output_tile_size = winograd_info.output_tile_size;
57 const Size2D kernel_size = winograd_info.kernel_size;
Giorgio Arena1f9ca1d2018-03-01 11:13:45 +000058 ARM_COMPUTE_RETURN_ERROR_ON_MSG(conv_info.stride().first != 1 || conv_info.stride().second != 1, "Winograd input transform only supports unit strides");
Gian Marco Iodicef1c2bf02018-06-13 14:05:54 +010059 ARM_COMPUTE_RETURN_ERROR_ON_MSG(!cl_winograd_convolution_layer_supported(output_tile_size, kernel_size, input->data_layout()), "Winograd input transform not supported");
60
Gian Marco Iodice247f52c2018-03-22 11:24:56 +000061 ARM_COMPUTE_UNUSED(conv_info);
62 ARM_COMPUTE_UNUSED(output_tile_size);
63 ARM_COMPUTE_UNUSED(kernel_size);
Giorgio Arena1f9ca1d2018-03-01 11:13:45 +000064
Giorgio Arena1f9ca1d2018-03-01 11:13:45 +000065 // Validate configured output
66 if(output->total_size() != 0)
67 {
Gian Marco Iodice247f52c2018-03-22 11:24:56 +000068 const TensorShape output_shape = misc::shape_calculator::compute_winograd_input_transform_shape(*input, winograd_info);
Gian Marco Iodiced2fab732018-03-02 11:18:12 +000069
Giorgio Arena1f9ca1d2018-03-01 11:13:45 +000070 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DIMENSIONS(output->tensor_shape(), output_shape);
71 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input, output);
72 }
73
74 return Status{};
75}
76
Gian Marco Iodice247f52c2018-03-22 11:24:56 +000077std::pair<Status, Window> validate_and_configure_window(ITensorInfo *input, ITensorInfo *output, const WinogradInfo &winograd_info)
Giorgio Arena1f9ca1d2018-03-01 11:13:45 +000078{
79 ARM_COMPUTE_UNUSED(output);
80 ARM_COMPUTE_ERROR_ON_NULLPTR(input, output);
Giorgio Arena1f9ca1d2018-03-01 11:13:45 +000081
Giorgio Arena149fdf32018-07-04 17:03:33 +010082 bool window_changed = false;
83 Window win = calculate_max_window(*input, Steps(1, 1));
Giorgio Arenac42f28d2018-04-26 11:33:05 +010084
85 if(input->data_layout() == DataLayout::NCHW)
86 {
Giorgio Arena149fdf32018-07-04 17:03:33 +010087 const PadStrideInfo conv_info = winograd_info.convolution_info;
88 const Size2D output_tile_size = winograd_info.output_tile_size;
89 const Size2D kernel_size = winograd_info.kernel_size;
90
91 unsigned int num_elems_read_per_iteration_x = output_tile_size.width + kernel_size.width - 1;
92 unsigned int num_elems_read_per_iteration_y = output_tile_size.height + kernel_size.height - 1;
93
94 AccessWindowRectangle input_access(input, -conv_info.pad_left(), -conv_info.pad_top(), num_elems_read_per_iteration_x, num_elems_read_per_iteration_y);
95 window_changed = update_window_and_padding(win, input_access);
Giorgio Arenac42f28d2018-04-26 11:33:05 +010096 }
Giorgio Arena1f9ca1d2018-03-01 11:13:45 +000097
Giorgio Arena1f9ca1d2018-03-01 11:13:45 +000098 Status err = (window_changed) ? ARM_COMPUTE_CREATE_ERROR(ErrorCode::RUNTIME_ERROR, "Insufficient Padding!") : Status{};
99 return std::make_pair(err, win);
100}
101} // namespace
102
Manuel Bottinic6f4ec32021-05-18 18:41:56 +0100103ClWinogradInputTransformKernel::ClWinogradInputTransformKernel()
Giorgio Arena1f9ca1d2018-03-01 11:13:45 +0000104{
Giorgio Arena4a95bba2021-06-28 11:00:27 +0100105 _type = CLKernelType::WINOGRAD;
Giorgio Arena1f9ca1d2018-03-01 11:13:45 +0000106}
107
Manuel Bottinic6f4ec32021-05-18 18:41:56 +0100108BorderSize ClWinogradInputTransformKernel::border_size() const
Giorgio Arena1f9ca1d2018-03-01 11:13:45 +0000109{
110 return _border_size;
111}
112
Manuel Bottinic6f4ec32021-05-18 18:41:56 +0100113void ClWinogradInputTransformKernel::configure(const ClCompileContext &compile_context, ITensorInfo *src, ITensorInfo *dst, const WinogradInfo &winograd_info)
Giorgio Arena1f9ca1d2018-03-01 11:13:45 +0000114{
Manuel Bottinic6f4ec32021-05-18 18:41:56 +0100115 ARM_COMPUTE_ERROR_ON_NULLPTR(src, dst);
116 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(src, dst, winograd_info));
Manuel Bottini4c6bd512020-04-08 10:15:51 +0100117
Manuel Bottinic6f4ec32021-05-18 18:41:56 +0100118 auto padding_info = get_padding_info({ src, dst });
SiCong Li04a07062020-11-17 14:09:01 +0000119
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000120 const PadStrideInfo conv_info = winograd_info.convolution_info;
121 const Size2D output_tile_size = winograd_info.output_tile_size;
122 const Size2D kernel_size = winograd_info.kernel_size;
Giorgio Arena1f9ca1d2018-03-01 11:13:45 +0000123
Manuel Bottinic6f4ec32021-05-18 18:41:56 +0100124 _data_layout = src->data_layout();
Georgios Pinitas7fdcfb12020-01-09 16:45:46 +0000125
126 const size_t idx_w = get_data_layout_dimension_index(_data_layout, DataLayoutDimension::WIDTH);
127 const size_t idx_h = get_data_layout_dimension_index(_data_layout, DataLayoutDimension::HEIGHT);
Giorgio Arenac42f28d2018-04-26 11:33:05 +0100128
Gian Marco Iodicef1c2bf02018-06-13 14:05:54 +0100129 // Compute the number of output tiles along the x and y direction of size "output_tile_size"
Manuel Bottinic6f4ec32021-05-18 18:41:56 +0100130 const Size2D num_tiles = compute_winograd_convolution_tiles(Size2D(src->dimension(idx_w), src->dimension(idx_h)),
Gian Marco Iodicef1c2bf02018-06-13 14:05:54 +0100131 kernel_size,
132 output_tile_size,
133 conv_info);
134
Gian Marco Iodicef1c2bf02018-06-13 14:05:54 +0100135 _num_tiles_x = num_tiles.width;
136 _num_tiles_y = num_tiles.height;
Giorgio Arena1f9ca1d2018-03-01 11:13:45 +0000137
Manuel Bottinic6f4ec32021-05-18 18:41:56 +0100138 const TensorShape output_shape = misc::shape_calculator::compute_winograd_input_transform_shape(*src, winograd_info);
Giorgio Arena1f9ca1d2018-03-01 11:13:45 +0000139
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000140 // Output auto initialization if not yet initialized
Manuel Bottinic6f4ec32021-05-18 18:41:56 +0100141 auto_init_if_empty(*dst, src->clone()->set_tensor_shape(output_shape));
Giorgio Arena1f9ca1d2018-03-01 11:13:45 +0000142
Manuel Bottinic6f4ec32021-05-18 18:41:56 +0100143 ARM_COMPUTE_ERROR_ON(_num_tiles_x * _num_tiles_y != static_cast<int>(dst->dimension(1)));
144 const size_t total_batches = src->tensor_shape().total_size_upper(3);
Giorgio Arena1f9ca1d2018-03-01 11:13:45 +0000145
146 CLBuildOptions build_opts;
Georgios Pinitas7fdcfb12020-01-09 16:45:46 +0000147 if(_data_layout == DataLayout::NHWC)
Giorgio Arenac42f28d2018-04-26 11:33:05 +0100148 {
Gian Marco Iodice534b8892021-04-01 16:17:16 +0100149 build_opts.add_option("-DNHWC");
Manuel Bottinic6f4ec32021-05-18 18:41:56 +0100150 build_opts.add_option("-DSRC_WIDTH=" + support::cpp11::to_string(src->dimension(idx_w)));
151 build_opts.add_option("-DSRC_HEIGHT=" + support::cpp11::to_string(src->dimension(idx_h)));
Gian Marco Iodice534b8892021-04-01 16:17:16 +0100152 build_opts.add_option("-DNUM_TILES_X=" + support::cpp11::to_string(_num_tiles_x));
153 build_opts.add_option("-DNUM_TILES_Y=" + support::cpp11::to_string(_num_tiles_y));
154 build_opts.add_option("-DPAD_LEFT=" + support::cpp11::to_string(conv_info.pad_left()));
155 build_opts.add_option("-DPAD_TOP=" + support::cpp11::to_string(conv_info.pad_top()));
156 build_opts.add_option("-DOUTPUT_TILE_W=" + support::cpp11::to_string(output_tile_size.width));
157 build_opts.add_option("-DOUTPUT_TILE_H=" + support::cpp11::to_string(output_tile_size.height));
Manuel Bottinic6f4ec32021-05-18 18:41:56 +0100158 build_opts.add_option("-DDATA_TYPE=" + get_cl_type_from_data_type(src->data_type()));
Gian Marco Iodice534b8892021-04-01 16:17:16 +0100159 build_opts.add_option_if(winograd_info.kernel_size.height == 1, "-DWINOGRAD_INPUT_TRANSFORM_HORIZONTAL");
160 build_opts.add_option_if(winograd_info.kernel_size.width == 1, "-DWINOGRAD_INPUT_TRANSFORM_VERTICAL");
Giorgio Arenac42f28d2018-04-26 11:33:05 +0100161 }
Georgios Pinitasc55beee2018-10-23 15:23:23 +0100162 else
163 {
Gian Marco Iodice534b8892021-04-01 16:17:16 +0100164 build_opts.add_option("-DNUM_TILES_X=" + support::cpp11::to_string(_num_tiles_x));
165 build_opts.add_option("-DPAD_LEFT=" + support::cpp11::to_string(conv_info.pad_left()));
166 build_opts.add_option("-DPAD_TOP=" + support::cpp11::to_string(conv_info.pad_top()));
167 build_opts.add_option("-DOUTPUT_TILE_W=" + support::cpp11::to_string(output_tile_size.width));
168 build_opts.add_option("-DOUTPUT_TILE_H=" + support::cpp11::to_string(output_tile_size.height));
Manuel Bottinic6f4ec32021-05-18 18:41:56 +0100169 build_opts.add_option("-DDATA_TYPE=" + get_cl_type_from_data_type(src->data_type()));
Gian Marco Iodice534b8892021-04-01 16:17:16 +0100170 build_opts.add_option_if(winograd_info.kernel_size.height == 1, "-DWINOGRAD_INPUT_TRANSFORM_HORIZONTAL");
171 build_opts.add_option_if(winograd_info.kernel_size.width == 1, "-DWINOGRAD_INPUT_TRANSFORM_VERTICAL");
Manuel Bottinic6f4ec32021-05-18 18:41:56 +0100172 build_opts.add_option_if(total_batches > 1, "-DSRC_DEPTH=" + support::cpp11::to_string(src->dimension(2)));
Georgios Pinitasc55beee2018-10-23 15:23:23 +0100173 }
Giorgio Arenac42f28d2018-04-26 11:33:05 +0100174
Giorgio Arena1f9ca1d2018-03-01 11:13:45 +0000175 // Create kernel
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000176 std::string kernel_name = "winograd_input_transform_" + output_tile_size.to_string() + "_" + kernel_size.to_string();
177
Gian Marco Iodicef1c2bf02018-06-13 14:05:54 +0100178 // Get the maximum dimension from the tile size
179 const unsigned int tile_max_dim = std::max(output_tile_size.width, output_tile_size.height);
180
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000181 // Check optimized kernel if output_dims == 2x2
Georgios Pinitas7fdcfb12020-01-09 16:45:46 +0000182 if((tile_max_dim == 2) && (_data_layout == DataLayout::NCHW))
Giorgio Arena1f9ca1d2018-03-01 11:13:45 +0000183 {
Manuel Bottinic6f4ec32021-05-18 18:41:56 +0100184 _step_z = (src->dimension(2) % 2) != 0 ? 1 : 2;
Giorgio Arena1f9ca1d2018-03-01 11:13:45 +0000185 }
186
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000187 // Append stepz and data layout
188 kernel_name += "_stepz";
189 kernel_name += support::cpp11::to_string(_step_z);
Georgios Pinitas7fdcfb12020-01-09 16:45:46 +0000190 kernel_name += "_" + lower_string(string_from_data_layout(_data_layout));
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000191
Manuel Bottini4c6bd512020-04-08 10:15:51 +0100192 _kernel = create_kernel(compile_context, kernel_name, build_opts.options());
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000193
Giorgio Arena1f9ca1d2018-03-01 11:13:45 +0000194 // Create window and update padding
Manuel Bottinic6f4ec32021-05-18 18:41:56 +0100195 auto win_config = validate_and_configure_window(src, dst, winograd_info);
Giorgio Arena1f9ca1d2018-03-01 11:13:45 +0000196 ARM_COMPUTE_ERROR_THROW_ON(win_config.first);
Manuel Bottinic6f4ec32021-05-18 18:41:56 +0100197 IClKernel::configure_internal(win_config.second, cl::NDRange(1, 1, 8));
Giorgio Arena1f9ca1d2018-03-01 11:13:45 +0000198
Manuel Bottinic6f4ec32021-05-18 18:41:56 +0100199 _border_size = BorderSize(src->padding());
Giorgio Arena2567adf2020-12-14 10:50:50 +0000200
Manuel Bottinic6f4ec32021-05-18 18:41:56 +0100201 ARM_COMPUTE_ERROR_ON((src->data_layout() == DataLayout::NHWC) && has_padding_changed(padding_info));
SiCong Li04a07062020-11-17 14:09:01 +0000202
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000203 _config_id = kernel_name;
Manuel Bottinic6f4ec32021-05-18 18:41:56 +0100204 _config_id += support::cpp11::to_string(src->dimension(0));
Giorgio Arena1f9ca1d2018-03-01 11:13:45 +0000205 _config_id += "_";
Manuel Bottinic6f4ec32021-05-18 18:41:56 +0100206 _config_id += support::cpp11::to_string(src->dimension(1));
Giorgio Arena1f9ca1d2018-03-01 11:13:45 +0000207 _config_id += "_";
Manuel Bottinic6f4ec32021-05-18 18:41:56 +0100208 _config_id += support::cpp11::to_string(src->dimension(2));
Giorgio Arena1f9ca1d2018-03-01 11:13:45 +0000209 _config_id += "_";
210 _config_id += support::cpp11::to_string(conv_info.pad_left());
211 _config_id += "_";
212 _config_id += support::cpp11::to_string(conv_info.pad_top());
Gian Marco Iodicef1c2bf02018-06-13 14:05:54 +0100213 _config_id += "_";
Georgios Pinitas7fdcfb12020-01-09 16:45:46 +0000214 _config_id += lower_string(string_from_data_layout(_data_layout));
Giorgio Arena1f9ca1d2018-03-01 11:13:45 +0000215}
216
Manuel Bottinic6f4ec32021-05-18 18:41:56 +0100217Status ClWinogradInputTransformKernel::validate(const ITensorInfo *src, const ITensorInfo *dst, const WinogradInfo &winograd_info)
Giorgio Arena1f9ca1d2018-03-01 11:13:45 +0000218{
Manuel Bottinic6f4ec32021-05-18 18:41:56 +0100219 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(src, dst);
220 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(src, dst, winograd_info));
221 ARM_COMPUTE_RETURN_ON_ERROR(validate_and_configure_window(src->clone().get(), dst->clone().get(), winograd_info).first);
Giorgio Arena1f9ca1d2018-03-01 11:13:45 +0000222 return Status{};
223}
224
Manuel Bottinic6f4ec32021-05-18 18:41:56 +0100225void ClWinogradInputTransformKernel::run_op(ITensorPack &tensors, const Window &window, cl::CommandQueue &queue)
Giorgio Arena1f9ca1d2018-03-01 11:13:45 +0000226{
227 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
228 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(IKernel::window(), window);
229
Manuel Bottinic6f4ec32021-05-18 18:41:56 +0100230 auto src = utils::cast::polymorphic_downcast<const ICLTensor *>(tensors.get_const_tensor(TensorType::ACL_SRC));
231 auto dst = utils::cast::polymorphic_downcast<ICLTensor *>(tensors.get_tensor(TensorType::ACL_DST));
232
Georgios Pinitas7fdcfb12020-01-09 16:45:46 +0000233 const size_t idx_w = get_data_layout_dimension_index(_data_layout, DataLayoutDimension::WIDTH);
234 const size_t idx_h = get_data_layout_dimension_index(_data_layout, DataLayoutDimension::HEIGHT);
235 const size_t idx_c = get_data_layout_dimension_index(_data_layout, DataLayoutDimension::CHANNEL);
236 const size_t total_batches = window.shape().total_size_upper(3);
Giorgio Arena1f9ca1d2018-03-01 11:13:45 +0000237
Georgios Pinitasc55beee2018-10-23 15:23:23 +0100238 // Collapse window
Manuel Bottinic6f4ec32021-05-18 18:41:56 +0100239 Window window_collapsed = window.collapse_if_possible(IClKernel::window(), Window::DimZ);
Georgios Pinitasc55beee2018-10-23 15:23:23 +0100240
Georgios Pinitas7fdcfb12020-01-09 16:45:46 +0000241 if(_data_layout == DataLayout::NHWC)
Georgios Pinitasc55beee2018-10-23 15:23:23 +0100242 {
Gian Marco Iodice534b8892021-04-01 16:17:16 +0100243 Window slice = window_collapsed.first_slice_window_3D();
244 slice.set(1, Window::Dimension(0, _num_tiles_x * _num_tiles_y, 1));
245 slice.set(2, Window::Dimension(0, total_batches, 1));
Giorgio Arenac42f28d2018-04-26 11:33:05 +0100246
Giorgio Arena1f9ca1d2018-03-01 11:13:45 +0000247 unsigned int idx = 0;
Manuel Bottinic6f4ec32021-05-18 18:41:56 +0100248 add_4D_tensor_argument(idx, src, slice);
249 add_4D_tensor_argument(idx, dst, slice);
Anthony Barbierb6eb3532018-08-08 13:20:04 +0100250 enqueue(queue, *this, slice, lws_hint());
Giorgio Arena1f9ca1d2018-03-01 11:13:45 +0000251 }
Gian Marco Iodice534b8892021-04-01 16:17:16 +0100252 else
253 {
254 Window slice = window_collapsed.first_slice_window_3D();
255 slice.set(idx_w, Window::Dimension(0, _num_tiles_x, 1));
256 slice.set(idx_h, Window::Dimension(0, _num_tiles_y, 1));
257
258 ARM_COMPUTE_ERROR_ON(((slice[idx_c].end() - slice[idx_c].start()) % _step_z) != 0);
259 slice.set(idx_c, Window::Dimension(slice[idx_c].start(), slice[idx_c].end(), _step_z));
260
261 unsigned int idx = 2 * num_arguments_per_3D_tensor();
Manuel Bottinic6f4ec32021-05-18 18:41:56 +0100262 _kernel.setArg<cl_uint>(idx++, static_cast<unsigned int>(src->info()->strides_in_bytes()[3]));
263 _kernel.setArg<cl_uint>(idx++, static_cast<unsigned int>(dst->info()->strides_in_bytes()[3]));
Gian Marco Iodice534b8892021-04-01 16:17:16 +0100264
265 do
266 {
267 unsigned int idx = 0;
Manuel Bottinic6f4ec32021-05-18 18:41:56 +0100268 add_3D_tensor_argument(idx, src, slice);
269 add_3D_tensor_argument(idx, dst, slice);
Gian Marco Iodice534b8892021-04-01 16:17:16 +0100270
271 enqueue(queue, *this, slice, lws_hint());
272 }
273 while(window_collapsed.slide_window_slice_3D(slice));
274 }
Giorgio Arena1f9ca1d2018-03-01 11:13:45 +0000275}
Manuel Bottinic6f4ec32021-05-18 18:41:56 +0100276} // namespace kernels
277} // namespace opencl
278} // namespace arm_compute