blob: 081c7cc538c26f33dd589682be5d82817322b674 [file] [log] [blame]
Pablo Tellof5f34bb2017-08-22 13:34:13 +01001/*
Annop Wongwathanarat11f7d7e2023-01-12 11:35:37 +00002 * Copyright (c) 2017-2021, 2023 Arm Limited.
Pablo Tellof5f34bb2017-08-22 13:34:13 +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/runtime/NEON/functions/NEDeconvolutionLayer.h"
25
26#include "arm_compute/core/Helpers.h"
Pablo Tellof5f34bb2017-08-22 13:34:13 +010027#include "arm_compute/core/Utils.h"
Michalis Spyrou780db4e2017-11-23 09:49:51 +000028#include "arm_compute/core/utils/misc/ShapeCalculator.h"
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010029#include "arm_compute/core/Validate.h"
Georgios Pinitas421405b2018-10-26 19:05:32 +010030#include "arm_compute/runtime/NEON/NEScheduler.h"
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010031
ramelg01cbbb0382021-09-17 17:36:57 +010032#include "src/common/utils/Log.h"
Sang-Hoon Park68dd25f2020-10-19 16:00:11 +010033#include "src/core/helpers/AutoConfiguration.h"
Pablo Tellof5f34bb2017-08-22 13:34:13 +010034
Michalis Spyrou780db4e2017-11-23 09:49:51 +000035using namespace arm_compute::misc::shape_calculator;
Pablo Tellof5f34bb2017-08-22 13:34:13 +010036
Manuel Bottinif391fff2019-05-15 13:01:26 +010037namespace arm_compute
38{
Manuel Bottini6e10aa32020-04-30 13:28:23 +010039namespace
40{
41PadStrideInfo compute_upsample_info(const PadStrideInfo &info, uint32_t deconv_pad_x, uint32_t deconv_pad_y)
42{
43 const unsigned int pad_left = info.pad_left();
44 const unsigned int pad_right = info.pad_right();
45 const unsigned int pad_top = info.pad_top();
46 const unsigned int pad_bottom = info.pad_bottom();
47 const unsigned int stride_x = info.stride().first;
48 const unsigned int stride_y = info.stride().second;
49
50 // Find the upsampled dimensions and the padding needed for the convolution with stride 1 in order to match output shape
51 unsigned int deconv_pad_left = pad_right > pad_left ? pad_right - pad_left : 0;
52 unsigned int deconv_pad_right = pad_left > pad_right ? pad_left - pad_right : 0;
53 deconv_pad_x -= deconv_pad_left + deconv_pad_right;
54 ARM_COMPUTE_ERROR_ON((deconv_pad_x % 2) != 0);
55 deconv_pad_left += deconv_pad_x / 2;
56 deconv_pad_right += deconv_pad_x / 2;
57
58 unsigned int deconv_pad_top = pad_bottom > pad_top ? pad_bottom - pad_top : 0;
59 unsigned int deconv_pad_bottom = pad_top > pad_bottom ? pad_top - pad_bottom : 0;
60 deconv_pad_y -= deconv_pad_top + deconv_pad_bottom;
61 ARM_COMPUTE_ERROR_ON((deconv_pad_y % 2) != 0);
62 deconv_pad_top += deconv_pad_y / 2;
63 deconv_pad_bottom += deconv_pad_y / 2;
64
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010065 return PadStrideInfo(stride_x, stride_y, deconv_pad_left, deconv_pad_right, deconv_pad_top, deconv_pad_bottom,
66 DimensionRoundingType::FLOOR);
Manuel Bottini6e10aa32020-04-30 13:28:23 +010067}
Manuel Bottini6e10aa32020-04-30 13:28:23 +010068} // namespace
69
Pablo Tellof5f34bb2017-08-22 13:34:13 +010070NEDeconvolutionLayer::NEDeconvolutionLayer(std::shared_ptr<IMemoryManager> memory_manager) // NOLINT
71 : _memory_group(std::move(memory_manager)),
Pablo Tellof5f34bb2017-08-22 13:34:13 +010072 _conv_f(),
Michalis Spyrou33a69902018-02-23 15:01:52 +000073 _upsample_f(),
Michalis Spyrouafbc5ff2018-10-03 14:18:19 +010074 _flip_weights(),
Michalis Spyrou780db4e2017-11-23 09:49:51 +000075 _scaled_output(),
Michalis Spyrouafbc5ff2018-10-03 14:18:19 +010076 _weights_flipped(),
Luca Foschianifedefc32020-02-17 17:02:49 +000077 _flip_axis(),
Michele Di Giorgio061dd362018-10-17 17:10:27 +010078 _original_weights(nullptr),
Michalis Spyrou780db4e2017-11-23 09:49:51 +000079 _input(nullptr),
80 _info(),
Annop Wongwathanaratb609c932023-01-16 14:36:45 +000081 _is_prepared(false),
82 _do_upsampling(true)
Pablo Tellof5f34bb2017-08-22 13:34:13 +010083{
84}
85
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010086Status NEDeconvolutionLayer::validate(const ITensorInfo *input,
87 const ITensorInfo *weights,
88 const ITensorInfo *bias,
89 const ITensorInfo *output,
90 const PadStrideInfo &info,
91 bool enable_fast_math,
92 const WeightsInfo &weights_info)
Alex Gilday27c08ab2018-02-22 11:36:16 +000093{
94 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(input, weights, output);
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010095 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input, 1, DataType::F32, DataType::F16, DataType::QASYMM8,
96 DataType::QASYMM8_SIGNED);
97 const unsigned int width_idx = get_data_layout_dimension_index(weights->data_layout(), DataLayoutDimension::WIDTH);
98 const unsigned int height_idx =
99 get_data_layout_dimension_index(weights->data_layout(), DataLayoutDimension::HEIGHT);
Manuel Bottinid25af672019-07-10 17:06:12 +0100100 ARM_COMPUTE_RETURN_ERROR_ON(weights->dimension(width_idx) < 1);
Viet-Hoa Do019a7d92023-06-27 16:33:57 +0100101 ARM_COMPUTE_RETURN_ERROR_ON(weights->dimension(height_idx) < 1);
Freddie Liardet9d061b02021-04-06 15:59:28 +0100102 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_LAYOUT(weights, input);
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100103 if (is_data_type_quantized_per_channel(weights->data_type()) && is_data_type_quantized(input->data_type()))
Freddie Liardet9d061b02021-04-06 15:59:28 +0100104 {
105 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(weights, 1, DataType::QSYMM8_PER_CHANNEL);
106 }
107 else
108 {
109 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input, weights);
110 }
Alex Gilday27c08ab2018-02-22 11:36:16 +0000111
Pablo Marquez Tello745153b2023-09-27 15:20:40 +0100112 const unsigned int pad_left = info.pad_left();
113 const unsigned int pad_top = info.pad_top();
114 const unsigned int pad_right = info.pad_right();
115 const unsigned int pad_bottom = info.pad_bottom();
116
117 ARM_COMPUTE_RETURN_ERROR_ON(((input->dimension(width_idx) - 1) * info.stride().first +
118 weights->dimension(width_idx)) < (pad_left + pad_right));
119 ARM_COMPUTE_RETURN_ERROR_ON(((input->dimension(height_idx) - 1) * info.stride().second +
120 weights->dimension(height_idx)) < (pad_top + pad_bottom));
121
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100122 auto out_dims =
123 deconvolution_output_dimensions(input->dimension(width_idx), input->dimension(height_idx),
124 weights->dimension(width_idx), weights->dimension(height_idx), info);
Alex Gilday27c08ab2018-02-22 11:36:16 +0000125
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100126 if (bias != nullptr)
Usama Arif2899e002019-04-16 14:32:25 +0100127 {
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100128 if (is_data_type_quantized_asymmetric(input->data_type()))
Manuel Bottini9f0d5ec2019-08-19 13:31:38 +0100129 {
130 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(bias, 1, DataType::S32);
131 }
132 else
133 {
134 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input, bias);
135 }
Alex Gilday27c08ab2018-02-22 11:36:16 +0000136 }
137
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100138 if (output->tensor_shape().total_size() > 0)
Alex Gilday27c08ab2018-02-22 11:36:16 +0000139 {
140 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input, output);
Alex Gilday27c08ab2018-02-22 11:36:16 +0000141
Michele Di Giorgioed5a4922018-09-13 16:22:01 +0100142 const TensorShape output_shape = compute_deconvolution_output_shape(out_dims, *input, *weights);
143
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100144 ARM_COMPUTE_RETURN_ERROR_ON_MSG(output->dimension(Window::DimX) != output_shape.x(),
145 "Output's width is invalid.");
146 ARM_COMPUTE_RETURN_ERROR_ON_MSG(output->dimension(Window::DimY) != output_shape.y(),
147 "Output's height is invalid.");
148 ARM_COMPUTE_RETURN_ERROR_ON_MSG(output->dimension(Window::DimZ) != output_shape.z(),
149 "Output's depth is invalid.");
Alex Gilday27c08ab2018-02-22 11:36:16 +0000150 }
151
Pablo Marquez Tello745153b2023-09-27 15:20:40 +0100152 uint32_t deconv_pad_x = 0;
153 uint32_t deconv_pad_y = 0;
154 const uint32_t stride_x = info.stride().first;
155 const uint32_t stride_y = info.stride().second;
156 const auto deconv_padding = compute_deconvolution_padding(*input, *weights, static_cast<int32_t>(stride_x),
157 static_cast<int32_t>(stride_y), out_dims);
158 ARM_COMPUTE_RETURN_ERROR_ON_MSG(deconv_padding.first < 0 || deconv_padding.second < 0,
159 "Negative padding not supported");
Pablo Marquez Tello2a0939d2021-01-20 15:02:59 +0000160
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100161 const TensorShape scale_out_shape = compute_deconvolution_upsampled_shape(*input, *weights, stride_x, stride_y,
162 out_dims, deconv_pad_x, deconv_pad_y);
163 TensorInfo scale_out_info(input->clone()->set_is_resizable(true).reset_padding().set_tensor_shape(scale_out_shape));
Annop Wongwathanaratc4ed2fd2023-02-09 16:33:13 +0000164 const PadStrideInfo upsample_info = compute_upsample_info(info, deconv_pad_x, deconv_pad_y);
165
166 // Do not perform upsampling when the operation uses unit stride in all dimensions
167 const bool do_upsampling = stride_x != 1 || stride_y != 1;
Alex Gilday27c08ab2018-02-22 11:36:16 +0000168
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100169 const unsigned int batches_idx =
170 get_data_layout_dimension_index(weights->data_layout(), DataLayoutDimension::BATCHES);
171 const unsigned int channel_idx =
172 get_data_layout_dimension_index(weights->data_layout(), DataLayoutDimension::CHANNEL);
Manuel Bottinid25af672019-07-10 17:06:12 +0100173 ARM_COMPUTE_RETURN_ERROR_ON(input->dimension(batches_idx) != scale_out_info.dimension(batches_idx));
174 ARM_COMPUTE_RETURN_ERROR_ON(input->dimension(channel_idx) != scale_out_info.dimension(channel_idx));
Alex Gilday27c08ab2018-02-22 11:36:16 +0000175
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100176 if (do_upsampling)
Annop Wongwathanaratc4ed2fd2023-02-09 16:33:13 +0000177 {
178 const PadStrideInfo conv_info(1, 1, 0, 0, 0, 0, DimensionRoundingType::CEIL);
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100179 ARM_COMPUTE_RETURN_ON_ERROR(NEConvolutionLayer::validate(&scale_out_info, weights, bias, output, conv_info,
180 weights_info, Size2D(1U, 1U), ActivationLayerInfo(),
181 enable_fast_math));
Annop Wongwathanaratc4ed2fd2023-02-09 16:33:13 +0000182 }
183 else
184 {
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100185 const PadStrideInfo conv_info(1, 1, upsample_info.pad_left(), upsample_info.pad_right(),
186 upsample_info.pad_top(), upsample_info.pad_bottom(), DimensionRoundingType::CEIL);
187 ARM_COMPUTE_RETURN_ON_ERROR(NEConvolutionLayer::validate(input, weights, bias, output, conv_info, weights_info,
188 Size2D(1U, 1U), ActivationLayerInfo(),
189 enable_fast_math));
Annop Wongwathanaratc4ed2fd2023-02-09 16:33:13 +0000190 }
Alex Gilday27c08ab2018-02-22 11:36:16 +0000191
192 return Status{};
193}
194
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100195void NEDeconvolutionLayer::configure(ITensor *input,
196 const ITensor *weights,
197 const ITensor *bias,
198 ITensor *output,
199 const PadStrideInfo &info,
200 bool enable_fast_math,
201 const WeightsInfo &weights_info)
Pablo Tellof5f34bb2017-08-22 13:34:13 +0100202{
Michele Di Giorgio0c5191c2019-08-15 15:11:45 +0100203 // Perform validation step
Alex Gilday27c08ab2018-02-22 11:36:16 +0000204 ARM_COMPUTE_ERROR_ON_NULLPTR(input, weights, output);
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100205 ARM_COMPUTE_ERROR_THROW_ON(NEDeconvolutionLayer::validate(input->info(), weights->info(),
206 (bias == nullptr) ? nullptr : bias->info(),
207 output->info(), info, enable_fast_math, weights_info));
Annop Wongwathanaratadfcacc2023-03-01 15:19:50 +0000208 ARM_COMPUTE_LOG_PARAMS(input, weights, bias, output, info, enable_fast_math, weights_info);
Manuel Bottinid25af672019-07-10 17:06:12 +0100209
Manuel Bottini6e10aa32020-04-30 13:28:23 +0100210 const DataLayout data_layout = input->info()->data_layout();
211 const unsigned int width_idx = get_data_layout_dimension_index(data_layout, DataLayoutDimension::WIDTH);
212 const unsigned int height_idx = get_data_layout_dimension_index(data_layout, DataLayoutDimension::HEIGHT);
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100213 auto out_dims = deconvolution_output_dimensions(
214 input->info()->dimension(width_idx), input->info()->dimension(height_idx),
215 weights->info()->dimension(width_idx), weights->info()->dimension(height_idx), info);
Manuel Bottini6e10aa32020-04-30 13:28:23 +0100216
217 const TensorShape output_shape = compute_deconvolution_output_shape(out_dims, *input->info(), *weights->info());
Pablo Tellof5f34bb2017-08-22 13:34:13 +0100218
Michele Di Giorgio061dd362018-10-17 17:10:27 +0100219 _input = input;
220 _original_weights = weights;
221 _info = info;
Michele Di Giorgio061dd362018-10-17 17:10:27 +0100222 _is_prepared = false;
Michalis Spyrou780db4e2017-11-23 09:49:51 +0000223
Manuel Bottini6e10aa32020-04-30 13:28:23 +0100224 const unsigned int stride_x = info.stride().first;
225 const unsigned int stride_y = info.stride().second;
Pablo Tellof5f34bb2017-08-22 13:34:13 +0100226
Michalis Spyrouafbc5ff2018-10-03 14:18:19 +0100227 // Output auto initialization if not yet initialized
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100228 auto_init_if_empty(*output->info(), output_shape, 1, input->info()->data_type(),
229 input->info()->quantization_info());
Michalis Spyrouafbc5ff2018-10-03 14:18:19 +0100230
Luca Foschianifedefc32020-02-17 17:02:49 +0000231 _flip_axis.allocator()->init(TensorInfo(TensorShape(2U), 1, DataType::U32));
Pablo Tellof5f34bb2017-08-22 13:34:13 +0100232
Manuel Bottini6e10aa32020-04-30 13:28:23 +0100233 _weights_flipped.allocator()->init(weights->info()->clone()->set_data_layout(data_layout));
234 _flip_weights.configure(weights, &_weights_flipped, &_flip_axis);
Michalis Spyrouafbc5ff2018-10-03 14:18:19 +0100235
Manuel Bottini6e10aa32020-04-30 13:28:23 +0100236 // setup the function to convolve the upscaled output
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100237 uint32_t deconv_pad_x = 0;
238 uint32_t deconv_pad_y = 0;
239 const TensorShape scale_out_shape = compute_deconvolution_upsampled_shape(
240 *input->info(), *weights->info(), stride_x, stride_y, out_dims, deconv_pad_x, deconv_pad_y);
Pablo Marquez Tello745153b2023-09-27 15:20:40 +0100241
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100242 const PadStrideInfo upsample_info = compute_upsample_info(info, deconv_pad_x, deconv_pad_y);
Annop Wongwathanaratc4ed2fd2023-02-09 16:33:13 +0000243
244 // Do not perform upsampling when the operation uses unit stride in all dimensions
245 _do_upsampling = stride_x != 1 || stride_y != 1;
Michalis Spyrou780db4e2017-11-23 09:49:51 +0000246
Luca Foschianifedefc32020-02-17 17:02:49 +0000247 // Setup flip axis data
248 _flip_axis.allocator()->allocate();
249 auto axis_data = reinterpret_cast<uint32_t *>(_flip_axis.buffer());
Manuel Bottini6e10aa32020-04-30 13:28:23 +0100250 axis_data[0] = static_cast<uint32_t>(width_idx);
251 axis_data[1] = static_cast<uint32_t>(height_idx);
252
Annop Wongwathanaratb609c932023-01-16 14:36:45 +0000253 // Setup convolution and upsampling, if needed
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100254 if (_do_upsampling)
Annop Wongwathanaratb609c932023-01-16 14:36:45 +0000255 {
256 _memory_group.manage(&_scaled_output);
Annop Wongwathanaratb609c932023-01-16 14:36:45 +0000257
Annop Wongwathanaratc4ed2fd2023-02-09 16:33:13 +0000258 const PadStrideInfo conv_info(1, 1, 0, 0, 0, 0, DimensionRoundingType::CEIL);
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100259 TensorInfo scale_out_info(scale_out_shape, 1, input->info()->data_type(), input->info()->quantization_info());
Annop Wongwathanaratb609c932023-01-16 14:36:45 +0000260 scale_out_info.set_data_layout(data_layout);
261 _scaled_output.allocator()->init(scale_out_info);
262
Annop Wongwathanaratc4ed2fd2023-02-09 16:33:13 +0000263 // Minor optimization: In the upsampling step, we do not need to allocate space for the padding in the upsampled image.
264 // The padding amount can be given as input to the convolution layer.
Annop Wongwathanaratb609c932023-01-16 14:36:45 +0000265 _upsample_f.configure(input, &_scaled_output, upsample_info);
266
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100267 _conv_f.configure(&_scaled_output, &_weights_flipped, bias, output, conv_info, weights_info, Size2D(1U, 1U),
268 ActivationLayerInfo(), enable_fast_math);
Annop Wongwathanaratb609c932023-01-16 14:36:45 +0000269
270 _scaled_output.allocator()->allocate();
271 }
272 else
273 {
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100274 const PadStrideInfo conv_info(1, 1, upsample_info.pad_left(), upsample_info.pad_right(),
275 upsample_info.pad_top(), upsample_info.pad_bottom(), DimensionRoundingType::CEIL);
276 _conv_f.configure(input, &_weights_flipped, bias, output, conv_info, weights_info, Size2D(1U, 1U),
277 ActivationLayerInfo(), enable_fast_math);
Annop Wongwathanaratb609c932023-01-16 14:36:45 +0000278 }
Pablo Tellof5f34bb2017-08-22 13:34:13 +0100279}
280
281void NEDeconvolutionLayer::run()
282{
Georgios Pinitas72219332018-06-05 14:56:06 +0100283 prepare();
284
Georgios Pinitasda953f22019-04-02 17:27:03 +0100285 MemoryGroupResourceScope scope_mg(_memory_group);
Michalis Spyrou780db4e2017-11-23 09:49:51 +0000286
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100287 if (_do_upsampling)
Annop Wongwathanaratb609c932023-01-16 14:36:45 +0000288 {
289 _upsample_f.run();
290 }
Georgios Pinitas056b5d92018-02-13 18:50:55 +0000291 _conv_f.run();
Georgios Pinitas72219332018-06-05 14:56:06 +0100292}
293
294void NEDeconvolutionLayer::prepare()
295{
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100296 if (!_is_prepared)
Georgios Pinitas72219332018-06-05 14:56:06 +0100297 {
Michele Di Giorgio061dd362018-10-17 17:10:27 +0100298 ARM_COMPUTE_ERROR_ON(!_original_weights->is_used());
SiCong Liecb14272019-08-20 11:09:11 +0100299
300 // Run weights flipping and mark original weights tensor as unused
301 _weights_flipped.allocator()->allocate();
Luca Foschianifedefc32020-02-17 17:02:49 +0000302 _flip_weights.run();
Michele Di Giorgio061dd362018-10-17 17:10:27 +0100303 _original_weights->mark_as_unused();
304
305 // Prepare convolution
Georgios Pinitas72219332018-06-05 14:56:06 +0100306 _conv_f.prepare();
Michele Di Giorgio061dd362018-10-17 17:10:27 +0100307
Georgios Pinitas72219332018-06-05 14:56:06 +0100308 _is_prepared = true;
309 }
Michele Di Giorgioed5a4922018-09-13 16:22:01 +0100310}
Manuel Bottinic1b76fa2019-06-17 12:04:40 +0100311} // namespace arm_compute