blob: fd461c53cdfe66a8309a573621e28020a06314f2 [file] [log] [blame]
Anthony Barbier7068f992017-10-26 15:23:08 +01001/*
Stephen Lie855c232018-01-04 14:13:22 +08002 * Copyright (c) 2017-2018 ARM Limited.
Anthony Barbier7068f992017-10-26 15:23:08 +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/GLES_COMPUTE/kernels/GCDirectConvolutionLayerKernel.h"
25
26#include "arm_compute/core/AccessWindowStatic.h"
27#include "arm_compute/core/Error.h"
28#include "arm_compute/core/GLES_COMPUTE/GCHelpers.h"
29#include "arm_compute/core/GLES_COMPUTE/GCKernelLibrary.h"
30#include "arm_compute/core/GLES_COMPUTE/IGCTensor.h"
31#include "arm_compute/core/Helpers.h"
32#include "arm_compute/core/IAccessWindow.h"
33#include "arm_compute/core/ITensor.h"
34#include "arm_compute/core/Types.h"
35#include "arm_compute/core/Validate.h"
36#include "support/ToolchainSupport.h"
37
38using namespace arm_compute;
39
40template <unsigned int kernel_size>
41GCDirectConvolutionLayerKernel<kernel_size>::GCDirectConvolutionLayerKernel()
42 : _input(nullptr), _bias(nullptr), _weights(nullptr), _output(nullptr), _border_size(0), _conv_stride_x(0), _conv_stride_y(0), _conv_pad_x(0), _conv_pad_y(0), _lws(gles::NDRange(1U, 1U, 1U))
43{
44}
45
46template <unsigned int kernel_size>
47BorderSize GCDirectConvolutionLayerKernel<kernel_size>::border_size() const
48{
49 return _border_size;
50}
51
52template <unsigned int kernel_size>
53void GCDirectConvolutionLayerKernel<kernel_size>::configure(const IGCTensor *input, const IGCTensor *weights, const IGCTensor *bias, IGCTensor *output, const PadStrideInfo &conv_info)
54{
55 ARM_COMPUTE_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input, 1, DataType::F16, DataType::F32);
Anthony Barbier7068f992017-10-26 15:23:08 +010056 ARM_COMPUTE_ERROR_ON(weights->info()->dimension(2) != input->info()->dimension(2));
57 ARM_COMPUTE_ERROR_ON(weights->info()->dimension(0) != weights->info()->dimension(1));
58 ARM_COMPUTE_ERROR_ON(weights->info()->num_dimensions() > 4);
59 ARM_COMPUTE_ERROR_ON_MSG((kernel_size == 3 && std::get<0>(conv_info.stride()) > 2), "Strides larger than 2 not supported in 3x3 direct convolution!");
60 ARM_COMPUTE_ERROR_ON(kernel_size != weights->info()->dimension(0));
61
62 if(bias != nullptr)
63 {
64 ARM_COMPUTE_ERROR_ON_MISMATCHING_DATA_TYPES(weights, bias);
65 // FIXME: Bug in framework, workaround it in tests currently.
66 //ARM_COMPUTE_ERROR_ON(bias->info()->dimension(0) != weights->info()->dimension(3));
67 ARM_COMPUTE_ERROR_ON(bias->info()->num_dimensions() > 1);
68 }
69
Frank Leib9d38ee2017-12-05 10:43:33 +080070 // Get convolved dimensions
71 unsigned int owidth = 0;
72 unsigned int oheight = 0;
73 std::tie(owidth, oheight) = scaled_dimensions(input->info()->dimension(0), input->info()->dimension(1), kernel_size, kernel_size, conv_info);
74
75 TensorShape output_shape = input->info()->tensor_shape();
76 output_shape.set(0, owidth);
77 output_shape.set(1, oheight);
78 output_shape.set(2, weights->info()->dimension(3));
79
80 // Output auto inizialitation if not yet initialized
81 auto_init_if_empty(*output->info(), output_shape, 1, input->info()->data_type(), input->info()->fixed_point_position());
82
83 ARM_COMPUTE_ERROR_ON_MISMATCHING_DATA_TYPES(input, weights, output);
84 ARM_COMPUTE_ERROR_ON_MISMATCHING_DIMENSIONS(output->info()->tensor_shape(), output_shape);
85 ARM_COMPUTE_ERROR_ON_MISMATCHING_DATA_TYPES(input, output);
86 ARM_COMPUTE_ERROR_ON_MISMATCHING_FIXED_POINT(input, output);
87
Anthony Barbier7068f992017-10-26 15:23:08 +010088 _conv_stride_x = std::get<0>(conv_info.stride());
89 _conv_stride_y = std::get<1>(conv_info.stride());
90 _conv_pad_x = std::get<0>(conv_info.pad());
91 _conv_pad_y = std::get<1>(conv_info.pad());
92
93 _input = input;
94 _weights = weights;
95 _output = output;
96 _bias = bias;
97 _border_size = BorderSize(_conv_pad_y, _conv_pad_x);
98
99 std::set<std::string> options;
100
101 options.emplace("#define LOCAL_SIZE_X " + support::cpp11::to_string(_lws[0]));
102 options.emplace("#define LOCAL_SIZE_Y " + support::cpp11::to_string(_lws[1]));
103 options.emplace("#define LOCAL_SIZE_Z " + support::cpp11::to_string(_lws[2]));
104 options.emplace("#define STRIDE_X " + support::cpp11::to_string(_conv_stride_x));
Xinghang Zhou4af62a02017-11-02 16:37:24 +0800105 options.emplace("#define STRIDE_Y " + support::cpp11::to_string(_conv_stride_y));
Anthony Barbier7068f992017-10-26 15:23:08 +0100106
107 std::string dt_name = (input->info()->data_type() == DataType::F32) ? "DATA_TYPE_FP32" : "DATA_TYPE_FP16";
108 options.emplace(("#define " + dt_name));
109
110 unsigned int num_elems_read_per_iteration_x = kernel_size * _conv_stride_x;
111 unsigned int num_elems_read_per_iteration_y = 1;
112 unsigned int num_elems_written_per_iteration_x = 1;
113 unsigned int num_elems_written_per_iteration_y = 1;
114 unsigned int num_elems_written_per_iteration_z = 1;
115
116 if(kernel_size == 3)
117 {
118 if((_conv_stride_x == 1) && (_conv_stride_y == 1))
119 {
120 switch(input->info()->data_type())
121 {
Anthony Barbier7068f992017-10-26 15:23:08 +0100122 case DataType::F16:
Joel Liang63875432018-01-02 14:05:06 +0800123 // TODO(APPBROWSER-299): Choose the most optimal path and remove others.
124#define PROCESS_4X_3Y_1Z
125
126#if defined(PROCESS_8X_3Y_1Z)
127 options.emplace("#define PROCESS_8X_3Y_1Z");
Anthony Barbier7068f992017-10-26 15:23:08 +0100128 num_elems_read_per_iteration_x = 16;
129 num_elems_read_per_iteration_y = 5;
130 num_elems_written_per_iteration_x = 8;
131 num_elems_written_per_iteration_y = 3;
Joel Liang63875432018-01-02 14:05:06 +0800132#elif defined(PROCESS_4X_3Y_1Z)
133 options.emplace("#define PROCESS_4X_3Y_1Z");
Anthony Barbier7068f992017-10-26 15:23:08 +0100134 num_elems_read_per_iteration_x = 8;
135 num_elems_read_per_iteration_y = 5;
136 num_elems_written_per_iteration_x = 4;
137 num_elems_written_per_iteration_y = 3;
Joel Liang63875432018-01-02 14:05:06 +0800138#elif defined(PROCESS_4X_4Y_1Z)
139 options.emplace("#define PROCESS_4X_4Y_1Z");
Anthony Barbier7068f992017-10-26 15:23:08 +0100140 num_elems_read_per_iteration_x = 8;
141 num_elems_read_per_iteration_y = 6;
142 num_elems_written_per_iteration_x = 4;
143 num_elems_written_per_iteration_y = 4;
Joel Liang63875432018-01-02 14:05:06 +0800144#elif defined(PROCESS_4X_3Y_2Z)
145 options.emplace("#define PROCESS_4X_3Y_2Z");
Anthony Barbier7068f992017-10-26 15:23:08 +0100146 num_elems_read_per_iteration_x = 8;
147 num_elems_read_per_iteration_y = 5;
148 num_elems_written_per_iteration_x = 4;
149 num_elems_written_per_iteration_y = 3;
150 num_elems_written_per_iteration_z = 2;
Joel Liang63875432018-01-02 14:05:06 +0800151#endif /* PROCESS_nX_nY_nZ */
152#undef PROCESS_8X_3Y_1Z
153#undef PROCESS_4X_3Y_1Z
154#undef PROCESS_4X_4Y_1Z
155#undef PROCESS_4X_3Y_2Z
Anthony Barbier7068f992017-10-26 15:23:08 +0100156 break;
157
158 case DataType::F32:
Joel Liang63875432018-01-02 14:05:06 +0800159 options.emplace("#define PROCESS_4X_3Y_1Z");
Anthony Barbier7068f992017-10-26 15:23:08 +0100160 num_elems_read_per_iteration_x = 8;
161 num_elems_read_per_iteration_y = 5;
162 num_elems_written_per_iteration_x = 4;
163 num_elems_written_per_iteration_y = 3;
164 break;
165
166 default:
167 ARM_COMPUTE_ERROR("Current data type is not supported");
168 break;
169 }
170 }
171 // FIXME: Just keep one in release
172 else
173 {
174 switch(input->info()->data_type())
175 {
176 case DataType::F16:
Joel Liang63875432018-01-02 14:05:06 +0800177 options.emplace("#define PROCESS_4X_1Y_1Z");
Anthony Barbier7068f992017-10-26 15:23:08 +0100178 num_elems_read_per_iteration_x = 8;
179 num_elems_written_per_iteration_x = 4;
180 break;
181
182 case DataType::F32:
183 // TODO(APPBROWSER-299): Choose the most optimal path and remove others.
Joel Liang63875432018-01-02 14:05:06 +0800184#define PROCESS_4X_1Y_1Z
Anthony Barbier7068f992017-10-26 15:23:08 +0100185
Joel Liang63875432018-01-02 14:05:06 +0800186#if defined(PROCESS_1X_1Y_1Z)
187 options.emplace("#define PROCESS_1X_1Y_1Z");
Anthony Barbier7068f992017-10-26 15:23:08 +0100188 num_elems_read_per_iteration_x = 3;
189 num_elems_written_per_iteration_x = 1;
Joel Liang63875432018-01-02 14:05:06 +0800190#elif defined(PROCESS_4X_1Y_1Z)
191 options.emplace("#define PROCESS_4X_1Y_1Z");
Anthony Barbier7068f992017-10-26 15:23:08 +0100192 num_elems_read_per_iteration_x = 8;
193 num_elems_written_per_iteration_x = 4;
Joel Liang63875432018-01-02 14:05:06 +0800194#elif defined(PROCESS_8X_1Y_1Z)
195 options.emplace("#define PROCESS_8X_1Y_1Z");
Anthony Barbier7068f992017-10-26 15:23:08 +0100196 num_elems_read_per_iteration_x = 12;
197 num_elems_written_per_iteration_x = 8;
Joel Liang63875432018-01-02 14:05:06 +0800198#else /* PROCESS_nX_nY_nZ */
Anthony Barbier7068f992017-10-26 15:23:08 +0100199#error Have to declare how many elements to process in one thread.
Joel Liang63875432018-01-02 14:05:06 +0800200#endif /* PROCESS_nX_nY_nZ */
201#undef PROCESS_1X_1Y_1Z
202#undef PROCESS_4X_1Y_1Z
203#undef PROCESS_8X_1Y_1Z
Anthony Barbier7068f992017-10-26 15:23:08 +0100204 break;
205
206 default:
207 ARM_COMPUTE_ERROR("Current data type is not supported");
208 break;
209 }
210 }
211 }
212 else if(kernel_size == 1)
213 {
Xinghang Zhou4af62a02017-11-02 16:37:24 +0800214 if(weights->info()->dimension(2) % 2 == 0)
215 {
216 options.emplace("#define WEIGHTS_OPTIMIZATION");
217 }
Anthony Barbier7068f992017-10-26 15:23:08 +0100218 switch(input->info()->data_type())
219 {
220 case DataType::F16:
Xinghang Zhou4af62a02017-11-02 16:37:24 +0800221#define PROCESS_8X_2Y_1Z
222
223#if defined(PROCESS_4X_1Y_1Z)
224 options.emplace("#define PROCESS_4X_1Y_1Z");
225 num_elems_read_per_iteration_x = 4;
226 num_elems_written_per_iteration_x = 4;
227#elif defined(PROCESS_4X_2Y_1Z)
228 options.emplace("#define PROCESS_4X_2Y_1Z");
229 num_elems_read_per_iteration_x = 4;
230 num_elems_read_per_iteration_y = 2;
231 num_elems_written_per_iteration_x = 4;
232 num_elems_written_per_iteration_y = 2;
233#elif defined(PROCESS_4X_3Y_1Z)
234 options.emplace("#define PROCESS_4X_3Y_1Z");
235 num_elems_read_per_iteration_x = 4;
236 num_elems_read_per_iteration_y = 3;
237 num_elems_written_per_iteration_x = 4;
238 num_elems_written_per_iteration_y = 3;
239#elif defined(PROCESS_4X_4Y_1Z)
240 options.emplace("#define PROCESS_4X_4Y_1Z");
241 num_elems_read_per_iteration_x = 4;
242 num_elems_read_per_iteration_y = 4;
243 num_elems_written_per_iteration_x = 4;
244 num_elems_written_per_iteration_y = 4;
245#elif defined(PROCESS_4X_2Y_2Z)
246 ARM_COMPUTE_ERROR_ON_MSG((weights->info()->dimension(4) % 2) == 1, "Current 'weights->info()->dimension(4) % 2) == 1' is not supported");
247 options.emplace("#define PROCESS_4X_2Y_2Z");
248 num_elems_read_per_iteration_x = 4;
249 num_elems_read_per_iteration_y = 2;
250 num_elems_written_per_iteration_x = 4;
251 num_elems_written_per_iteration_y = 2;
252 num_elems_written_per_iteration_z = 2;
253#elif defined(PROCESS_8X_1Y_1Z)
254 options.emplace("#define PROCESS_8X_1Y_1Z");
Anthony Barbier7068f992017-10-26 15:23:08 +0100255 num_elems_read_per_iteration_x = 8;
256 num_elems_written_per_iteration_x = 8;
Xinghang Zhou4af62a02017-11-02 16:37:24 +0800257#elif defined(PROCESS_8X_2Y_1Z)
258 options.emplace("#define PROCESS_8X_2Y_1Z");
259 num_elems_read_per_iteration_x = 8;
260 num_elems_read_per_iteration_y = 2;
261 num_elems_written_per_iteration_x = 8;
262 num_elems_written_per_iteration_y = 2;
263#else /* PROCESS_4X_1Y_1Z */
264#error Have to declare how many elements to process in one thread.
265#endif /* PROCESS_4X_1Y_1Z */
266#undef PROCESS_4X_1Y_1Z
267#undef PROCESS_4X_2Y_1Z
268#undef PROCESS_4X_3Y_1Z
269#undef PROCESS_4X_4Y_1Z
270#undef PROCESS_4X_2Y_2Z
271#undef PROCESS_8X_1Y_1Z
272#undef PROCESS_8X_2Y_1Z
Anthony Barbier7068f992017-10-26 15:23:08 +0100273 break;
274
275 case DataType::F32:
276 num_elems_read_per_iteration_x = 1;
277 num_elems_written_per_iteration_x = 1;
278 break;
279
280 default:
281 break;
282 }
283 }
284 else if(kernel_size == 5)
285 {
286 switch(input->info()->data_type())
287 {
288 case DataType::F16:
ASIAPAC\steli0123ac91b2017-11-07 16:14:44 +0800289 options.emplace("#define PROCESS_4X_1Y_1Z");
Anthony Barbier7068f992017-10-26 15:23:08 +0100290 num_elems_read_per_iteration_x = 8;
291 num_elems_written_per_iteration_x = 4;
292
293 default:
294 break;
295 }
296 }
297 else
298 {
299 }
300
301 if(_bias != nullptr)
302 {
303 options.emplace("#define BIAS");
304 }
305
306 std::stringstream kernel_name;
307 kernel_name << "direct_convolution" << kernel_size << "x" << kernel_size;
308
309 _kernel = static_cast<GCKernel>(GCKernelLibrary::get().create_kernel(kernel_name.str(), options));
310
Anthony Barbier7068f992017-10-26 15:23:08 +0100311 unsigned int idx = (_bias == nullptr) ? 3 * num_arguments_per_3D_tensor() : (num_arguments_per_1D_tensor() + 3 * num_arguments_per_3D_tensor());
312
313 // Calculate output right and bottom border
314 const int output_width = output->info()->dimension(0);
315 const int output_height = output->info()->dimension(1);
316 const int output_padding_right = ceil_to_multiple(output_width, num_elems_written_per_iteration_x * _lws[0]) - output_width;
317 const int output_padding_bottom = ceil_to_multiple(output_height, num_elems_written_per_iteration_y * _lws[1]) - output_height;
318
319 // Calculate input right and bottom border
Xinghang Zhou33ff9ef2018-01-17 11:23:39 +0800320 const int input_width = input->info()->dimension(0);
321 const int input_height = input->info()->dimension(1);
322 const int input_total_width = std::max(int(input->info()->padding().left), int(_conv_pad_x)) + input_width + std::max(int(input->info()->padding().right), int(_conv_pad_x));
323 const int input_total_height = std::max(int(input->info()->padding().top), int(_conv_pad_y)) + input_height + std::max(int(input->info()->padding().bottom), int(_conv_pad_y));
324 const int padding_right1 = ceil_to_multiple(input_total_width, num_elems_read_per_iteration_x * _lws[0]) - input_width - _conv_pad_x;
325 const int padding_bottom1 = ceil_to_multiple(input_total_height, num_elems_read_per_iteration_y * _lws[1]) - input_height - _conv_pad_y;
326
327 const int upper_bound_w = ceil_to_multiple(((output_width + output_padding_right) * _conv_stride_x + (kernel_size - 1)), num_elems_read_per_iteration_x * _lws[0]) - _conv_pad_x - input_width;
328 const int upper_bound_h = ceil_to_multiple(((output_height + output_padding_bottom) * _conv_stride_y + (kernel_size - 1)), num_elems_read_per_iteration_y * _lws[1]) - _conv_pad_y - input_height;
329 const int padding_right2 = std::max(upper_bound_w, _conv_pad_x);
330 const int padding_bottom2 = std::max(upper_bound_h, _conv_pad_y);
331
332 const int padding_right = std::max(padding_right1, padding_right2);
333 const int padding_bottom = std::max(padding_bottom1, padding_bottom2);
Anthony Barbier7068f992017-10-26 15:23:08 +0100334
335 BorderSize border = BorderSize(0, output_padding_right, output_padding_bottom, 0);
336
337 Window win = calculate_max_enlarged_window(*output->info(), Steps(num_elems_written_per_iteration_x, num_elems_written_per_iteration_y, num_elems_written_per_iteration_z), border);
338
339 AccessWindowStatic input_access(input->info(), -_conv_pad_x, -_conv_pad_y, input_width + padding_right, input_height + padding_bottom);
340 AccessWindowStatic weights_access = AccessWindowStatic(nullptr, 0, 0, 0, 0);
341 AccessWindowStatic bias_access = AccessWindowStatic(nullptr, 0, 0, 0, 1);
342
343 switch(weights->info()->data_type())
344 {
345 case DataType::F16:
zhenglin666635c2017-12-04 14:38:09 +0800346 if((weights->info()->dimension(2) % 2 != 0) || (kernel_size != 1))
347 {
348 weights_access = AccessWindowStatic(weights->info(), 0, 0, kernel_size + 1, kernel_size);
349 }
Anthony Barbier7068f992017-10-26 15:23:08 +0100350 if(_bias != nullptr)
351 {
352 bias_access = AccessWindowStatic(_bias->info(), 0, 0, _bias->info()->dimension(0) + 1, 1);
353 }
354 break;
355
356 case DataType::F32:
357 weights_access = AccessWindowStatic(weights->info(), 0, 0, kernel_size, kernel_size);
358 if(_bias != nullptr)
359 {
360 bias_access = AccessWindowStatic(_bias->info(), 0, 0, _bias->info()->dimension(0), 1);
361 }
362 break;
363
364 default:
365 ARM_COMPUTE_ERROR("Current data type is not supported");
366 break;
367 }
368
369 AccessWindowStatic output_access(output->info(), 0, 0, output_width + output_padding_right, output_height + output_padding_bottom);
370
371 if(_bias != nullptr)
372 {
373 update_window_and_padding(win, input_access, weights_access, bias_access, output_access);
374 }
375 else
376 {
377 update_window_and_padding(win, input_access, weights_access, output_access);
378 }
379
380 output_access.set_valid_region(win, ValidRegion(Coordinates(), output->info()->tensor_shape()));
381
Joel Liangf1f3ebd2017-11-10 09:59:19 +0800382 _kernel.set_argument(idx++, _weights->info()->strides_in_bytes()[3]); // weights_stride_w
383 _kernel.set_argument(idx++, _weights->info()->dimension(2)); // weights_depth
Anthony Barbier7068f992017-10-26 15:23:08 +0100384
385 IGCKernel::configure(win);
386}
387
388template <unsigned int kernel_size>
389void GCDirectConvolutionLayerKernel<kernel_size>::run(const Window &window)
390{
391 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
392 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(IKernel::window(), window);
393
394 _kernel.use();
395
396 // Get initial windows
397 Window slice = window.first_slice_window_3D();
398 Window win_in = window;
399
400 win_in.adjust(Window::DimX, -_conv_pad_x, true);
401 win_in.adjust(Window::DimY, -_conv_pad_y, true);
402 win_in.set_dimension_step(Window::DimX, window.x().step() * _conv_stride_x);
403 win_in.set_dimension_step(Window::DimY, window.y().step() * _conv_stride_y);
404
405 Window slice_in = win_in.first_slice_window_3D();
406
407 unsigned int idx1 = 2 * num_arguments_per_3D_tensor();
Joel Liangabd03cf2018-01-08 15:20:48 +0800408 add_3D_tensor_argument(idx1, _weights, 3, slice);
Anthony Barbier7068f992017-10-26 15:23:08 +0100409
410 if(_bias != nullptr)
411 {
412 Window slice_bias;
413 slice_bias.use_tensor_dimensions(_bias->info()->tensor_shape());
Joel Liangabd03cf2018-01-08 15:20:48 +0800414 add_1D_tensor_argument(idx1, _bias, 4, slice_bias);
Anthony Barbier7068f992017-10-26 15:23:08 +0100415 }
416
Xinghang Zhou33ff9ef2018-01-17 11:23:39 +0800417 slice.shift(Window::DimX, -(_output->info()->padding()).left);
418
Anthony Barbier7068f992017-10-26 15:23:08 +0100419 do
420 {
421 unsigned int idx = 0;
422
Joel Liangabd03cf2018-01-08 15:20:48 +0800423 add_3D_tensor_argument(idx, _input, 1, slice_in);
424 add_3D_tensor_argument(idx, _output, 2, slice);
Anthony Barbier7068f992017-10-26 15:23:08 +0100425
426 _kernel.update_shader_params();
427 enqueue(*this, slice, _lws);
428 }
429 while(window.slide_window_slice_3D(slice) && win_in.slide_window_slice_3D(slice_in));
430}
431
432template class arm_compute::GCDirectConvolutionLayerKernel<1>;
433template class arm_compute::GCDirectConvolutionLayerKernel<3>;
434template class arm_compute::GCDirectConvolutionLayerKernel<5>;