blob: bbb91b465188fbd69bda4b11753cda567984a8d6 [file] [log] [blame]
Pablo Tellof5f34bb2017-08-22 13:34:13 +01001/*
giuros01a69a88b2019-01-31 16:29:19 +00002 * Copyright (c) 2017-2019 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"
28#include "arm_compute/core/Validate.h"
Michalis Spyrou780db4e2017-11-23 09:49:51 +000029#include "arm_compute/core/utils/misc/ShapeCalculator.h"
Georgios Pinitas421405b2018-10-26 19:05:32 +010030#include "arm_compute/runtime/NEON/NEScheduler.h"
Pablo Tellof5f34bb2017-08-22 13:34:13 +010031
Michalis Spyrou780db4e2017-11-23 09:49:51 +000032using namespace arm_compute::misc::shape_calculator;
Pablo Tellof5f34bb2017-08-22 13:34:13 +010033
Manuel Bottinif391fff2019-05-15 13:01:26 +010034namespace arm_compute
35{
Pablo Tellof5f34bb2017-08-22 13:34:13 +010036NEDeconvolutionLayer::NEDeconvolutionLayer(std::shared_ptr<IMemoryManager> memory_manager) // NOLINT
37 : _memory_group(std::move(memory_manager)),
Pablo Tellof5f34bb2017-08-22 13:34:13 +010038 _conv_f(),
Michalis Spyrou33a69902018-02-23 15:01:52 +000039 _upsample_f(),
Michalis Spyrouafbc5ff2018-10-03 14:18:19 +010040 _flip_weights(),
Manuel Bottinid25af672019-07-10 17:06:12 +010041 _permute_input(),
42 _permute_weights(),
43 _permute_output(),
Michalis Spyrou780db4e2017-11-23 09:49:51 +000044 _scaled_output(),
Michalis Spyrouafbc5ff2018-10-03 14:18:19 +010045 _weights_flipped(),
Manuel Bottinid25af672019-07-10 17:06:12 +010046 _permuted_input(),
47 _permuted_weights(),
48 _permuted_output(),
49 _is_nchw(false),
Michele Di Giorgio061dd362018-10-17 17:10:27 +010050 _original_weights(nullptr),
Michalis Spyrou780db4e2017-11-23 09:49:51 +000051 _input(nullptr),
52 _info(),
Georgios Pinitas72219332018-06-05 14:56:06 +010053 _is_prepared(false)
Pablo Tellof5f34bb2017-08-22 13:34:13 +010054{
55}
56
Manuel Bottinic1b76fa2019-06-17 12:04:40 +010057Status NEDeconvolutionLayer::validate(const ITensorInfo *input, const ITensorInfo *weights, const ITensorInfo *bias, const ITensorInfo *output, const PadStrideInfo &info)
Alex Gilday27c08ab2018-02-22 11:36:16 +000058{
59 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(input, weights, output);
Manuel Bottinif391fff2019-05-15 13:01:26 +010060 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input, 1, DataType::F32, DataType::F16, DataType::QASYMM8);
61 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(weights, input);
Manuel Bottinid25af672019-07-10 17:06:12 +010062 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_LAYOUT(weights, input);
63 const unsigned int width_idx = get_data_layout_dimension_index(weights->data_layout(), DataLayoutDimension::WIDTH);
64 const unsigned int height_idx = get_data_layout_dimension_index(weights->data_layout(), DataLayoutDimension::HEIGHT);
65 ARM_COMPUTE_RETURN_ERROR_ON(weights->dimension(width_idx) != weights->dimension(height_idx));
66 ARM_COMPUTE_RETURN_ERROR_ON(weights->dimension(width_idx) < 1);
Alex Gilday27c08ab2018-02-22 11:36:16 +000067
Matthew Jacksonb9070a42019-08-22 16:13:27 +010068 auto out_dims = deconvolution_output_dimensions(input->dimension(width_idx), input->dimension(height_idx), weights->dimension(width_idx), weights->dimension(height_idx), info);
Alex Gilday27c08ab2018-02-22 11:36:16 +000069
Georgios Pinitas517055b2018-10-25 16:01:01 +010070 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input, weights);
Manuel Bottini9f0d5ec2019-08-19 13:31:38 +010071 if(bias != nullptr)
Usama Arif2899e002019-04-16 14:32:25 +010072 {
Manuel Bottini9f0d5ec2019-08-19 13:31:38 +010073 if(is_data_type_quantized_asymmetric(input->data_type()))
74 {
75 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(bias, 1, DataType::S32);
76 }
77 else
78 {
79 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input, bias);
80 }
Alex Gilday27c08ab2018-02-22 11:36:16 +000081 }
82
83 if(output->tensor_shape().total_size() > 0)
84 {
85 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input, output);
Alex Gilday27c08ab2018-02-22 11:36:16 +000086
Michele Di Giorgioed5a4922018-09-13 16:22:01 +010087 const TensorShape output_shape = compute_deconvolution_output_shape(out_dims, *input, *weights);
88
Alex Gilday27c08ab2018-02-22 11:36:16 +000089 ARM_COMPUTE_RETURN_ERROR_ON_MSG(output->dimension(Window::DimX) != output_shape.x(), "Output's width is invalid.");
90 ARM_COMPUTE_RETURN_ERROR_ON_MSG(output->dimension(Window::DimY) != output_shape.y(), "Output's height is invalid.");
91 ARM_COMPUTE_RETURN_ERROR_ON_MSG(output->dimension(Window::DimZ) != output_shape.z(), "Output's depth is invalid.");
92 }
93
Matthew Jacksonb9070a42019-08-22 16:13:27 +010094 unsigned int deconv_pad_x = 0;
95 unsigned int deconv_pad_y = 0;
96 const unsigned int stride_x = info.stride().first;
97 const unsigned int stride_y = info.stride().second;
98 const TensorShape scale_out_shape = compute_deconvolution_upsampled_shape(*input, *weights, stride_x, stride_y, out_dims, deconv_pad_x, deconv_pad_y);
Michele Di Giorgioed5a4922018-09-13 16:22:01 +010099 TensorInfo scale_out_info(input->clone()->set_is_resizable(true).reset_padding().set_tensor_shape(scale_out_shape));
Alex Gilday27c08ab2018-02-22 11:36:16 +0000100 const PadStrideInfo conv_info(1, 1, 0, 0, 0, 0, DimensionRoundingType::CEIL);
101
Manuel Bottinid25af672019-07-10 17:06:12 +0100102 const unsigned int batches_idx = get_data_layout_dimension_index(weights->data_layout(), DataLayoutDimension::BATCHES);
103 const unsigned int channel_idx = get_data_layout_dimension_index(weights->data_layout(), DataLayoutDimension::CHANNEL);
104 ARM_COMPUTE_RETURN_ERROR_ON(input->dimension(batches_idx) != scale_out_info.dimension(batches_idx));
105 ARM_COMPUTE_RETURN_ERROR_ON(input->dimension(channel_idx) != scale_out_info.dimension(channel_idx));
Alex Gilday27c08ab2018-02-22 11:36:16 +0000106
Isabella Gottardi96b86a92018-05-14 15:52:07 +0100107 ARM_COMPUTE_RETURN_ON_ERROR(NEConvolutionLayer::validate(&scale_out_info, weights, bias, output, conv_info, WeightsInfo()));
Alex Gilday27c08ab2018-02-22 11:36:16 +0000108
109 return Status{};
110}
111
Manuel Bottinic1b76fa2019-06-17 12:04:40 +0100112void NEDeconvolutionLayer::configure(ITensor *input, const ITensor *weights, const ITensor *bias, ITensor *output, const PadStrideInfo &info)
Pablo Tellof5f34bb2017-08-22 13:34:13 +0100113{
Michele Di Giorgio0c5191c2019-08-15 15:11:45 +0100114 // Perform validation step
Alex Gilday27c08ab2018-02-22 11:36:16 +0000115 ARM_COMPUTE_ERROR_ON_NULLPTR(input, weights, output);
Michele Di Giorgio0c5191c2019-08-15 15:11:45 +0100116 ARM_COMPUTE_ERROR_THROW_ON(NEDeconvolutionLayer::validate(input->info(), weights->info(), (bias == nullptr) ? nullptr : bias->info(), output->info(), info));
Manuel Bottinid25af672019-07-10 17:06:12 +0100117
118 const DataLayout data_layout = input->info()->data_layout();
Pablo Tellof5f34bb2017-08-22 13:34:13 +0100119
Michele Di Giorgio061dd362018-10-17 17:10:27 +0100120 _input = input;
121 _original_weights = weights;
122 _info = info;
Michele Di Giorgio061dd362018-10-17 17:10:27 +0100123 _is_prepared = false;
Manuel Bottinid25af672019-07-10 17:06:12 +0100124 _is_nchw = data_layout == DataLayout::NCHW;
Michalis Spyrou780db4e2017-11-23 09:49:51 +0000125
Matthew Jacksonb9070a42019-08-22 16:13:27 +0100126 const unsigned int pad_left = info.pad_left();
127 const unsigned int pad_right = info.pad_right();
128 const unsigned int pad_top = info.pad_top();
129 const unsigned int pad_bottom = info.pad_bottom();
Manuel Bottinid25af672019-07-10 17:06:12 +0100130 const unsigned int stride_x = info.stride().first;
131 const unsigned int stride_y = info.stride().second;
Pablo Tellof5f34bb2017-08-22 13:34:13 +0100132
Manuel Bottinid25af672019-07-10 17:06:12 +0100133 const unsigned int width_idx = get_data_layout_dimension_index(data_layout, DataLayoutDimension::WIDTH);
134 const unsigned int height_idx = get_data_layout_dimension_index(data_layout, DataLayoutDimension::HEIGHT);
Matthew Jacksonb9070a42019-08-22 16:13:27 +0100135 auto out_dims = deconvolution_output_dimensions(input->info()->dimension(width_idx), input->info()->dimension(height_idx),
136 weights->info()->dimension(width_idx), weights->info()->dimension(height_idx), info);
Michalis Spyrouafbc5ff2018-10-03 14:18:19 +0100137
Michele Di Giorgioed5a4922018-09-13 16:22:01 +0100138 const TensorShape output_shape = compute_deconvolution_output_shape(out_dims, *input->info(), *weights->info());
Michalis Spyrouafbc5ff2018-10-03 14:18:19 +0100139 // Output auto initialization if not yet initialized
140 auto_init_if_empty(*output->info(), output_shape, 1, input->info()->data_type(), input->info()->quantization_info());
141
Pablo Tellof5f34bb2017-08-22 13:34:13 +0100142 _memory_group.manage(&_scaled_output);
143
Manuel Bottinid25af672019-07-10 17:06:12 +0100144 if(!_is_nchw)
145 {
146 _memory_group.manage(&_permuted_input);
Manuel Bottinid25af672019-07-10 17:06:12 +0100147 _memory_group.manage(&_permuted_output);
Michalis Spyrouafbc5ff2018-10-03 14:18:19 +0100148
Manuel Bottinid25af672019-07-10 17:06:12 +0100149 // Configure the function to transform the input tensor from NHWC -> NCHW
150 _permuted_input.info()->set_quantization_info(input->info()->quantization_info());
151 _permute_input.configure(input, &_permuted_input, PermutationVector(1U, 2U, 0U));
152 _permuted_input.info()->set_data_layout(DataLayout::NCHW);
Michalis Spyrou780db4e2017-11-23 09:49:51 +0000153
Manuel Bottinid25af672019-07-10 17:06:12 +0100154 // Configure the function to transform the weights tensor from NHWC -> NCHW
155 _permuted_weights.info()->set_quantization_info(weights->info()->quantization_info());
156 _permute_weights.configure(weights, &_permuted_weights, PermutationVector(1U, 2U, 0U));
157 _permuted_weights.info()->set_data_layout(DataLayout::NCHW);
Michalis Spyrouafbc5ff2018-10-03 14:18:19 +0100158
Manuel Bottinid25af672019-07-10 17:06:12 +0100159 // Find the upsampled dimensions and the padding needed for the convolution with stride 1 in order to match output shape
Matthew Jacksonb9070a42019-08-22 16:13:27 +0100160 unsigned int deconv_pad_x = 0;
161 unsigned int deconv_pad_y = 0;
162 const TensorShape scale_out_shape = compute_deconvolution_upsampled_shape(*_permuted_input.info(), *_permuted_weights.info(), stride_x, stride_y, out_dims,
163 deconv_pad_x, deconv_pad_y);
164
165 unsigned int deconv_pad_left = pad_right > pad_left ? pad_right - pad_left : 0;
166 unsigned int deconv_pad_right = pad_left > pad_right ? pad_left - pad_right : 0;
167 deconv_pad_x -= deconv_pad_left + deconv_pad_right;
168 ARM_COMPUTE_ERROR_ON((deconv_pad_x % 2) != 0);
169 deconv_pad_left += deconv_pad_x / 2;
170 deconv_pad_right += deconv_pad_x / 2;
171
172 unsigned int deconv_pad_top = pad_bottom > pad_top ? pad_bottom - pad_top : 0;
173 unsigned int deconv_pad_bottom = pad_top > pad_bottom ? pad_top - pad_bottom : 0;
174 deconv_pad_y -= deconv_pad_top + deconv_pad_bottom;
175 ARM_COMPUTE_ERROR_ON((deconv_pad_y % 2) != 0);
176 deconv_pad_top += deconv_pad_y / 2;
177 deconv_pad_bottom += deconv_pad_y / 2;
Manuel Bottinid25af672019-07-10 17:06:12 +0100178
179 TensorInfo scale_out_info(scale_out_shape, 1, _permuted_input.info()->data_type(), _permuted_input.info()->quantization_info());
180 scale_out_info.set_data_layout(DataLayout::NCHW);
181 _scaled_output.allocator()->init(scale_out_info);
182
Matthew Jacksonb9070a42019-08-22 16:13:27 +0100183 const PadStrideInfo upsample_info(stride_x, stride_y, deconv_pad_left, deconv_pad_right, deconv_pad_top, deconv_pad_bottom, DimensionRoundingType::FLOOR);
Manuel Bottinid25af672019-07-10 17:06:12 +0100184 _upsample_f.configure(&_permuted_input, &_scaled_output, upsample_info);
185
186 _weights_flipped.allocator()->init(*_permuted_weights.info()->clone());
187 _weights_flipped.info()->set_quantization_info(weights->info()->quantization_info());
188 _flip_weights.configure(&_permuted_weights, &_weights_flipped);
189
190 // setup the function to convolve the upscaled output
191 const PadStrideInfo conv_info(1, 1, 0, 0, 0, 0, DimensionRoundingType::CEIL);
192
193 _permuted_output.info()->set_quantization_info(output->info()->quantization_info());
194 _conv_f.configure(&_scaled_output, &_weights_flipped, bias, &_permuted_output, conv_info);
Manuel Bottinid25af672019-07-10 17:06:12 +0100195
196 // Configure the function to transform the convoluted output to NHWC
197 _permute_output.configure(&_permuted_output, output, PermutationVector(2U, 0U, 1U));
SiCong Liecb14272019-08-20 11:09:11 +0100198 _permuted_output.info()->set_data_layout(DataLayout::NCHW);
Manuel Bottinid25af672019-07-10 17:06:12 +0100199
200 _permuted_input.allocator()->allocate();
Manuel Bottinid25af672019-07-10 17:06:12 +0100201 _permuted_output.allocator()->allocate();
202 }
203 else
204 {
205 // Find the upsampled dimensions and the padding needed for the convolution with stride 1 in order to match output shape
Matthew Jacksonb9070a42019-08-22 16:13:27 +0100206 unsigned int deconv_pad_x = 0;
207 unsigned int deconv_pad_y = 0;
208 const TensorShape scale_out_shape = compute_deconvolution_upsampled_shape(*input->info(), *weights->info(), stride_x, stride_y,
209 out_dims, deconv_pad_x, deconv_pad_y);
210
211 unsigned int deconv_pad_left = pad_right > pad_left ? pad_right - pad_left : 0;
212 unsigned int deconv_pad_right = pad_left > pad_right ? pad_left - pad_right : 0;
213 deconv_pad_x -= deconv_pad_left + deconv_pad_right;
214 ARM_COMPUTE_ERROR_ON((deconv_pad_x % 2) != 0);
215 deconv_pad_left += deconv_pad_x / 2;
216 deconv_pad_right += deconv_pad_x / 2;
217
218 unsigned int deconv_pad_top = pad_bottom > pad_top ? pad_bottom - pad_top : 0;
219 unsigned int deconv_pad_bottom = pad_top > pad_bottom ? pad_top - pad_bottom : 0;
220 deconv_pad_y -= deconv_pad_top + deconv_pad_bottom;
221 ARM_COMPUTE_ERROR_ON((deconv_pad_y % 2) != 0);
222 deconv_pad_top += deconv_pad_y / 2;
223 deconv_pad_bottom += deconv_pad_y / 2;
Manuel Bottinid25af672019-07-10 17:06:12 +0100224
225 TensorInfo scale_out_info(scale_out_shape, 1, input->info()->data_type(), input->info()->quantization_info());
226 scale_out_info.set_data_layout(data_layout);
227 _scaled_output.allocator()->init(scale_out_info);
Matthew Jacksonb9070a42019-08-22 16:13:27 +0100228
229 const PadStrideInfo upsample_info(stride_x, stride_y, deconv_pad_left, deconv_pad_right, deconv_pad_top, deconv_pad_bottom, DimensionRoundingType::FLOOR);
Manuel Bottinid25af672019-07-10 17:06:12 +0100230 _upsample_f.configure(input, &_scaled_output, upsample_info);
231
232 _weights_flipped.allocator()->init(weights->info()->clone()->set_data_layout(data_layout));
233 _flip_weights.configure(weights, &_weights_flipped);
234
235 // setup the function to convolve the upscaled output
236 const PadStrideInfo conv_info(1, 1, 0, 0, 0, 0, DimensionRoundingType::CEIL);
237 _conv_f.configure(&_scaled_output, &_weights_flipped, bias, output, conv_info);
238 }
Pablo Tellof5f34bb2017-08-22 13:34:13 +0100239 _scaled_output.allocator()->allocate();
240}
241
242void NEDeconvolutionLayer::run()
243{
Georgios Pinitas72219332018-06-05 14:56:06 +0100244 prepare();
245
Georgios Pinitasda953f22019-04-02 17:27:03 +0100246 MemoryGroupResourceScope scope_mg(_memory_group);
Michalis Spyrou780db4e2017-11-23 09:49:51 +0000247
Manuel Bottinid25af672019-07-10 17:06:12 +0100248 // Permute input
249 if(!_is_nchw)
250 {
251 _permute_input.run();
252 }
253
Michalis Spyrou33a69902018-02-23 15:01:52 +0000254 _upsample_f.run();
Georgios Pinitas056b5d92018-02-13 18:50:55 +0000255 _conv_f.run();
Manuel Bottinid25af672019-07-10 17:06:12 +0100256
257 // Permute output
258 if(!_is_nchw)
259 {
260 _permute_output.run();
261 }
Georgios Pinitas72219332018-06-05 14:56:06 +0100262}
263
264void NEDeconvolutionLayer::prepare()
265{
266 if(!_is_prepared)
267 {
Michele Di Giorgio061dd362018-10-17 17:10:27 +0100268 ARM_COMPUTE_ERROR_ON(!_original_weights->is_used());
Manuel Bottinid25af672019-07-10 17:06:12 +0100269 // Permute weights
270 if(!_is_nchw)
271 {
SiCong Liecb14272019-08-20 11:09:11 +0100272 // Manually manage _permuted_weights
273 _permuted_weights.allocator()->allocate();
Manuel Bottinid25af672019-07-10 17:06:12 +0100274 _permute_weights.run();
275 }
SiCong Liecb14272019-08-20 11:09:11 +0100276
277 // Run weights flipping and mark original weights tensor as unused
278 _weights_flipped.allocator()->allocate();
Georgios Pinitas421405b2018-10-26 19:05:32 +0100279 NEScheduler::get().schedule(&_flip_weights, Window::DimZ);
Michele Di Giorgio061dd362018-10-17 17:10:27 +0100280 _original_weights->mark_as_unused();
281
282 // Prepare convolution
Georgios Pinitas72219332018-06-05 14:56:06 +0100283 _conv_f.prepare();
Michele Di Giorgio061dd362018-10-17 17:10:27 +0100284
285 if(!_weights_flipped.is_used())
286 {
287 _weights_flipped.allocator()->free();
288 }
289
SiCong Liecb14272019-08-20 11:09:11 +0100290 if(!_is_nchw)
291 {
292 // Manually manage _permuted_weights
293 // Free _permuted_weights as it not used after this method (prepare)
294 _permuted_weights.allocator()->free();
295 }
296
Georgios Pinitas72219332018-06-05 14:56:06 +0100297 _is_prepared = true;
298 }
Michele Di Giorgioed5a4922018-09-13 16:22:01 +0100299}
Manuel Bottinic1b76fa2019-06-17 12:04:40 +0100300} // namespace arm_compute