blob: 7bbacb139c2a518bd36e26b9b02abfd283ba290c [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(),
Michalis Spyrou780db4e2017-11-23 09:49:51 +000041 _scaled_output(),
Michalis Spyrouafbc5ff2018-10-03 14:18:19 +010042 _weights_flipped(),
Michele Di Giorgio061dd362018-10-17 17:10:27 +010043 _original_weights(nullptr),
Michalis Spyrou780db4e2017-11-23 09:49:51 +000044 _input(nullptr),
45 _info(),
Georgios Pinitas72219332018-06-05 14:56:06 +010046 _is_prepared(false)
Pablo Tellof5f34bb2017-08-22 13:34:13 +010047{
48}
49
Manuel Bottinic1b76fa2019-06-17 12:04:40 +010050Status NEDeconvolutionLayer::validate(const ITensorInfo *input, const ITensorInfo *weights, const ITensorInfo *bias, const ITensorInfo *output, const PadStrideInfo &info)
Alex Gilday27c08ab2018-02-22 11:36:16 +000051{
52 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(input, weights, output);
Manuel Bottinif391fff2019-05-15 13:01:26 +010053 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input, 1, DataType::F32, DataType::F16, DataType::QASYMM8);
54 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(weights, input);
Alex Gilday27c08ab2018-02-22 11:36:16 +000055 ARM_COMPUTE_RETURN_ERROR_ON(weights->dimension(0) != weights->dimension(1));
56 ARM_COMPUTE_RETURN_ERROR_ON(weights->dimension(0) < 1);
57 ARM_COMPUTE_RETURN_ERROR_ON(!info.padding_is_symmetric());
58
59 const unsigned int stride_x = info.stride().first;
60 const unsigned int stride_y = info.stride().second;
61
Alex Gilday27c08ab2018-02-22 11:36:16 +000062 auto out_dims = deconvolution_output_dimensions(input->dimension(0), input->dimension(1), weights->dimension(0), weights->dimension(1),
Michalis Spyrouafbc5ff2018-10-03 14:18:19 +010063 info.pad().first, info.pad().second, stride_x, stride_y);
Alex Gilday27c08ab2018-02-22 11:36:16 +000064
Georgios Pinitas517055b2018-10-25 16:01:01 +010065 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input, weights);
Alex Gilday27c08ab2018-02-22 11:36:16 +000066
Usama Arif2899e002019-04-16 14:32:25 +010067 if(is_data_type_quantized_asymmetric(input->data_type()))
68 {
69 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(bias, 1, DataType::S32);
70 }
71 else
Alex Gilday27c08ab2018-02-22 11:36:16 +000072 {
73 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input, bias);
Alex Gilday27c08ab2018-02-22 11:36:16 +000074 }
75
76 if(output->tensor_shape().total_size() > 0)
77 {
78 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input, output);
Alex Gilday27c08ab2018-02-22 11:36:16 +000079
Michele Di Giorgioed5a4922018-09-13 16:22:01 +010080 const TensorShape output_shape = compute_deconvolution_output_shape(out_dims, *input, *weights);
81
Alex Gilday27c08ab2018-02-22 11:36:16 +000082 ARM_COMPUTE_RETURN_ERROR_ON_MSG(output->dimension(Window::DimX) != output_shape.x(), "Output's width is invalid.");
83 ARM_COMPUTE_RETURN_ERROR_ON_MSG(output->dimension(Window::DimY) != output_shape.y(), "Output's height is invalid.");
84 ARM_COMPUTE_RETURN_ERROR_ON_MSG(output->dimension(Window::DimZ) != output_shape.z(), "Output's depth is invalid.");
85 }
86
Michele Di Giorgioed5a4922018-09-13 16:22:01 +010087 unsigned int padx = 0;
88 unsigned int pady = 0;
Manuel Bottinic1b76fa2019-06-17 12:04:40 +010089 const TensorShape scale_out_shape = compute_deconvolution_upsampled_shape(*input, *weights, stride_x, stride_y, out_dims, padx, pady);
Michele Di Giorgioed5a4922018-09-13 16:22:01 +010090 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 +000091 const PadStrideInfo conv_info(1, 1, 0, 0, 0, 0, DimensionRoundingType::CEIL);
92
93 for(size_t i = 2; i < Coordinates::num_max_dimensions; ++i)
94 {
95 ARM_COMPUTE_RETURN_ERROR_ON(input->dimension(i) != scale_out_info.dimension(i));
96 }
97
Isabella Gottardi96b86a92018-05-14 15:52:07 +010098 ARM_COMPUTE_RETURN_ON_ERROR(NEConvolutionLayer::validate(&scale_out_info, weights, bias, output, conv_info, WeightsInfo()));
Alex Gilday27c08ab2018-02-22 11:36:16 +000099
100 return Status{};
101}
102
Manuel Bottinic1b76fa2019-06-17 12:04:40 +0100103void NEDeconvolutionLayer::configure(ITensor *input, const ITensor *weights, const ITensor *bias, ITensor *output, const PadStrideInfo &info)
Pablo Tellof5f34bb2017-08-22 13:34:13 +0100104{
Alex Gilday27c08ab2018-02-22 11:36:16 +0000105 ARM_COMPUTE_ERROR_ON_NULLPTR(input, weights, output);
Pablo Tellof5f34bb2017-08-22 13:34:13 +0100106
Michele Di Giorgio061dd362018-10-17 17:10:27 +0100107 _input = input;
108 _original_weights = weights;
109 _info = info;
Michele Di Giorgio061dd362018-10-17 17:10:27 +0100110 _is_prepared = false;
Michalis Spyrou780db4e2017-11-23 09:49:51 +0000111
Usama Arif2899e002019-04-16 14:32:25 +0100112 const DataLayout data_layout = input->info()->data_layout();
113 const unsigned int stride_x = info.stride().first;
114 const unsigned int stride_y = info.stride().second;
Pablo Tellof5f34bb2017-08-22 13:34:13 +0100115
Usama Arif2899e002019-04-16 14:32:25 +0100116 _weights_flipped.allocator()->init(weights->info()->clone()->set_data_layout(data_layout));
Michalis Spyrouafbc5ff2018-10-03 14:18:19 +0100117 _flip_weights.configure(weights, &_weights_flipped);
118
119 auto out_dims = deconvolution_output_dimensions(input->info()->dimension(0), input->info()->dimension(1), weights->info()->dimension(0), weights->info()->dimension(1),
120 info.pad().first, info.pad().second, stride_x, stride_y);
121
Michele Di Giorgioed5a4922018-09-13 16:22:01 +0100122 const TensorShape output_shape = compute_deconvolution_output_shape(out_dims, *input->info(), *weights->info());
Michalis Spyrouafbc5ff2018-10-03 14:18:19 +0100123 // Output auto initialization if not yet initialized
124 auto_init_if_empty(*output->info(), output_shape, 1, input->info()->data_type(), input->info()->quantization_info());
125
Alex Gilday27c08ab2018-02-22 11:36:16 +0000126 // Perform validation step
Manuel Bottinic1b76fa2019-06-17 12:04:40 +0100127 ARM_COMPUTE_ERROR_THROW_ON(NEDeconvolutionLayer::validate(input->info(), weights->info(), bias == nullptr ? nullptr : bias->info(), output->info(), info));
Pablo Tellof5f34bb2017-08-22 13:34:13 +0100128
129 _memory_group.manage(&_scaled_output);
130
Michele Di Giorgioed5a4922018-09-13 16:22:01 +0100131 // Find the upsampled dimensions and the padding needed for the convolution with stride 1 in order to match output shape
132 unsigned int padx = 0;
133 unsigned int pady = 0;
Manuel Bottinic1b76fa2019-06-17 12:04:40 +0100134 const TensorShape scale_out_shape = compute_deconvolution_upsampled_shape(*input->info(), *weights->info(), stride_x, stride_y, out_dims, padx, pady);
Michalis Spyrouafbc5ff2018-10-03 14:18:19 +0100135
Michalis Spyrouafbc5ff2018-10-03 14:18:19 +0100136 TensorInfo scale_out_info(scale_out_shape, 1, input->info()->data_type(), input->info()->quantization_info());
Pablo Tellof5f34bb2017-08-22 13:34:13 +0100137 _scaled_output.allocator()->init(scale_out_info);
Michalis Spyrou780db4e2017-11-23 09:49:51 +0000138
Michalis Spyrouafbc5ff2018-10-03 14:18:19 +0100139 const PadStrideInfo upsample_info(stride_x, stride_y, padx / 2, pady / 2);
Manuel Bottinic1b76fa2019-06-17 12:04:40 +0100140 _upsample_f.configure(input, &_scaled_output, upsample_info);
Michalis Spyrouafbc5ff2018-10-03 14:18:19 +0100141
Pablo Tellof5f34bb2017-08-22 13:34:13 +0100142 // setup the function to convolve the upscaled output
Michalis Spyrou780db4e2017-11-23 09:49:51 +0000143 const PadStrideInfo conv_info(1, 1, 0, 0, 0, 0, DimensionRoundingType::CEIL);
Michalis Spyrouafbc5ff2018-10-03 14:18:19 +0100144 _conv_f.configure(&_scaled_output, &_weights_flipped, bias, output, conv_info);
Pablo Tellof5f34bb2017-08-22 13:34:13 +0100145 _scaled_output.allocator()->allocate();
146}
147
148void NEDeconvolutionLayer::run()
149{
Georgios Pinitas72219332018-06-05 14:56:06 +0100150 prepare();
151
Georgios Pinitasda953f22019-04-02 17:27:03 +0100152 MemoryGroupResourceScope scope_mg(_memory_group);
Michalis Spyrou780db4e2017-11-23 09:49:51 +0000153
Michalis Spyrou33a69902018-02-23 15:01:52 +0000154 _upsample_f.run();
Georgios Pinitas056b5d92018-02-13 18:50:55 +0000155 _conv_f.run();
Georgios Pinitas72219332018-06-05 14:56:06 +0100156}
157
158void NEDeconvolutionLayer::prepare()
159{
160 if(!_is_prepared)
161 {
Michele Di Giorgio061dd362018-10-17 17:10:27 +0100162 ARM_COMPUTE_ERROR_ON(!_original_weights->is_used());
163
164 // Run weights flipping and mark original weights tensor as unused
Michalis Spyrouafbc5ff2018-10-03 14:18:19 +0100165 _weights_flipped.allocator()->allocate();
Georgios Pinitas421405b2018-10-26 19:05:32 +0100166 NEScheduler::get().schedule(&_flip_weights, Window::DimZ);
Michele Di Giorgio061dd362018-10-17 17:10:27 +0100167 _original_weights->mark_as_unused();
168
169 // Prepare convolution
Georgios Pinitas72219332018-06-05 14:56:06 +0100170 _conv_f.prepare();
Michele Di Giorgio061dd362018-10-17 17:10:27 +0100171
172 if(!_weights_flipped.is_used())
173 {
174 _weights_flipped.allocator()->free();
175 }
176
Georgios Pinitas72219332018-06-05 14:56:06 +0100177 _is_prepared = true;
178 }
Michele Di Giorgioed5a4922018-09-13 16:22:01 +0100179}
Manuel Bottinic1b76fa2019-06-17 12:04:40 +0100180} // namespace arm_compute