blob: ecff233382f60e918cf74cdae45bd047bf0a672d [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>
Isabella Gottardi3f217ec2018-02-12 14:59:19 +000053void GCDirectConvolutionLayerKernel<kernel_size>::configure(const IGCTensor *input, const IGCTensor *weights, const IGCTensor *bias, IGCTensor *output,
54 const PadStrideInfo &conv_info, const ActivationLayerInfo &act_info)
Anthony Barbier7068f992017-10-26 15:23:08 +010055{
56 ARM_COMPUTE_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input, 1, DataType::F16, DataType::F32);
Anthony Barbier7068f992017-10-26 15:23:08 +010057 ARM_COMPUTE_ERROR_ON(weights->info()->dimension(2) != input->info()->dimension(2));
58 ARM_COMPUTE_ERROR_ON(weights->info()->dimension(0) != weights->info()->dimension(1));
59 ARM_COMPUTE_ERROR_ON(weights->info()->num_dimensions() > 4);
60 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!");
61 ARM_COMPUTE_ERROR_ON(kernel_size != weights->info()->dimension(0));
Isabella Gottardi3f217ec2018-02-12 14:59:19 +000062 ARM_COMPUTE_ERROR_ON(act_info.enabled() && act_info.activation() != ActivationLayerInfo::ActivationFunction::RELU && act_info.activation() != ActivationLayerInfo::ActivationFunction::LOGISTIC);
Anthony Barbier7068f992017-10-26 15:23:08 +010063
64 if(bias != nullptr)
65 {
66 ARM_COMPUTE_ERROR_ON_MISMATCHING_DATA_TYPES(weights, bias);
67 // FIXME: Bug in framework, workaround it in tests currently.
68 //ARM_COMPUTE_ERROR_ON(bias->info()->dimension(0) != weights->info()->dimension(3));
69 ARM_COMPUTE_ERROR_ON(bias->info()->num_dimensions() > 1);
70 }
71
Frank Leib9d38ee2017-12-05 10:43:33 +080072 // Get convolved dimensions
73 unsigned int owidth = 0;
74 unsigned int oheight = 0;
75 std::tie(owidth, oheight) = scaled_dimensions(input->info()->dimension(0), input->info()->dimension(1), kernel_size, kernel_size, conv_info);
76
77 TensorShape output_shape = input->info()->tensor_shape();
78 output_shape.set(0, owidth);
79 output_shape.set(1, oheight);
80 output_shape.set(2, weights->info()->dimension(3));
81
82 // Output auto inizialitation if not yet initialized
Vidhya Sudhan Loganathan7485d5a2018-07-04 09:34:00 +010083 auto_init_if_empty(*output->info(), output_shape, 1, input->info()->data_type());
Frank Leib9d38ee2017-12-05 10:43:33 +080084
85 ARM_COMPUTE_ERROR_ON_MISMATCHING_DATA_TYPES(input, weights, output);
86 ARM_COMPUTE_ERROR_ON_MISMATCHING_DIMENSIONS(output->info()->tensor_shape(), output_shape);
87 ARM_COMPUTE_ERROR_ON_MISMATCHING_DATA_TYPES(input, output);
Anthony Barbier21f67d62018-02-16 15:17:48 +000088 ARM_COMPUTE_ERROR_ON(!conv_info.padding_is_symmetric());
Frank Leib9d38ee2017-12-05 10:43:33 +080089
Anthony Barbier7068f992017-10-26 15:23:08 +010090 _conv_stride_x = std::get<0>(conv_info.stride());
91 _conv_stride_y = std::get<1>(conv_info.stride());
92 _conv_pad_x = std::get<0>(conv_info.pad());
93 _conv_pad_y = std::get<1>(conv_info.pad());
94
95 _input = input;
96 _weights = weights;
97 _output = output;
98 _bias = bias;
99 _border_size = BorderSize(_conv_pad_y, _conv_pad_x);
100
101 std::set<std::string> options;
102
103 options.emplace("#define LOCAL_SIZE_X " + support::cpp11::to_string(_lws[0]));
104 options.emplace("#define LOCAL_SIZE_Y " + support::cpp11::to_string(_lws[1]));
105 options.emplace("#define LOCAL_SIZE_Z " + support::cpp11::to_string(_lws[2]));
106 options.emplace("#define STRIDE_X " + support::cpp11::to_string(_conv_stride_x));
Xinghang Zhou4af62a02017-11-02 16:37:24 +0800107 options.emplace("#define STRIDE_Y " + support::cpp11::to_string(_conv_stride_y));
Anthony Barbier7068f992017-10-26 15:23:08 +0100108
109 std::string dt_name = (input->info()->data_type() == DataType::F32) ? "DATA_TYPE_FP32" : "DATA_TYPE_FP16";
110 options.emplace(("#define " + dt_name));
111
Isabella Gottardi3f217ec2018-02-12 14:59:19 +0000112 // Activation information in case of a fused activation
113 if(act_info.enabled())
114 {
115 options.emplace("#define FUSED_ACTIVATION");
116 options.emplace(("#define " + string_from_activation_func(act_info.activation())));
117 options.emplace(("#define ACT_OP " + lower_string(string_from_activation_func(act_info.activation())) + "_op"));
118 options.emplace(("#define A_VAL " + float_to_string_with_full_precision(act_info.a())));
119 options.emplace(("#define B_VAL " + float_to_string_with_full_precision(act_info.b())));
120 }
121
Anthony Barbier7068f992017-10-26 15:23:08 +0100122 unsigned int num_elems_read_per_iteration_x = kernel_size * _conv_stride_x;
123 unsigned int num_elems_read_per_iteration_y = 1;
124 unsigned int num_elems_written_per_iteration_x = 1;
125 unsigned int num_elems_written_per_iteration_y = 1;
126 unsigned int num_elems_written_per_iteration_z = 1;
127
128 if(kernel_size == 3)
129 {
130 if((_conv_stride_x == 1) && (_conv_stride_y == 1))
131 {
132 switch(input->info()->data_type())
133 {
Anthony Barbier7068f992017-10-26 15:23:08 +0100134 case DataType::F16:
Joel Liang63875432018-01-02 14:05:06 +0800135 // TODO(APPBROWSER-299): Choose the most optimal path and remove others.
136#define PROCESS_4X_3Y_1Z
137
138#if defined(PROCESS_8X_3Y_1Z)
139 options.emplace("#define PROCESS_8X_3Y_1Z");
Anthony Barbier7068f992017-10-26 15:23:08 +0100140 num_elems_read_per_iteration_x = 16;
141 num_elems_read_per_iteration_y = 5;
142 num_elems_written_per_iteration_x = 8;
143 num_elems_written_per_iteration_y = 3;
Joel Liang63875432018-01-02 14:05:06 +0800144#elif defined(PROCESS_4X_3Y_1Z)
145 options.emplace("#define PROCESS_4X_3Y_1Z");
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;
Joel Liang63875432018-01-02 14:05:06 +0800150#elif defined(PROCESS_4X_4Y_1Z)
151 options.emplace("#define PROCESS_4X_4Y_1Z");
Anthony Barbier7068f992017-10-26 15:23:08 +0100152 num_elems_read_per_iteration_x = 8;
153 num_elems_read_per_iteration_y = 6;
154 num_elems_written_per_iteration_x = 4;
155 num_elems_written_per_iteration_y = 4;
Joel Liang63875432018-01-02 14:05:06 +0800156#elif defined(PROCESS_4X_3Y_2Z)
157 options.emplace("#define PROCESS_4X_3Y_2Z");
Anthony Barbier7068f992017-10-26 15:23:08 +0100158 num_elems_read_per_iteration_x = 8;
159 num_elems_read_per_iteration_y = 5;
160 num_elems_written_per_iteration_x = 4;
161 num_elems_written_per_iteration_y = 3;
162 num_elems_written_per_iteration_z = 2;
Joel Liang63875432018-01-02 14:05:06 +0800163#endif /* PROCESS_nX_nY_nZ */
164#undef PROCESS_8X_3Y_1Z
165#undef PROCESS_4X_3Y_1Z
166#undef PROCESS_4X_4Y_1Z
167#undef PROCESS_4X_3Y_2Z
Anthony Barbier7068f992017-10-26 15:23:08 +0100168 break;
169
170 case DataType::F32:
Joel Liang63875432018-01-02 14:05:06 +0800171 options.emplace("#define PROCESS_4X_3Y_1Z");
Anthony Barbier7068f992017-10-26 15:23:08 +0100172 num_elems_read_per_iteration_x = 8;
173 num_elems_read_per_iteration_y = 5;
174 num_elems_written_per_iteration_x = 4;
175 num_elems_written_per_iteration_y = 3;
176 break;
177
178 default:
179 ARM_COMPUTE_ERROR("Current data type is not supported");
180 break;
181 }
182 }
183 // FIXME: Just keep one in release
184 else
185 {
186 switch(input->info()->data_type())
187 {
188 case DataType::F16:
Joel Liang63875432018-01-02 14:05:06 +0800189 options.emplace("#define PROCESS_4X_1Y_1Z");
Anthony Barbier7068f992017-10-26 15:23:08 +0100190 num_elems_read_per_iteration_x = 8;
191 num_elems_written_per_iteration_x = 4;
192 break;
193
194 case DataType::F32:
195 // TODO(APPBROWSER-299): Choose the most optimal path and remove others.
Joel Liang63875432018-01-02 14:05:06 +0800196#define PROCESS_4X_1Y_1Z
Anthony Barbier7068f992017-10-26 15:23:08 +0100197
Joel Liang63875432018-01-02 14:05:06 +0800198#if defined(PROCESS_1X_1Y_1Z)
199 options.emplace("#define PROCESS_1X_1Y_1Z");
Anthony Barbier7068f992017-10-26 15:23:08 +0100200 num_elems_read_per_iteration_x = 3;
201 num_elems_written_per_iteration_x = 1;
Joel Liang63875432018-01-02 14:05:06 +0800202#elif defined(PROCESS_4X_1Y_1Z)
203 options.emplace("#define PROCESS_4X_1Y_1Z");
Anthony Barbier7068f992017-10-26 15:23:08 +0100204 num_elems_read_per_iteration_x = 8;
205 num_elems_written_per_iteration_x = 4;
Joel Liang63875432018-01-02 14:05:06 +0800206#elif defined(PROCESS_8X_1Y_1Z)
207 options.emplace("#define PROCESS_8X_1Y_1Z");
Anthony Barbier7068f992017-10-26 15:23:08 +0100208 num_elems_read_per_iteration_x = 12;
209 num_elems_written_per_iteration_x = 8;
Joel Liang63875432018-01-02 14:05:06 +0800210#else /* PROCESS_nX_nY_nZ */
Anthony Barbier7068f992017-10-26 15:23:08 +0100211#error Have to declare how many elements to process in one thread.
Joel Liang63875432018-01-02 14:05:06 +0800212#endif /* PROCESS_nX_nY_nZ */
213#undef PROCESS_1X_1Y_1Z
214#undef PROCESS_4X_1Y_1Z
215#undef PROCESS_8X_1Y_1Z
Anthony Barbier7068f992017-10-26 15:23:08 +0100216 break;
217
218 default:
219 ARM_COMPUTE_ERROR("Current data type is not supported");
220 break;
221 }
222 }
223 }
224 else if(kernel_size == 1)
225 {
Xinghang Zhou4af62a02017-11-02 16:37:24 +0800226 if(weights->info()->dimension(2) % 2 == 0)
227 {
228 options.emplace("#define WEIGHTS_OPTIMIZATION");
229 }
Anthony Barbier7068f992017-10-26 15:23:08 +0100230 switch(input->info()->data_type())
231 {
232 case DataType::F16:
Xinghang Zhou4af62a02017-11-02 16:37:24 +0800233#define PROCESS_8X_2Y_1Z
234
235#if defined(PROCESS_4X_1Y_1Z)
236 options.emplace("#define PROCESS_4X_1Y_1Z");
237 num_elems_read_per_iteration_x = 4;
238 num_elems_written_per_iteration_x = 4;
239#elif defined(PROCESS_4X_2Y_1Z)
240 options.emplace("#define PROCESS_4X_2Y_1Z");
241 num_elems_read_per_iteration_x = 4;
242 num_elems_read_per_iteration_y = 2;
243 num_elems_written_per_iteration_x = 4;
244 num_elems_written_per_iteration_y = 2;
245#elif defined(PROCESS_4X_3Y_1Z)
246 options.emplace("#define PROCESS_4X_3Y_1Z");
247 num_elems_read_per_iteration_x = 4;
248 num_elems_read_per_iteration_y = 3;
249 num_elems_written_per_iteration_x = 4;
250 num_elems_written_per_iteration_y = 3;
251#elif defined(PROCESS_4X_4Y_1Z)
252 options.emplace("#define PROCESS_4X_4Y_1Z");
253 num_elems_read_per_iteration_x = 4;
254 num_elems_read_per_iteration_y = 4;
255 num_elems_written_per_iteration_x = 4;
256 num_elems_written_per_iteration_y = 4;
257#elif defined(PROCESS_4X_2Y_2Z)
258 ARM_COMPUTE_ERROR_ON_MSG((weights->info()->dimension(4) % 2) == 1, "Current 'weights->info()->dimension(4) % 2) == 1' is not supported");
259 options.emplace("#define PROCESS_4X_2Y_2Z");
260 num_elems_read_per_iteration_x = 4;
261 num_elems_read_per_iteration_y = 2;
262 num_elems_written_per_iteration_x = 4;
263 num_elems_written_per_iteration_y = 2;
264 num_elems_written_per_iteration_z = 2;
265#elif defined(PROCESS_8X_1Y_1Z)
266 options.emplace("#define PROCESS_8X_1Y_1Z");
Anthony Barbier7068f992017-10-26 15:23:08 +0100267 num_elems_read_per_iteration_x = 8;
268 num_elems_written_per_iteration_x = 8;
Xinghang Zhou4af62a02017-11-02 16:37:24 +0800269#elif defined(PROCESS_8X_2Y_1Z)
270 options.emplace("#define PROCESS_8X_2Y_1Z");
271 num_elems_read_per_iteration_x = 8;
272 num_elems_read_per_iteration_y = 2;
273 num_elems_written_per_iteration_x = 8;
274 num_elems_written_per_iteration_y = 2;
275#else /* PROCESS_4X_1Y_1Z */
276#error Have to declare how many elements to process in one thread.
277#endif /* PROCESS_4X_1Y_1Z */
278#undef PROCESS_4X_1Y_1Z
279#undef PROCESS_4X_2Y_1Z
280#undef PROCESS_4X_3Y_1Z
281#undef PROCESS_4X_4Y_1Z
282#undef PROCESS_4X_2Y_2Z
283#undef PROCESS_8X_1Y_1Z
284#undef PROCESS_8X_2Y_1Z
Anthony Barbier7068f992017-10-26 15:23:08 +0100285 break;
286
287 case DataType::F32:
288 num_elems_read_per_iteration_x = 1;
289 num_elems_written_per_iteration_x = 1;
290 break;
291
292 default:
293 break;
294 }
295 }
296 else if(kernel_size == 5)
297 {
298 switch(input->info()->data_type())
299 {
300 case DataType::F16:
ASIAPAC\steli0123ac91b2017-11-07 16:14:44 +0800301 options.emplace("#define PROCESS_4X_1Y_1Z");
Anthony Barbier7068f992017-10-26 15:23:08 +0100302 num_elems_read_per_iteration_x = 8;
303 num_elems_written_per_iteration_x = 4;
304
305 default:
306 break;
307 }
308 }
309 else
310 {
311 }
312
313 if(_bias != nullptr)
314 {
315 options.emplace("#define BIAS");
316 }
317
318 std::stringstream kernel_name;
319 kernel_name << "direct_convolution" << kernel_size << "x" << kernel_size;
320
321 _kernel = static_cast<GCKernel>(GCKernelLibrary::get().create_kernel(kernel_name.str(), options));
322
Anthony Barbier7068f992017-10-26 15:23:08 +0100323 unsigned int idx = (_bias == nullptr) ? 3 * num_arguments_per_3D_tensor() : (num_arguments_per_1D_tensor() + 3 * num_arguments_per_3D_tensor());
324
325 // Calculate output right and bottom border
326 const int output_width = output->info()->dimension(0);
327 const int output_height = output->info()->dimension(1);
328 const int output_padding_right = ceil_to_multiple(output_width, num_elems_written_per_iteration_x * _lws[0]) - output_width;
329 const int output_padding_bottom = ceil_to_multiple(output_height, num_elems_written_per_iteration_y * _lws[1]) - output_height;
330
331 // Calculate input right and bottom border
Xinghang Zhou33ff9ef2018-01-17 11:23:39 +0800332 const int input_width = input->info()->dimension(0);
333 const int input_height = input->info()->dimension(1);
334 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));
335 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));
336 const int padding_right1 = ceil_to_multiple(input_total_width, num_elems_read_per_iteration_x * _lws[0]) - input_width - _conv_pad_x;
337 const int padding_bottom1 = ceil_to_multiple(input_total_height, num_elems_read_per_iteration_y * _lws[1]) - input_height - _conv_pad_y;
338
339 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;
340 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;
341 const int padding_right2 = std::max(upper_bound_w, _conv_pad_x);
342 const int padding_bottom2 = std::max(upper_bound_h, _conv_pad_y);
343
344 const int padding_right = std::max(padding_right1, padding_right2);
345 const int padding_bottom = std::max(padding_bottom1, padding_bottom2);
Anthony Barbier7068f992017-10-26 15:23:08 +0100346
347 BorderSize border = BorderSize(0, output_padding_right, output_padding_bottom, 0);
348
349 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);
350
351 AccessWindowStatic input_access(input->info(), -_conv_pad_x, -_conv_pad_y, input_width + padding_right, input_height + padding_bottom);
352 AccessWindowStatic weights_access = AccessWindowStatic(nullptr, 0, 0, 0, 0);
353 AccessWindowStatic bias_access = AccessWindowStatic(nullptr, 0, 0, 0, 1);
354
355 switch(weights->info()->data_type())
356 {
357 case DataType::F16:
zhenglin666635c2017-12-04 14:38:09 +0800358 if((weights->info()->dimension(2) % 2 != 0) || (kernel_size != 1))
359 {
360 weights_access = AccessWindowStatic(weights->info(), 0, 0, kernel_size + 1, kernel_size);
361 }
Anthony Barbier7068f992017-10-26 15:23:08 +0100362 if(_bias != nullptr)
363 {
364 bias_access = AccessWindowStatic(_bias->info(), 0, 0, _bias->info()->dimension(0) + 1, 1);
365 }
366 break;
367
368 case DataType::F32:
369 weights_access = AccessWindowStatic(weights->info(), 0, 0, kernel_size, kernel_size);
370 if(_bias != nullptr)
371 {
372 bias_access = AccessWindowStatic(_bias->info(), 0, 0, _bias->info()->dimension(0), 1);
373 }
374 break;
375
376 default:
377 ARM_COMPUTE_ERROR("Current data type is not supported");
378 break;
379 }
380
381 AccessWindowStatic output_access(output->info(), 0, 0, output_width + output_padding_right, output_height + output_padding_bottom);
382
383 if(_bias != nullptr)
384 {
385 update_window_and_padding(win, input_access, weights_access, bias_access, output_access);
386 }
387 else
388 {
389 update_window_and_padding(win, input_access, weights_access, output_access);
390 }
391
392 output_access.set_valid_region(win, ValidRegion(Coordinates(), output->info()->tensor_shape()));
393
Joel Liangf1f3ebd2017-11-10 09:59:19 +0800394 _kernel.set_argument(idx++, _weights->info()->strides_in_bytes()[3]); // weights_stride_w
395 _kernel.set_argument(idx++, _weights->info()->dimension(2)); // weights_depth
Anthony Barbier7068f992017-10-26 15:23:08 +0100396
397 IGCKernel::configure(win);
398}
399
400template <unsigned int kernel_size>
401void GCDirectConvolutionLayerKernel<kernel_size>::run(const Window &window)
402{
403 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
404 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(IKernel::window(), window);
405
406 _kernel.use();
407
Frank Lei4406fd62018-02-01 14:47:14 +0800408 _output->set_needs_shifting(true);
409
Anthony Barbier7068f992017-10-26 15:23:08 +0100410 // Get initial windows
411 Window slice = window.first_slice_window_3D();
412 Window win_in = window;
413
414 win_in.adjust(Window::DimX, -_conv_pad_x, true);
415 win_in.adjust(Window::DimY, -_conv_pad_y, true);
416 win_in.set_dimension_step(Window::DimX, window.x().step() * _conv_stride_x);
417 win_in.set_dimension_step(Window::DimY, window.y().step() * _conv_stride_y);
418
419 Window slice_in = win_in.first_slice_window_3D();
420
421 unsigned int idx1 = 2 * num_arguments_per_3D_tensor();
Joel Liangabd03cf2018-01-08 15:20:48 +0800422 add_3D_tensor_argument(idx1, _weights, 3, slice);
Anthony Barbier7068f992017-10-26 15:23:08 +0100423
424 if(_bias != nullptr)
425 {
426 Window slice_bias;
427 slice_bias.use_tensor_dimensions(_bias->info()->tensor_shape());
Joel Liangabd03cf2018-01-08 15:20:48 +0800428 add_1D_tensor_argument(idx1, _bias, 4, slice_bias);
Anthony Barbier7068f992017-10-26 15:23:08 +0100429 }
430
Xinghang Zhou33ff9ef2018-01-17 11:23:39 +0800431 slice.shift(Window::DimX, -(_output->info()->padding()).left);
432
Anthony Barbier7068f992017-10-26 15:23:08 +0100433 do
434 {
435 unsigned int idx = 0;
436
Joel Liangabd03cf2018-01-08 15:20:48 +0800437 add_3D_tensor_argument(idx, _input, 1, slice_in);
438 add_3D_tensor_argument(idx, _output, 2, slice);
Anthony Barbier7068f992017-10-26 15:23:08 +0100439
440 _kernel.update_shader_params();
441 enqueue(*this, slice, _lws);
442 }
443 while(window.slide_window_slice_3D(slice) && win_in.slide_window_slice_3D(slice_in));
444}
445
446template class arm_compute::GCDirectConvolutionLayerKernel<1>;
447template class arm_compute::GCDirectConvolutionLayerKernel<3>;
448template class arm_compute::GCDirectConvolutionLayerKernel<5>;