blob: c3d6b94d8df7bcd8ce1975a310e77e78eb176f23 [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 _inner_border(),
47 _is_prepared(false)
Pablo Tellof5f34bb2017-08-22 13:34:13 +010048{
49}
50
Alex Gilday27c08ab2018-02-22 11:36:16 +000051Status NEDeconvolutionLayer::validate(const ITensorInfo *input, const ITensorInfo *weights, const ITensorInfo *bias, const ITensorInfo *output, const PadStrideInfo &info,
52 unsigned int inner_border_right, unsigned int inner_border_top)
53{
54 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(input, weights, output);
Manuel Bottinif391fff2019-05-15 13:01:26 +010055 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input, 1, DataType::F32, DataType::F16, DataType::QASYMM8);
56 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(weights, input);
Alex Gilday27c08ab2018-02-22 11:36:16 +000057 ARM_COMPUTE_RETURN_ERROR_ON(weights->dimension(0) != weights->dimension(1));
58 ARM_COMPUTE_RETURN_ERROR_ON(weights->dimension(0) < 1);
59 ARM_COMPUTE_RETURN_ERROR_ON(!info.padding_is_symmetric());
60
61 const unsigned int stride_x = info.stride().first;
62 const unsigned int stride_y = info.stride().second;
63
64 ARM_COMPUTE_RETURN_ERROR_ON_MSG(inner_border_right > stride_x - 1, "inner_border_right must be smaller than stride_x");
65 ARM_COMPUTE_RETURN_ERROR_ON_MSG(inner_border_top > stride_y - 1, "inner_border_top must be smaller than stride_y");
66
67 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 +010068 info.pad().first, info.pad().second, stride_x, stride_y);
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);
Alex Gilday27c08ab2018-02-22 11:36:16 +000071
Usama Arif2899e002019-04-16 14:32:25 +010072 if(is_data_type_quantized_asymmetric(input->data_type()))
73 {
74 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(bias, 1, DataType::S32);
75 }
76 else
Alex Gilday27c08ab2018-02-22 11:36:16 +000077 {
78 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input, bias);
Alex Gilday27c08ab2018-02-22 11:36:16 +000079 }
80
81 if(output->tensor_shape().total_size() > 0)
82 {
83 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input, output);
Alex Gilday27c08ab2018-02-22 11:36:16 +000084
Michele Di Giorgioed5a4922018-09-13 16:22:01 +010085 const TensorShape output_shape = compute_deconvolution_output_shape(out_dims, *input, *weights);
86
Alex Gilday27c08ab2018-02-22 11:36:16 +000087 ARM_COMPUTE_RETURN_ERROR_ON_MSG(output->dimension(Window::DimX) != output_shape.x(), "Output's width is invalid.");
88 ARM_COMPUTE_RETURN_ERROR_ON_MSG(output->dimension(Window::DimY) != output_shape.y(), "Output's height is invalid.");
89 ARM_COMPUTE_RETURN_ERROR_ON_MSG(output->dimension(Window::DimZ) != output_shape.z(), "Output's depth is invalid.");
90 }
91
Michele Di Giorgioed5a4922018-09-13 16:22:01 +010092 unsigned int padx = 0;
93 unsigned int pady = 0;
94 const TensorShape scale_out_shape = compute_deconvolution_upsampled_shape(*input, *weights, stride_x, stride_y, inner_border_right, inner_border_top, out_dims, padx, pady);
95 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 +000096 const PadStrideInfo conv_info(1, 1, 0, 0, 0, 0, DimensionRoundingType::CEIL);
97
98 for(size_t i = 2; i < Coordinates::num_max_dimensions; ++i)
99 {
100 ARM_COMPUTE_RETURN_ERROR_ON(input->dimension(i) != scale_out_info.dimension(i));
101 }
102
Isabella Gottardi96b86a92018-05-14 15:52:07 +0100103 ARM_COMPUTE_RETURN_ON_ERROR(NEConvolutionLayer::validate(&scale_out_info, weights, bias, output, conv_info, WeightsInfo()));
Alex Gilday27c08ab2018-02-22 11:36:16 +0000104
105 return Status{};
106}
107
Pablo Tellof5f34bb2017-08-22 13:34:13 +0100108void NEDeconvolutionLayer::configure(ITensor *input, const ITensor *weights, const ITensor *bias, ITensor *output, const PadStrideInfo &info,
Michalis Spyrou780db4e2017-11-23 09:49:51 +0000109 unsigned int inner_border_right, unsigned int inner_border_top)
Pablo Tellof5f34bb2017-08-22 13:34:13 +0100110{
Alex Gilday27c08ab2018-02-22 11:36:16 +0000111 ARM_COMPUTE_ERROR_ON_NULLPTR(input, weights, output);
Pablo Tellof5f34bb2017-08-22 13:34:13 +0100112
Michele Di Giorgio061dd362018-10-17 17:10:27 +0100113 _input = input;
114 _original_weights = weights;
115 _info = info;
116 _inner_border = std::make_pair(inner_border_right, inner_border_top);
117 _is_prepared = false;
Michalis Spyrou780db4e2017-11-23 09:49:51 +0000118
Usama Arif2899e002019-04-16 14:32:25 +0100119 const DataLayout data_layout = input->info()->data_layout();
120 const unsigned int stride_x = info.stride().first;
121 const unsigned int stride_y = info.stride().second;
Pablo Tellof5f34bb2017-08-22 13:34:13 +0100122
Usama Arif2899e002019-04-16 14:32:25 +0100123 _weights_flipped.allocator()->init(weights->info()->clone()->set_data_layout(data_layout));
Michalis Spyrouafbc5ff2018-10-03 14:18:19 +0100124 _flip_weights.configure(weights, &_weights_flipped);
125
126 auto out_dims = deconvolution_output_dimensions(input->info()->dimension(0), input->info()->dimension(1), weights->info()->dimension(0), weights->info()->dimension(1),
127 info.pad().first, info.pad().second, stride_x, stride_y);
128
Michele Di Giorgioed5a4922018-09-13 16:22:01 +0100129 const TensorShape output_shape = compute_deconvolution_output_shape(out_dims, *input->info(), *weights->info());
Michalis Spyrouafbc5ff2018-10-03 14:18:19 +0100130 // Output auto initialization if not yet initialized
131 auto_init_if_empty(*output->info(), output_shape, 1, input->info()->data_type(), input->info()->quantization_info());
132
Alex Gilday27c08ab2018-02-22 11:36:16 +0000133 // Perform validation step
134 ARM_COMPUTE_ERROR_THROW_ON(NEDeconvolutionLayer::validate(input->info(), weights->info(), bias == nullptr ? nullptr : bias->info(), output->info(), info, inner_border_right, inner_border_top));
Pablo Tellof5f34bb2017-08-22 13:34:13 +0100135
136 _memory_group.manage(&_scaled_output);
137
Michele Di Giorgioed5a4922018-09-13 16:22:01 +0100138 // Find the upsampled dimensions and the padding needed for the convolution with stride 1 in order to match output shape
139 unsigned int padx = 0;
140 unsigned int pady = 0;
141 const TensorShape scale_out_shape = compute_deconvolution_upsampled_shape(*input->info(), *weights->info(), stride_x, stride_y, inner_border_right, inner_border_top, out_dims, padx, pady);
Michalis Spyrouafbc5ff2018-10-03 14:18:19 +0100142
Michalis Spyrouafbc5ff2018-10-03 14:18:19 +0100143 TensorInfo scale_out_info(scale_out_shape, 1, input->info()->data_type(), input->info()->quantization_info());
Pablo Tellof5f34bb2017-08-22 13:34:13 +0100144 _scaled_output.allocator()->init(scale_out_info);
Michalis Spyrou780db4e2017-11-23 09:49:51 +0000145
Michalis Spyrouafbc5ff2018-10-03 14:18:19 +0100146 const PadStrideInfo upsample_info(stride_x, stride_y, padx / 2, pady / 2);
147 _upsample_f.configure(input, &_scaled_output, upsample_info, inner_border_right, inner_border_top);
148
Pablo Tellof5f34bb2017-08-22 13:34:13 +0100149 // setup the function to convolve the upscaled output
Michalis Spyrou780db4e2017-11-23 09:49:51 +0000150 const PadStrideInfo conv_info(1, 1, 0, 0, 0, 0, DimensionRoundingType::CEIL);
Michalis Spyrouafbc5ff2018-10-03 14:18:19 +0100151 _conv_f.configure(&_scaled_output, &_weights_flipped, bias, output, conv_info);
Pablo Tellof5f34bb2017-08-22 13:34:13 +0100152 _scaled_output.allocator()->allocate();
153}
giuros01a69a88b2019-01-31 16:29:19 +0000154Status NEDeconvolutionLayer::validate(const ITensorInfo *input, const ITensorInfo *weights, const ITensorInfo *bias, const ITensorInfo *output, const PadStrideInfo &info)
155{
156 return NEDeconvolutionLayer::validate(input, weights, bias, output, info, 0, 0);
157}
158
159void NEDeconvolutionLayer::configure(ITensor *input, const ITensor *weights, const ITensor *bias, ITensor *output, const PadStrideInfo &info)
160{
161 configure(input, weights, bias, output, info, 0, 0);
162}
Pablo Tellof5f34bb2017-08-22 13:34:13 +0100163
164void NEDeconvolutionLayer::run()
165{
Georgios Pinitas72219332018-06-05 14:56:06 +0100166 prepare();
167
Georgios Pinitasda953f22019-04-02 17:27:03 +0100168 MemoryGroupResourceScope scope_mg(_memory_group);
Michalis Spyrou780db4e2017-11-23 09:49:51 +0000169
Michalis Spyrou33a69902018-02-23 15:01:52 +0000170 _upsample_f.run();
Georgios Pinitas056b5d92018-02-13 18:50:55 +0000171 _conv_f.run();
Georgios Pinitas72219332018-06-05 14:56:06 +0100172}
173
174void NEDeconvolutionLayer::prepare()
175{
176 if(!_is_prepared)
177 {
Michele Di Giorgio061dd362018-10-17 17:10:27 +0100178 ARM_COMPUTE_ERROR_ON(!_original_weights->is_used());
179
180 // Run weights flipping and mark original weights tensor as unused
Michalis Spyrouafbc5ff2018-10-03 14:18:19 +0100181 _weights_flipped.allocator()->allocate();
Georgios Pinitas421405b2018-10-26 19:05:32 +0100182 NEScheduler::get().schedule(&_flip_weights, Window::DimZ);
Michele Di Giorgio061dd362018-10-17 17:10:27 +0100183 _original_weights->mark_as_unused();
184
185 // Prepare convolution
Georgios Pinitas72219332018-06-05 14:56:06 +0100186 _conv_f.prepare();
Michele Di Giorgio061dd362018-10-17 17:10:27 +0100187
188 if(!_weights_flipped.is_used())
189 {
190 _weights_flipped.allocator()->free();
191 }
192
Georgios Pinitas72219332018-06-05 14:56:06 +0100193 _is_prepared = true;
194 }
Michele Di Giorgioed5a4922018-09-13 16:22:01 +0100195}
Manuel Bottinif391fff2019-05-15 13:01:26 +0100196} // namespace arm_compute