blob: 43288ec4c608eba8f331b7d21dead8a657ba639f [file] [log] [blame]
Michalis Spyrou7362f0d2017-10-18 17:58:22 +01001/*
Georgios Pinitas2481d462019-02-19 18:47:46 +00002 * Copyright (c) 2017-2019 ARM Limited.
Michalis Spyrou7362f0d2017-10-18 17:58:22 +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 */
Giorgio Arena04a8f8c2017-11-23 11:45:24 +000024#include "arm_compute/runtime/NEON/functions/NEDepthwiseConvolutionLayer.h"
Michalis Spyrou7362f0d2017-10-18 17:58:22 +010025
26#include "arm_compute/core/Helpers.h"
27#include "arm_compute/core/ITensor.h"
28#include "arm_compute/core/PixelValue.h"
Georgios Pinitasd05dce42018-01-22 16:29:17 +000029#include "arm_compute/core/utils/misc/ShapeCalculator.h"
Georgios Pinitasf72f9362018-01-12 16:29:45 +000030#include "arm_compute/core/utils/quantization/AsymmHelpers.h"
Michalis Spyrou7362f0d2017-10-18 17:58:22 +010031#include "arm_compute/runtime/NEON/NEScheduler.h"
32#include "support/ToolchainSupport.h"
33
Georgios Pinitas47d39dc2019-03-11 14:03:23 +000034#include "arm_compute/core/utils/misc/InfoHelpers.h"
35
Georgios Pinitasd05dce42018-01-22 16:29:17 +000036using namespace arm_compute::misc;
Georgios Pinitas4074c992018-01-30 18:13:46 +000037using namespace arm_compute::misc::shape_calculator;
Michalis Spyrou7362f0d2017-10-18 17:58:22 +010038
Georgios Pinitas47d39dc2019-03-11 14:03:23 +000039namespace arm_compute
40{
41NEDepthwiseConvolutionLayer3x3::NEDepthwiseConvolutionLayer3x3(std::shared_ptr<IMemoryManager> memory_manager)
42 : _memory_group(memory_manager), _dwc_kernel(), _dwc_optimized_func(memory_manager), _output_stage_kernel(), _border_handler(), _permute_input(), _permute_weights(), _permute_output(),
43 _activationlayer_function(), _accumulator(), _permuted_input(), _permuted_weights(), _permuted_output(), _original_weights(nullptr), _has_bias(false), _is_quantized(false), _is_optimized(false),
44 _is_nchw(true), _permute(false), _is_activationlayer_enabled(false), _is_prepared(false)
Michalis Spyrou7362f0d2017-10-18 17:58:22 +010045{
46}
47
Georgios Pinitas47d39dc2019-03-11 14:03:23 +000048void NEDepthwiseConvolutionLayer3x3::configure_generic(ITensor *input,
49 const ITensor *weights,
50 const ITensor *biases,
51 ITensor *output,
52 const PadStrideInfo &conv_info,
53 unsigned int depth_multiplier,
Usama Arif881f2de2019-04-12 10:29:17 +010054 const ActivationLayerInfo &act_info,
55 const Size2D &dilation)
Michalis Spyrou7362f0d2017-10-18 17:58:22 +010056{
Georgios Pinitas47d39dc2019-03-11 14:03:23 +000057 ARM_COMPUTE_UNUSED(act_info);
Michalis Spyrou7362f0d2017-10-18 17:58:22 +010058
Georgios Pinitasf72f9362018-01-12 16:29:45 +000059 PixelValue zero_value(0.f);
60
Georgios Pinitasa799ce02018-09-12 20:11:34 +010061 // Initialize the intermediate accumulator tensor in case of quantized input
62 if(_is_quantized)
63 {
64 TensorShape accum_shape = output->info()->tensor_shape();
65 DataLayout accum_layout = output->info()->data_layout();
Georgios Pinitas47d39dc2019-03-11 14:03:23 +000066 if(!_is_nchw)
Georgios Pinitasa799ce02018-09-12 20:11:34 +010067 {
68 permute(accum_shape, PermutationVector(1U, 2U, 0U));
69 accum_layout = DataLayout::NCHW;
70 }
71
Georgios Pinitas47d39dc2019-03-11 14:03:23 +000072 _memory_group.manage(&_accumulator);
Georgios Pinitas2481d462019-02-19 18:47:46 +000073 _accumulator.allocator()->init(TensorInfo(accum_shape, 1, DataType::S32, output->info()->quantization_info()));
Georgios Pinitasa799ce02018-09-12 20:11:34 +010074 _accumulator.info()->set_data_layout(accum_layout);
Georgios Pinitas4c5469b2019-05-21 13:32:43 +010075 zero_value = PixelValue(static_cast<uint32_t>(input->info()->quantization_info().uniform().offset));
Georgios Pinitasa799ce02018-09-12 20:11:34 +010076 }
77
Georgios Pinitas47d39dc2019-03-11 14:03:23 +000078 if(!_is_nchw)
Michalis Spyrou7362f0d2017-10-18 17:58:22 +010079 {
Georgios Pinitas47d39dc2019-03-11 14:03:23 +000080 _memory_group.manage(&_permuted_input);
81 _memory_group.manage(&_permuted_output);
Georgios Pinitas4074c992018-01-30 18:13:46 +000082
Georgios Pinitas47d39dc2019-03-11 14:03:23 +000083 // Configure the function to transform the input tensor from NHWC -> NCHW
84 _permute_input.configure(input, &_permuted_input, PermutationVector(1U, 2U, 0U));
85 _permuted_input.info()->set_data_layout(DataLayout::NCHW);
Georgios Pinitas4074c992018-01-30 18:13:46 +000086
Georgios Pinitas47d39dc2019-03-11 14:03:23 +000087 // Configure the function to transform the weights tensor from HWI -> IHW
88 _permute_weights.configure(weights, &_permuted_weights, PermutationVector(1U, 2U, 0U));
89 _permuted_weights.info()->set_data_layout(DataLayout::NCHW);
Pablo Telloa28aebc2019-06-03 14:59:48 +010090 _permuted_output.info()->set_quantization_info(output->info()->quantization_info());
Georgios Pinitas4074c992018-01-30 18:13:46 +000091
Usama Arif881f2de2019-04-12 10:29:17 +010092 // Configure depthwise
93 _dwc_kernel.configure(&_permuted_input, &_permuted_weights, (_is_quantized) ? &_accumulator : &_permuted_output, conv_info, depth_multiplier, dilation);
Georgios Pinitas4074c992018-01-30 18:13:46 +000094
Georgios Pinitas47d39dc2019-03-11 14:03:23 +000095 // Configure border handler
96 _border_handler.configure(&_permuted_input, _dwc_kernel.border_size(), BorderMode::CONSTANT, zero_value);
97
98 // Allocate tensors
99 _permuted_input.allocator()->allocate();
Georgios Pinitasf72f9362018-01-12 16:29:45 +0000100 }
Georgios Pinitas4074c992018-01-30 18:13:46 +0000101 else
102 {
Georgios Pinitas47d39dc2019-03-11 14:03:23 +0000103 // Configure depthwise convolution kernel
Usama Arif881f2de2019-04-12 10:29:17 +0100104 _dwc_kernel.configure(input, weights, (_is_quantized) ? &_accumulator : output, conv_info, depth_multiplier, dilation);
Georgios Pinitas9be0c5a2018-02-19 12:46:29 +0000105
Georgios Pinitas47d39dc2019-03-11 14:03:23 +0000106 // Configure border handler
107 _border_handler.configure(input, _dwc_kernel.border_size(), BorderMode::CONSTANT, zero_value);
Michalis Spyrou7362f0d2017-10-18 17:58:22 +0100108 }
Giorgio Arena26b22162018-08-13 15:49:49 +0100109
110 // Configure biases accumulation
111 if(_is_quantized)
112 {
Georgios Pinitas4c5469b2019-05-21 13:32:43 +0100113 const UniformQuantizationInfo iq_info = input->info()->quantization_info().uniform();
114 const UniformQuantizationInfo wq_info = weights->info()->quantization_info().uniform();
115 const UniformQuantizationInfo oq_info = (output->info()->total_size() == 0) ? iq_info : output->info()->quantization_info().uniform();
Giorgio Arena26b22162018-08-13 15:49:49 +0100116
Georgios Pinitas4c5469b2019-05-21 13:32:43 +0100117 float multiplier = (iq_info.scale * wq_info.scale) / oq_info.scale;
Michalis Spyroua4f378d2019-04-26 14:54:54 +0100118 int output_multiplier;
119 int output_shift;
Giorgio Arena26b22162018-08-13 15:49:49 +0100120 quantization::calculate_quantized_multiplier_less_than_one(multiplier, &output_multiplier, &output_shift);
Georgios Pinitas4c5469b2019-05-21 13:32:43 +0100121 _output_stage_kernel.configure(&_accumulator, biases, _is_nchw ? output : &_permuted_output, output_multiplier, output_shift, oq_info.offset);
Giorgio Arena26b22162018-08-13 15:49:49 +0100122 _accumulator.allocator()->allocate();
123 }
124 else if(_has_bias)
125 {
Georgios Pinitas47d39dc2019-03-11 14:03:23 +0000126 _output_stage_kernel.configure(_is_nchw ? output : &_permuted_output, biases);
Giorgio Arena26b22162018-08-13 15:49:49 +0100127 }
128
Georgios Pinitas47d39dc2019-03-11 14:03:23 +0000129 // Permute output
130 if(!_is_nchw)
Giorgio Arena26b22162018-08-13 15:49:49 +0100131 {
132 // Configure the function to transform the convoluted output to NHWC
133 _permute_output.configure(&_permuted_output, output, PermutationVector(2U, 0U, 1U));
134 _permuted_output.allocator()->allocate();
135 }
Georgios Pinitas47d39dc2019-03-11 14:03:23 +0000136}
Georgios Pinitas60e98252018-10-22 16:17:20 +0100137
Georgios Pinitas47d39dc2019-03-11 14:03:23 +0000138void NEDepthwiseConvolutionLayer3x3::configure_optimized(const ITensor *input,
139 const ITensor *weights,
140 const ITensor *biases,
141 ITensor *output,
142 const PadStrideInfo &conv_info,
143 unsigned int depth_multiplier,
144 const ActivationLayerInfo &act_info)
145{
146 ActivationLayerInfo act_info_to_use = ActivationLayerInfo();
147 const bool is_relu = arm_compute::utils::info_helpers::is_relu(act_info);
148 const bool is_relu6 = arm_compute::utils::info_helpers::is_relu6(act_info);
149 _is_activationlayer_enabled = act_info.enabled() && !(is_relu || is_relu6);
150 if(!_is_activationlayer_enabled)
151 {
152 act_info_to_use = act_info;
153 }
154
155 if(_is_nchw)
156 {
157 _memory_group.manage(&_permuted_input);
158 _memory_group.manage(&_permuted_output);
159
160 // Configure the function to transform the input tensor from NCHW -> NHWC
161 _permute_input.configure(input, &_permuted_input, PermutationVector(2U, 0U, 1U));
162 _permuted_input.info()->set_data_layout(DataLayout::NHWC);
163
164 // Configure the function to transform the weights tensor from IHW -> HWI
165 _permute_weights.configure(weights, &_permuted_weights, PermutationVector(2U, 0U, 1U));
166 _permuted_weights.info()->set_data_layout(DataLayout::NHWC);
167
Pablo Telloa28aebc2019-06-03 14:59:48 +0100168 _permuted_output.info()->set_data_layout(DataLayout::NHWC);
169 _permuted_output.info()->set_quantization_info(output->info()->quantization_info());
170
Georgios Pinitas47d39dc2019-03-11 14:03:23 +0000171 // Configure optimized depthwise
172 _dwc_optimized_func.configure(&_permuted_input, &_permuted_weights, biases, &_permuted_output, conv_info, depth_multiplier, act_info_to_use);
173
174 // Configure the function to transform the convoluted output to ACL's native ordering format NCHW
175 _permuted_output.info()->set_data_layout(DataLayout::NHWC);
176 _permute_output.configure(&_permuted_output, output, PermutationVector(1U, 2U, 0U));
177
178 // Allocate tensors
179 _permuted_input.allocator()->allocate();
180 _permuted_output.allocator()->allocate();
181 }
182 else
183 {
184 _dwc_optimized_func.configure(input, weights, biases, output, conv_info, depth_multiplier, act_info_to_use);
185 }
186}
187
188void NEDepthwiseConvolutionLayer3x3::configure(ITensor *input,
189 const ITensor *weights,
190 const ITensor *biases,
191 ITensor *output, const PadStrideInfo &conv_info,
192 unsigned int depth_multiplier,
Usama Arife73686a2019-04-08 17:30:48 +0100193 const ActivationLayerInfo &act_info,
194 const Size2D &dilation)
Georgios Pinitas47d39dc2019-03-11 14:03:23 +0000195{
196 ARM_COMPUTE_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input, 1, DataType::QASYMM8, DataType::F16, DataType::F32);
197 ARM_COMPUTE_ERROR_ON_MISMATCHING_DATA_TYPES(input, weights);
198
Usama Arif881f2de2019-04-12 10:29:17 +0100199 // idx_w and idx_h only used for validation
200 const size_t idx_w = get_data_layout_dimension_index(input->info()->data_layout(), DataLayoutDimension::WIDTH);
201 const size_t idx_h = get_data_layout_dimension_index(input->info()->data_layout(), DataLayoutDimension::HEIGHT);
202 ARM_COMPUTE_UNUSED(idx_w);
203 ARM_COMPUTE_UNUSED(idx_h);
204
205 ARM_COMPUTE_ERROR_ON(weights->info()->dimension(idx_w) + (weights->info()->dimension(idx_w) - 1) * (dilation.x() - 1) > input->info()->dimension(idx_w) + conv_info.pad_left() + conv_info.pad_right());
206 ARM_COMPUTE_ERROR_ON(weights->info()->dimension(idx_h) + (weights->info()->dimension(idx_h) - 1) * (dilation.y() - 1) > input->info()->dimension(idx_h) + conv_info.pad_top() + conv_info.pad_bottom());
207
Georgios Pinitas47d39dc2019-03-11 14:03:23 +0000208 _original_weights = weights;
209 _is_quantized = is_data_type_quantized_asymmetric(input->info()->data_type());
210 _has_bias = biases != nullptr;
211 _is_optimized = NEDepthwiseConvolutionAssemblyDispatch::is_optimized_supported(input->info(),
212 weights->info(),
213 conv_info,
Usama Arif881f2de2019-04-12 10:29:17 +0100214 depth_multiplier, dilation);
Georgios Pinitas47d39dc2019-03-11 14:03:23 +0000215 _is_nchw = input->info()->data_layout() == DataLayout::NCHW;
216 _permute = _is_optimized == _is_nchw;
217 _is_prepared = false;
Georgios Pinitas60e98252018-10-22 16:17:20 +0100218 _is_activationlayer_enabled = act_info.enabled();
219
Georgios Pinitas47d39dc2019-03-11 14:03:23 +0000220 // Configure appropriate pipeline
221 if(_is_optimized)
222 {
223 configure_optimized(input, weights, biases, output, conv_info, depth_multiplier, act_info);
224 }
225 else
226 {
Usama Arif881f2de2019-04-12 10:29:17 +0100227 configure_generic(input, weights, biases, output, conv_info, depth_multiplier, act_info, dilation);
Georgios Pinitas47d39dc2019-03-11 14:03:23 +0000228 }
229
230 // Configure activation
Georgios Pinitas60e98252018-10-22 16:17:20 +0100231 if(_is_activationlayer_enabled)
232 {
233 _activationlayer_function.configure(output, nullptr, act_info);
234 }
Michalis Spyrou7362f0d2017-10-18 17:58:22 +0100235}
236
Georgios Pinitas47d39dc2019-03-11 14:03:23 +0000237Status NEDepthwiseConvolutionLayer3x3::validate(const ITensorInfo *input,
238 const ITensorInfo *weights,
239 const ITensorInfo *biases,
240 const ITensorInfo *output,
241 const PadStrideInfo &conv_info,
242 unsigned int depth_multiplier,
Usama Arife73686a2019-04-08 17:30:48 +0100243 const ActivationLayerInfo &act_info,
244 const Size2D &dilation)
Abe Mbise7784c832018-05-31 16:48:41 +0100245{
246 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(input, weights, output);
Gian Marco Iodice23e24792018-09-07 15:32:14 +0100247 ARM_COMPUTE_RETURN_ERROR_ON(input->data_layout() == DataLayout::UNKNOWN);
Usama Arif881f2de2019-04-12 10:29:17 +0100248 ARM_COMPUTE_RETURN_ERROR_ON(dilation.x() < 1 || dilation.y() < 1);
249 const size_t idx_w = get_data_layout_dimension_index(input->data_layout(), DataLayoutDimension::WIDTH);
250 const size_t idx_h = get_data_layout_dimension_index(input->data_layout(), DataLayoutDimension::HEIGHT);
251 ARM_COMPUTE_RETURN_ERROR_ON(weights->dimension(idx_w) + (weights->dimension(idx_w) - 1) * (dilation.x() - 1) > input->dimension(idx_w) + conv_info.pad_left() + conv_info.pad_right());
252 ARM_COMPUTE_RETURN_ERROR_ON(weights->dimension(idx_h) + (weights->dimension(idx_h) - 1) * (dilation.y() - 1) > input->dimension(idx_h) + conv_info.pad_top() + conv_info.pad_bottom());
Abe Mbise7784c832018-05-31 16:48:41 +0100253
Giorgio Arena66cbafb2018-08-23 14:51:00 +0100254 if(biases != nullptr)
255 {
Gian Marco Iodice23e24792018-09-07 15:32:14 +0100256 const unsigned int channel_idx = get_data_layout_dimension_index(input->data_layout(), DataLayoutDimension::CHANNEL);
Giorgio Arena66cbafb2018-08-23 14:51:00 +0100257 ARM_COMPUTE_RETURN_ERROR_ON(biases->num_dimensions() > 1);
Gian Marco Iodice23e24792018-09-07 15:32:14 +0100258 ARM_COMPUTE_RETURN_ERROR_ON(biases->dimension(0) != weights->dimension(channel_idx));
Giorgio Arena66cbafb2018-08-23 14:51:00 +0100259 }
260
Usama Arif881f2de2019-04-12 10:29:17 +0100261 if(!NEDepthwiseConvolutionAssemblyDispatch::is_optimized_supported(input, weights, conv_info, depth_multiplier, dilation))
Gian Marco Iodice23e24792018-09-07 15:32:14 +0100262 {
Georgios Pinitas47d39dc2019-03-11 14:03:23 +0000263 const bool is_quantized = is_data_type_quantized_asymmetric(input->data_type());
264 TensorInfo accumulator = TensorInfo(output->clone()->set_is_resizable(true).reset_padding().set_data_type(DataType::S32));
265 ARM_COMPUTE_RETURN_ON_ERROR(NEDepthwiseConvolutionLayer3x3Kernel::validate(input, weights, is_quantized ? &accumulator : output, conv_info, depth_multiplier));
266
267 if(is_quantized)
268 {
269 ARM_COMPUTE_RETURN_ON_ERROR(NEDirectConvolutionLayerOutputStageKernel::validate(&accumulator, biases, output));
270 }
271 }
272 else
273 {
274 ARM_COMPUTE_RETURN_ON_ERROR(NEDepthwiseConvolutionAssemblyDispatch::validate(input, weights, biases, output, conv_info, depth_multiplier));
Gian Marco Iodice23e24792018-09-07 15:32:14 +0100275 }
276
Georgios Pinitas60e98252018-10-22 16:17:20 +0100277 //Validate Activation Layer
278 if(act_info.enabled())
279 {
280 ARM_COMPUTE_RETURN_ON_ERROR(NEActivationLayer::validate(output, nullptr, act_info));
281 }
282
Gian Marco Iodice23e24792018-09-07 15:32:14 +0100283 return Status{};
Abe Mbise7784c832018-05-31 16:48:41 +0100284}
285
Georgios Pinitas47d39dc2019-03-11 14:03:23 +0000286void NEDepthwiseConvolutionLayer3x3::run_generic()
Michalis Spyrou7362f0d2017-10-18 17:58:22 +0100287{
Georgios Pinitas47d39dc2019-03-11 14:03:23 +0000288 // Fill border
289 NEScheduler::get().schedule(&_border_handler, Window::DimX);
Georgios Pinitas4074c992018-01-30 18:13:46 +0000290
291 // Execute depthwise convolution
292 NEScheduler::get().schedule(&_dwc_kernel, Window::DimX);
293
Georgios Pinitas4074c992018-01-30 18:13:46 +0000294 // Add biases
Georgios Pinitasf72f9362018-01-12 16:29:45 +0000295 if(_has_bias || _is_quantized)
Michalis Spyrou7362f0d2017-10-18 17:58:22 +0100296 {
Michalis Spyroub91e34c2017-12-20 15:50:55 +0000297 NEScheduler::get().schedule(&_output_stage_kernel, Window::DimX);
Michalis Spyrou7362f0d2017-10-18 17:58:22 +0100298 }
Giorgio Arena26b22162018-08-13 15:49:49 +0100299
300 // Permute output
Georgios Pinitas47d39dc2019-03-11 14:03:23 +0000301 if(!_is_nchw)
Giorgio Arena26b22162018-08-13 15:49:49 +0100302 {
303 _permute_output.run();
304 }
Georgios Pinitas47d39dc2019-03-11 14:03:23 +0000305}
Georgios Pinitas60e98252018-10-22 16:17:20 +0100306
Georgios Pinitas47d39dc2019-03-11 14:03:23 +0000307void NEDepthwiseConvolutionLayer3x3::run_optimized()
308{
309 // Run assembly function
310 _dwc_optimized_func.run();
311
312 // Permute output
313 if(_is_nchw)
314 {
315 _permute_output.run();
316 }
317}
318
319void NEDepthwiseConvolutionLayer3x3::run()
320{
321 prepare();
322
Georgios Pinitasda953f22019-04-02 17:27:03 +0100323 MemoryGroupResourceScope scope_mg(_memory_group);
Georgios Pinitas47d39dc2019-03-11 14:03:23 +0000324
325 // Permute input
326 if(_permute)
327 {
328 _permute_input.run();
329 }
330
331 _is_optimized ? run_optimized() : run_generic();
332
333 // Run activation
Georgios Pinitas60e98252018-10-22 16:17:20 +0100334 if(_is_activationlayer_enabled)
335 {
336 _activationlayer_function.run();
337 }
Georgios Pinitas47d39dc2019-03-11 14:03:23 +0000338}
339
340void NEDepthwiseConvolutionLayer3x3::prepare()
341{
342 if(!_is_prepared)
343 {
344 // Permute weights
345 if(_permute)
346 {
347 _permuted_weights.allocator()->allocate();
348 _permute_weights.run();
349 _original_weights->mark_as_unused();
350 }
351
352 // Prepare optimized function
353 if(_is_optimized)
354 {
355 _dwc_optimized_func.prepare();
356 if(!_permuted_weights.is_used())
357 {
358 _permuted_weights.allocator()->free();
359 }
360 }
361
362 _is_prepared = true;
363 }
Michalis Spyroub7b31532017-11-23 12:10:21 +0000364}
365
Giorgio Arena04a8f8c2017-11-23 11:45:24 +0000366NEDepthwiseConvolutionLayer::NEDepthwiseConvolutionLayer()
Giorgio Arena26b22162018-08-13 15:49:49 +0100367 : _im2col_kernel(), _weights_reshape_kernel(), _v2mm_kernel(), _vector_to_tensor_kernel(), _output_stage_kernel(), _v2mm_input_fill_border(), _v2mm_weights_fill_border(), _permute_input(),
Georgios Pinitas60e98252018-10-22 16:17:20 +0100368 _permute_weights(), _permute_output(), _activationlayer_function(), _input_reshaped(), _weights_reshaped(), _v2mm_output(), _output_reshaped(), _permuted_input(), _permuted_weights(),
369 _permuted_output(), _is_prepared(false), _is_quantized(false), _is_nhwc(false), _is_activationlayer_enabled(false), _original_weights(nullptr)
Michalis Spyroub7b31532017-11-23 12:10:21 +0000370{
371}
372
Georgios Pinitas60e98252018-10-22 16:17:20 +0100373void NEDepthwiseConvolutionLayer::configure(ITensor *input, const ITensor *weights, const ITensor *biases, ITensor *output, const PadStrideInfo &conv_info,
Usama Arife73686a2019-04-08 17:30:48 +0100374 unsigned int depth_multiplier, const ActivationLayerInfo &act_info, const Size2D &dilation)
Michalis Spyroub7b31532017-11-23 12:10:21 +0000375{
Giorgio Arena26b22162018-08-13 15:49:49 +0100376 const unsigned int channel_idx = get_data_layout_dimension_index(input->info()->data_layout(), DataLayoutDimension::CHANNEL);
377 ARM_COMPUTE_UNUSED(channel_idx);
Georgios Pinitas8cffcd62018-11-16 17:11:50 +0000378 ARM_COMPUTE_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input, 1, DataType::QASYMM8, DataType::F16, DataType::F32);
Michalis Spyroub7b31532017-11-23 12:10:21 +0000379 ARM_COMPUTE_ERROR_ON_MISMATCHING_DATA_TYPES(input, weights);
Giorgio Arena26b22162018-08-13 15:49:49 +0100380 ARM_COMPUTE_ERROR_ON((input->info()->dimension(channel_idx) * depth_multiplier) != weights->info()->dimension(channel_idx));
Usama Arif881f2de2019-04-12 10:29:17 +0100381 // idx_w and idx_h only used for validation
382 const size_t idx_w = get_data_layout_dimension_index(input->info()->data_layout(), DataLayoutDimension::WIDTH);
383 const size_t idx_h = get_data_layout_dimension_index(input->info()->data_layout(), DataLayoutDimension::HEIGHT);
384 ARM_COMPUTE_UNUSED(idx_w);
385 ARM_COMPUTE_UNUSED(idx_h);
386
387 ARM_COMPUTE_ERROR_ON(weights->info()->dimension(idx_w) + (weights->info()->dimension(idx_w) - 1) * (dilation.x() - 1) > input->info()->dimension(idx_w) + conv_info.pad_left() + conv_info.pad_right());
388 ARM_COMPUTE_ERROR_ON(weights->info()->dimension(idx_h) + (weights->info()->dimension(idx_h) - 1) * (dilation.y() - 1) > input->info()->dimension(idx_h) + conv_info.pad_top() + conv_info.pad_bottom());
Michalis Spyroub7b31532017-11-23 12:10:21 +0000389
Giorgio Arena26b22162018-08-13 15:49:49 +0100390 _is_nhwc = input->info()->data_layout() == DataLayout::NHWC;
391
392 ITensor *input_to_use = input;
393 const ITensor *weights_to_use = weights;
394 ITensor *output_to_use = output;
395
396 if(_is_nhwc)
397 {
398 _permute_input.configure(input, &_permuted_input, PermutationVector(1U, 2U, 0U));
399 _permuted_input.info()->set_data_layout(DataLayout::NCHW);
400 input_to_use = &_permuted_input;
401
402 _permute_weights.configure(weights, &_permuted_weights, PermutationVector(1U, 2U, 0U));
403 _permuted_weights.info()->set_data_layout(DataLayout::NCHW);
404 weights_to_use = &_permuted_weights;
405 }
406
407 const size_t weights_w = weights_to_use->info()->dimension(0);
408 const size_t weights_h = weights_to_use->info()->dimension(1);
409 const size_t weights_z = weights_to_use->info()->dimension(2);
Michalis Spyroub7b31532017-11-23 12:10:21 +0000410
Georgios Pinitas1562be32018-03-08 19:09:19 +0000411 _is_quantized = is_data_type_quantized_asymmetric(input->info()->data_type());
Georgios Pinitas72219332018-06-05 14:56:06 +0100412 _is_prepared = false;
Giorgio Arena26b22162018-08-13 15:49:49 +0100413 _original_weights = weights_to_use;
Michalis Spyroub7b31532017-11-23 12:10:21 +0000414
Georgios Pinitasd05dce42018-01-22 16:29:17 +0000415 // Should bias be appended ?
416 bool append_bias = (biases != nullptr) && !_is_quantized;
417
418 // Calculate output shape
Usama Arif881f2de2019-04-12 10:29:17 +0100419 TensorShape output_shape = shape_calculator::compute_depthwise_convolution_shape(*input->info(), *weights->info(), conv_info, depth_multiplier, dilation);
Giorgio Arena76572242018-04-04 17:44:26 +0100420
421 // Output auto inizialitation if not yet initialized
422 auto_init_if_empty(*output->info(), input->info()->clone()->set_tensor_shape(output_shape));
423 ARM_COMPUTE_ERROR_ON_MISMATCHING_DIMENSIONS(output->info()->tensor_shape(), output_shape);
Georgios Pinitasd05dce42018-01-22 16:29:17 +0000424
Giorgio Arena26b22162018-08-13 15:49:49 +0100425 if(_is_nhwc)
426 {
427 permute(output_shape, PermutationVector(1U, 2U, 0U));
428 _permuted_output.allocator()->init(output->info()->clone()->set_is_resizable(true).reset_padding().set_tensor_shape(output_shape));
429 _permuted_output.info()->set_data_layout(DataLayout::NCHW);
Pablo Telloa28aebc2019-06-03 14:59:48 +0100430 _permuted_output.info()->set_quantization_info(output->info()->quantization_info());
Giorgio Arena26b22162018-08-13 15:49:49 +0100431 output_to_use = &_permuted_output;
432 }
433
Georgios Pinitasd05dce42018-01-22 16:29:17 +0000434 // Output width and height
Giorgio Arena76572242018-04-04 17:44:26 +0100435 const unsigned int conv_w = output_shape.x();
436 const unsigned int conv_h = output_shape.y();
Michalis Spyroub7b31532017-11-23 12:10:21 +0000437
438 // Set up intermediate tensors
Georgios Pinitasd05dce42018-01-22 16:29:17 +0000439 const size_t patch_size = weights_w * weights_h + (append_bias ? 1 : 0);
Michalis Spyroub7b31532017-11-23 12:10:21 +0000440 const size_t conv_size = conv_w * conv_h;
441
442 // Im2Col configuration
Giorgio Arena26b22162018-08-13 15:49:49 +0100443 TensorShape shape_im2col = input_to_use->info()->tensor_shape();
Michalis Spyroub7b31532017-11-23 12:10:21 +0000444 shape_im2col.set(0, patch_size);
445 shape_im2col.set(1, conv_size);
446 shape_im2col.set(2, weights_z);
Giorgio Arena26b22162018-08-13 15:49:49 +0100447 _input_reshaped.allocator()->init(input->info()->clone()->set_is_resizable(true).reset_padding().set_tensor_shape(shape_im2col).set_data_layout(DataLayout::NCHW));
Usama Arif881f2de2019-04-12 10:29:17 +0100448 _im2col_kernel.configure(input_to_use, &_input_reshaped, Size2D(weights_w, weights_h), conv_info, append_bias, depth_multiplier, dilation);
Michalis Spyroub7b31532017-11-23 12:10:21 +0000449
450 // Weights reshape configuration
451 const TensorShape shape_weights_reshape(patch_size, weights_z);
Giorgio Arena26b22162018-08-13 15:49:49 +0100452 _weights_reshaped.allocator()->init(weights->info()->clone()->set_is_resizable(true).reset_padding().set_tensor_shape(shape_weights_reshape).set_data_layout(DataLayout::NCHW));
453 _weights_reshape_kernel.configure(weights_to_use, &_weights_reshaped, append_bias ? biases : nullptr);
Michalis Spyroub7b31532017-11-23 12:10:21 +0000454
455 // GEMV configuration
Georgios Pinitasd05dce42018-01-22 16:29:17 +0000456 DataType v2mm_dt = (input->info()->data_type() == DataType::QASYMM8) ? DataType::S32 : input->info()->data_type();
Giorgio Arena26b22162018-08-13 15:49:49 +0100457 TensorShape shape_v2mm_out = input_to_use->info()->tensor_shape();
Michalis Spyroub7b31532017-11-23 12:10:21 +0000458 shape_v2mm_out.set(0, conv_size * weights_z);
459 shape_v2mm_out.set(1, 1);
460 shape_v2mm_out.set(2, 1);
Giorgio Arena26b22162018-08-13 15:49:49 +0100461 _v2mm_output.allocator()->init(input->info()->clone()->set_is_resizable(true).reset_padding().set_data_type(v2mm_dt).set_tensor_shape(shape_v2mm_out).set_data_layout(DataLayout::NCHW));
Michalis Spyroub7b31532017-11-23 12:10:21 +0000462 _v2mm_kernel.configure(&_input_reshaped, &_weights_reshaped, &_v2mm_output);
Giorgio Arena76572242018-04-04 17:44:26 +0100463 _output_reshaped.allocator()->init(_v2mm_output.info()->clone()->set_is_resizable(true).reset_padding().set_tensor_shape(output_shape));
Giorgio Arena26b22162018-08-13 15:49:49 +0100464 _vector_to_tensor_kernel.configure(&_v2mm_output, (_is_quantized) ? &_output_reshaped : output_to_use, conv_w, conv_h);
Georgios Pinitasd05dce42018-01-22 16:29:17 +0000465
466 // Output staged configuration
467 if(_is_quantized)
468 {
Georgios Pinitas4c5469b2019-05-21 13:32:43 +0100469 const UniformQuantizationInfo iq_info = input->info()->quantization_info().uniform();
470 const UniformQuantizationInfo wq_info = weights->info()->quantization_info().uniform();
471 const UniformQuantizationInfo oq_info = output->info()->quantization_info().uniform();
Georgios Pinitas9be0c5a2018-02-19 12:46:29 +0000472
Georgios Pinitas4c5469b2019-05-21 13:32:43 +0100473 float multiplier = (iq_info.scale * wq_info.scale) / oq_info.scale;
Michalis Spyroua4f378d2019-04-26 14:54:54 +0100474 int output_multiplier;
475 int output_shift;
Georgios Pinitasd05dce42018-01-22 16:29:17 +0000476 quantization::calculate_quantized_multiplier_less_than_one(multiplier, &output_multiplier, &output_shift);
Georgios Pinitas4c5469b2019-05-21 13:32:43 +0100477 _output_stage_kernel.configure(&_output_reshaped, biases, output_to_use, output_multiplier, output_shift, oq_info.offset);
Georgios Pinitasd05dce42018-01-22 16:29:17 +0000478 _output_reshaped.allocator()->allocate();
479 }
480
Giorgio Arena26b22162018-08-13 15:49:49 +0100481 if(_is_nhwc)
482 {
483 _permute_output.configure(&_permuted_output, output, PermutationVector(2U, 0U, 1U));
484
485 _permuted_input.allocator()->allocate();
486 _permuted_weights.allocator()->allocate();
487 _permuted_output.allocator()->allocate();
488 }
489
Georgios Pinitasd05dce42018-01-22 16:29:17 +0000490 // Fill borders on inputs
Anthony Barbierfb8dda22018-01-30 09:27:05 +0000491 PixelValue zero_in(static_cast<int32_t>(0));
492 PixelValue zero_w(static_cast<int32_t>(0));
Georgios Pinitasd05dce42018-01-22 16:29:17 +0000493 if(_is_quantized)
494 {
Georgios Pinitas4c5469b2019-05-21 13:32:43 +0100495 zero_in = PixelValue(static_cast<int32_t>(input->info()->quantization_info().uniform().offset));
496 zero_w = PixelValue(static_cast<int32_t>(weights->info()->quantization_info().uniform().offset));
Georgios Pinitasd05dce42018-01-22 16:29:17 +0000497 }
498 BorderSize border_size = _v2mm_kernel.border_size();
499 _v2mm_input_fill_border.configure(&_input_reshaped, border_size, BorderMode::CONSTANT, zero_in);
500
501 border_size.bottom = 0;
502 _v2mm_weights_fill_border.configure(&_weights_reshaped, border_size, BorderMode::CONSTANT, zero_w);
Michalis Spyroub7b31532017-11-23 12:10:21 +0000503
504 // Allocate intermediate tensors
505 _input_reshaped.allocator()->allocate();
Michalis Spyroub7b31532017-11-23 12:10:21 +0000506 _v2mm_output.allocator()->allocate();
Georgios Pinitas60e98252018-10-22 16:17:20 +0100507
508 //Configure Activation Layer
509 _is_activationlayer_enabled = act_info.enabled();
510
511 if(_is_activationlayer_enabled)
512 {
513 _activationlayer_function.configure(output, nullptr, act_info);
514 }
Michalis Spyroub7b31532017-11-23 12:10:21 +0000515}
516
Georgios Pinitas10490202018-08-17 17:16:06 +0100517Status NEDepthwiseConvolutionLayer::validate(const ITensorInfo *input, const ITensorInfo *weights, const ITensorInfo *biases, const ITensorInfo *output, const PadStrideInfo &conv_info,
Usama Arife73686a2019-04-08 17:30:48 +0100518 unsigned int depth_multiplier, const ActivationLayerInfo &act_info, const Size2D &dilation)
Abe Mbise7784c832018-05-31 16:48:41 +0100519{
520 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(input, weights, output);
Gian Marco Iodice23e24792018-09-07 15:32:14 +0100521 ARM_COMPUTE_RETURN_ERROR_ON(input->data_layout() == DataLayout::UNKNOWN);
Usama Arif881f2de2019-04-12 10:29:17 +0100522 ARM_COMPUTE_RETURN_ERROR_ON(dilation.x() < 1 || dilation.y() < 1);
Gian Marco Iodice23e24792018-09-07 15:32:14 +0100523
524 const unsigned int width_idx = get_data_layout_dimension_index(input->data_layout(), DataLayoutDimension::WIDTH);
525 const unsigned int height_idx = get_data_layout_dimension_index(input->data_layout(), DataLayoutDimension::HEIGHT);
Abe Mbise7784c832018-05-31 16:48:41 +0100526
Usama Arif881f2de2019-04-12 10:29:17 +0100527 ARM_COMPUTE_RETURN_ERROR_ON(weights->dimension(width_idx) + (weights->dimension(width_idx) - 1) * (dilation.x() - 1) > input->dimension(width_idx) + conv_info.pad_left() + conv_info.pad_right());
528 ARM_COMPUTE_RETURN_ERROR_ON(weights->dimension(height_idx) + (weights->dimension(height_idx) - 1) * (dilation.y() - 1) > input->dimension(height_idx) + conv_info.pad_top() + conv_info.pad_bottom());
Georgios Pinitas10490202018-08-17 17:16:06 +0100529 // Clone output to use auto init
530 auto output_clone = output->clone();
531
Giorgio Arena26b22162018-08-13 15:49:49 +0100532 const ITensorInfo *input_to_use = input;
533 const ITensorInfo *weights_to_use = weights;
Georgios Pinitas10490202018-08-17 17:16:06 +0100534 const ITensorInfo *output_to_use = output_clone.get();
Giorgio Arena26b22162018-08-13 15:49:49 +0100535
536 TensorShape permuted_input_shape = input->tensor_shape();
537 TensorShape permuted_weights_shape = weights->tensor_shape();
538 TensorInfo permuted_input;
539 TensorInfo permuted_weights;
540
541 if(input->data_layout() == DataLayout::NHWC)
542 {
543 permute(permuted_input_shape, PermutationVector(1U, 2U, 0U));
544 permute(permuted_weights_shape, PermutationVector(1U, 2U, 0U));
545
546 permuted_input = TensorInfo(input->clone()->set_is_resizable(true).reset_padding().set_tensor_shape(permuted_input_shape).set_data_layout(DataLayout::NCHW));
547 permuted_weights = TensorInfo(weights->clone()->set_is_resizable(true).reset_padding().set_tensor_shape(permuted_weights_shape).set_data_layout(DataLayout::NCHW));
548
549 input_to_use = &permuted_input;
550 weights_to_use = &permuted_weights;
551 }
552
Abe Mbise7784c832018-05-31 16:48:41 +0100553 const bool is_quantized = is_data_type_quantized_asymmetric(input->data_type());
554 const bool append_bias = (biases != nullptr) && !is_quantized;
Usama Arif881f2de2019-04-12 10:29:17 +0100555 TensorShape output_shape = shape_calculator::compute_depthwise_convolution_shape(*input, *weights, conv_info, depth_multiplier, dilation);
Giorgio Arena26b22162018-08-13 15:49:49 +0100556 const size_t weights_w = weights_to_use->dimension(0);
557 const size_t weights_h = weights_to_use->dimension(1);
558 const size_t weights_z = weights_to_use->dimension(2);
Gian Marco Iodice23e24792018-09-07 15:32:14 +0100559 const unsigned int conv_w = output_shape[width_idx];
560 const unsigned int conv_h = output_shape[height_idx];
Abe Mbise7784c832018-05-31 16:48:41 +0100561 const size_t patch_size = weights_w * weights_h + (append_bias ? 1 : 0);
562 const size_t conv_size = conv_w * conv_h;
563
Giorgio Arena26b22162018-08-13 15:49:49 +0100564 // Output auto inizialitation if not yet initialized
Georgios Pinitas10490202018-08-17 17:16:06 +0100565 auto_init_if_empty(*output_clone, input->clone()->set_tensor_shape(output_shape));
Abe Mbise7784c832018-05-31 16:48:41 +0100566 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DIMENSIONS(output->tensor_shape(), output_shape);
567
Giorgio Arena26b22162018-08-13 15:49:49 +0100568 TensorInfo permuted_output;
569 if(input->data_layout() == DataLayout::NHWC)
570 {
571 permute(output_shape, PermutationVector(1U, 2U, 0U));
Georgios Pinitas10490202018-08-17 17:16:06 +0100572 permuted_output = TensorInfo(output_clone->clone()->set_is_resizable(true).reset_padding().set_tensor_shape(output_shape).set_data_layout(DataLayout::NCHW));
Giorgio Arena26b22162018-08-13 15:49:49 +0100573 output_to_use = &permuted_output;
574 }
575
Abe Mbise7784c832018-05-31 16:48:41 +0100576 // Im2Col configuration
Giorgio Arena26b22162018-08-13 15:49:49 +0100577 TensorShape shape_im2col = input_to_use->tensor_shape();
Abe Mbise7784c832018-05-31 16:48:41 +0100578 shape_im2col.set(0, patch_size);
579 shape_im2col.set(1, conv_size);
580 shape_im2col.set(2, weights_z);
Giorgio Arena26b22162018-08-13 15:49:49 +0100581 TensorInfo input_reshaped(input->clone()->set_is_resizable(true).reset_padding().set_tensor_shape(shape_im2col).set_data_layout(DataLayout::NCHW));
Usama Arif881f2de2019-04-12 10:29:17 +0100582 ARM_COMPUTE_RETURN_ON_ERROR(NEDepthwiseIm2ColKernel::validate(input_to_use, &input_reshaped, Size2D(weights_w, weights_h), conv_info, append_bias, depth_multiplier, dilation));
Abe Mbise7784c832018-05-31 16:48:41 +0100583
584 // Weights reshape configuration
585 const TensorShape shape_weights_reshape(patch_size, weights_z);
Giorgio Arena26b22162018-08-13 15:49:49 +0100586 TensorInfo weights_reshaped(weights->clone()->set_is_resizable(true).reset_padding().set_tensor_shape(shape_weights_reshape).set_data_layout(DataLayout::NCHW));
587 ARM_COMPUTE_RETURN_ON_ERROR(NEDepthwiseWeightsReshapeKernel::validate(weights_to_use, &weights_reshaped, append_bias ? biases : nullptr));
Abe Mbise7784c832018-05-31 16:48:41 +0100588
589 // GEMV configuration
590 DataType v2mm_dt = (input->data_type() == DataType::QASYMM8) ? DataType::S32 : input->data_type();
Giorgio Arena26b22162018-08-13 15:49:49 +0100591 TensorShape shape_v2mm_out = input_to_use->tensor_shape();
Abe Mbise7784c832018-05-31 16:48:41 +0100592 shape_v2mm_out.set(0, conv_size * weights_z);
593 shape_v2mm_out.set(1, 1);
594 shape_v2mm_out.set(2, 1);
Giorgio Arena26b22162018-08-13 15:49:49 +0100595 TensorInfo v2mm_output(input->clone()->set_is_resizable(true).reset_padding().set_data_type(v2mm_dt).set_tensor_shape(shape_v2mm_out).set_data_layout(DataLayout::NCHW));
Abe Mbise7784c832018-05-31 16:48:41 +0100596 ARM_COMPUTE_RETURN_ON_ERROR(NEGEMMMatrixVectorMultiplyKernel::validate(&input_reshaped, &weights_reshaped, &v2mm_output));
597
Giorgio Arena26b22162018-08-13 15:49:49 +0100598 TensorInfo output_reshaped(v2mm_output.clone()->set_is_resizable(true).reset_padding().set_tensor_shape(output_to_use->tensor_shape()));
599 ARM_COMPUTE_RETURN_ON_ERROR(NEDepthwiseVectorToTensorKernel::validate(&v2mm_output, (is_quantized) ? &output_reshaped : output_to_use, conv_w, conv_h));
Abe Mbise7784c832018-05-31 16:48:41 +0100600
601 if(is_quantized)
602 {
Giorgio Arena26b22162018-08-13 15:49:49 +0100603 ARM_COMPUTE_RETURN_ON_ERROR(NEDirectConvolutionLayerOutputStageKernel::validate(&output_reshaped, biases, output_to_use));
Abe Mbise7784c832018-05-31 16:48:41 +0100604 }
605
Georgios Pinitas60e98252018-10-22 16:17:20 +0100606 // Validate Activation Layer
607 if(act_info.enabled())
608 {
609 ARM_COMPUTE_RETURN_ON_ERROR(NEActivationLayer::validate(output, nullptr, act_info));
610 }
611
Abe Mbise7784c832018-05-31 16:48:41 +0100612 return Status{};
613}
614
Giorgio Arena04a8f8c2017-11-23 11:45:24 +0000615void NEDepthwiseConvolutionLayer::run()
Michalis Spyroub7b31532017-11-23 12:10:21 +0000616{
Georgios Pinitas72219332018-06-05 14:56:06 +0100617 prepare();
Georgios Pinitas1562be32018-03-08 19:09:19 +0000618
Giorgio Arena26b22162018-08-13 15:49:49 +0100619 if(_is_nhwc)
620 {
621 _permute_input.run();
622 }
623
Michalis Spyroub7b31532017-11-23 12:10:21 +0000624 NEScheduler::get().schedule(&_im2col_kernel, Window::DimX);
Georgios Pinitasd05dce42018-01-22 16:29:17 +0000625 NEScheduler::get().schedule(&_v2mm_input_fill_border, Window::DimX);
Michalis Spyroub7b31532017-11-23 12:10:21 +0000626 NEScheduler::get().schedule(&_v2mm_kernel, Window::DimX);
627 NEScheduler::get().schedule(&_vector_to_tensor_kernel, Window::DimX);
Georgios Pinitasd05dce42018-01-22 16:29:17 +0000628 if(_is_quantized)
629 {
630 NEScheduler::get().schedule(&_output_stage_kernel, Window::DimX);
631 }
Giorgio Arena26b22162018-08-13 15:49:49 +0100632
633 if(_is_nhwc)
634 {
635 _permute_output.run();
636 }
Georgios Pinitas60e98252018-10-22 16:17:20 +0100637
638 if(_is_activationlayer_enabled)
639 {
640 _activationlayer_function.run();
641 }
Anthony Barbierfb8dda22018-01-30 09:27:05 +0000642}
Georgios Pinitas72219332018-06-05 14:56:06 +0100643
644void NEDepthwiseConvolutionLayer::prepare()
645{
646 if(!_is_prepared)
647 {
648 ARM_COMPUTE_ERROR_ON(!_original_weights->is_used());
649
Giorgio Arena26b22162018-08-13 15:49:49 +0100650 if(_is_nhwc)
651 {
652 _permute_weights.run();
653 }
654
Georgios Pinitas72219332018-06-05 14:56:06 +0100655 // Run reshape and mark original weights as unused
656 _weights_reshaped.allocator()->allocate();
657 NEScheduler::get().schedule(&_weights_reshape_kernel, Window::DimX);
658 NEScheduler::get().schedule(&_v2mm_weights_fill_border, Window::DimX);
659 _original_weights->mark_as_unused();
660
661 _is_prepared = true;
662 }
663}
Georgios Pinitas47d39dc2019-03-11 14:03:23 +0000664} // namespace arm_compute