blob: 581f2575815b58adc8a9c30bc403d16956982ce4 [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 ARM_COMPUTE_RETURN_ERROR_ON(!info.padding_is_symmetric());
68
69 const unsigned int stride_x = info.stride().first;
70 const unsigned int stride_y = info.stride().second;
71
Manuel Bottinid25af672019-07-10 17:06:12 +010072 auto out_dims = deconvolution_output_dimensions(input->dimension(width_idx), input->dimension(height_idx), weights->dimension(width_idx), weights->dimension(height_idx),
Michalis Spyrouafbc5ff2018-10-03 14:18:19 +010073 info.pad().first, info.pad().second, stride_x, stride_y);
Alex Gilday27c08ab2018-02-22 11:36:16 +000074
Georgios Pinitas517055b2018-10-25 16:01:01 +010075 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input, weights);
Usama Arif2899e002019-04-16 14:32:25 +010076 if(is_data_type_quantized_asymmetric(input->data_type()))
77 {
78 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(bias, 1, DataType::S32);
79 }
80 else
Alex Gilday27c08ab2018-02-22 11:36:16 +000081 {
82 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input, bias);
Alex Gilday27c08ab2018-02-22 11:36:16 +000083 }
84
85 if(output->tensor_shape().total_size() > 0)
86 {
87 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input, output);
Alex Gilday27c08ab2018-02-22 11:36:16 +000088
Michele Di Giorgioed5a4922018-09-13 16:22:01 +010089 const TensorShape output_shape = compute_deconvolution_output_shape(out_dims, *input, *weights);
90
Alex Gilday27c08ab2018-02-22 11:36:16 +000091 ARM_COMPUTE_RETURN_ERROR_ON_MSG(output->dimension(Window::DimX) != output_shape.x(), "Output's width is invalid.");
92 ARM_COMPUTE_RETURN_ERROR_ON_MSG(output->dimension(Window::DimY) != output_shape.y(), "Output's height is invalid.");
93 ARM_COMPUTE_RETURN_ERROR_ON_MSG(output->dimension(Window::DimZ) != output_shape.z(), "Output's depth is invalid.");
94 }
95
Michele Di Giorgioed5a4922018-09-13 16:22:01 +010096 unsigned int padx = 0;
97 unsigned int pady = 0;
Manuel Bottinic1b76fa2019-06-17 12:04:40 +010098 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 +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{
Alex Gilday27c08ab2018-02-22 11:36:16 +0000114 ARM_COMPUTE_ERROR_ON_NULLPTR(input, weights, output);
Manuel Bottinid25af672019-07-10 17:06:12 +0100115 ARM_COMPUTE_ERROR_THROW_ON(NEDeconvolutionLayer::validate(input->info(), weights->info(), bias->info(), output->info(), info));
116
117 const DataLayout data_layout = input->info()->data_layout();
Pablo Tellof5f34bb2017-08-22 13:34:13 +0100118
Michele Di Giorgio061dd362018-10-17 17:10:27 +0100119 _input = input;
120 _original_weights = weights;
121 _info = info;
Michele Di Giorgio061dd362018-10-17 17:10:27 +0100122 _is_prepared = false;
Manuel Bottinid25af672019-07-10 17:06:12 +0100123 _is_nchw = data_layout == DataLayout::NCHW;
Michalis Spyrou780db4e2017-11-23 09:49:51 +0000124
Manuel Bottinid25af672019-07-10 17:06:12 +0100125 const unsigned int stride_x = info.stride().first;
126 const unsigned int stride_y = info.stride().second;
Pablo Tellof5f34bb2017-08-22 13:34:13 +0100127
Manuel Bottinid25af672019-07-10 17:06:12 +0100128 const unsigned int width_idx = get_data_layout_dimension_index(data_layout, DataLayoutDimension::WIDTH);
129 const unsigned int height_idx = get_data_layout_dimension_index(data_layout, DataLayoutDimension::HEIGHT);
130 auto out_dims = deconvolution_output_dimensions(input->info()->dimension(width_idx), input->info()->dimension(height_idx), weights->info()->dimension(width_idx),
131 weights->info()->dimension(height_idx),
132 info.pad().first, info.pad().second, stride_x, stride_y);
Michalis Spyrouafbc5ff2018-10-03 14:18:19 +0100133
Michele Di Giorgioed5a4922018-09-13 16:22:01 +0100134 const TensorShape output_shape = compute_deconvolution_output_shape(out_dims, *input->info(), *weights->info());
Michalis Spyrouafbc5ff2018-10-03 14:18:19 +0100135 // Output auto initialization if not yet initialized
136 auto_init_if_empty(*output->info(), output_shape, 1, input->info()->data_type(), input->info()->quantization_info());
137
Alex Gilday27c08ab2018-02-22 11:36:16 +0000138 // Perform validation step
Manuel Bottinic1b76fa2019-06-17 12:04:40 +0100139 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 +0100140
141 _memory_group.manage(&_scaled_output);
142
Manuel Bottinid25af672019-07-10 17:06:12 +0100143 if(!_is_nchw)
144 {
145 _memory_group.manage(&_permuted_input);
146 _memory_group.manage(&_permuted_weights);
147 _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
160 unsigned int padx = 0;
161 unsigned int pady = 0;
162 const TensorShape scale_out_shape = compute_deconvolution_upsampled_shape(*_permuted_input.info(), *_permuted_weights.info(), stride_x, stride_y, out_dims, padx,
163 pady);
164
165 TensorInfo scale_out_info(scale_out_shape, 1, _permuted_input.info()->data_type(), _permuted_input.info()->quantization_info());
166 scale_out_info.set_data_layout(DataLayout::NCHW);
167 _scaled_output.allocator()->init(scale_out_info);
168
169 const PadStrideInfo upsample_info(stride_x, stride_y, padx / 2, pady / 2);
170 _upsample_f.configure(&_permuted_input, &_scaled_output, upsample_info);
171
172 _weights_flipped.allocator()->init(*_permuted_weights.info()->clone());
173 _weights_flipped.info()->set_quantization_info(weights->info()->quantization_info());
174 _flip_weights.configure(&_permuted_weights, &_weights_flipped);
175
176 // setup the function to convolve the upscaled output
177 const PadStrideInfo conv_info(1, 1, 0, 0, 0, 0, DimensionRoundingType::CEIL);
178
179 _permuted_output.info()->set_quantization_info(output->info()->quantization_info());
180 _conv_f.configure(&_scaled_output, &_weights_flipped, bias, &_permuted_output, conv_info);
181 _permuted_output.info()->set_data_layout(DataLayout::NCHW);
182
183 // Configure the function to transform the convoluted output to NHWC
184 _permute_output.configure(&_permuted_output, output, PermutationVector(2U, 0U, 1U));
185
186 _permuted_input.allocator()->allocate();
187 _permuted_weights.allocator()->allocate();
188 _permuted_output.allocator()->allocate();
189 }
190 else
191 {
192 // Find the upsampled dimensions and the padding needed for the convolution with stride 1 in order to match output shape
193 unsigned int padx = 0;
194 unsigned int pady = 0;
195 const TensorShape scale_out_shape = compute_deconvolution_upsampled_shape(*input->info(), *weights->info(), stride_x, stride_y, out_dims, padx, pady);
196
197 TensorInfo scale_out_info(scale_out_shape, 1, input->info()->data_type(), input->info()->quantization_info());
198 scale_out_info.set_data_layout(data_layout);
199 _scaled_output.allocator()->init(scale_out_info);
200 const PadStrideInfo upsample_info(stride_x, stride_y, padx / 2, pady / 2);
201 _upsample_f.configure(input, &_scaled_output, upsample_info);
202
203 _weights_flipped.allocator()->init(weights->info()->clone()->set_data_layout(data_layout));
204 _flip_weights.configure(weights, &_weights_flipped);
205
206 // setup the function to convolve the upscaled output
207 const PadStrideInfo conv_info(1, 1, 0, 0, 0, 0, DimensionRoundingType::CEIL);
208 _conv_f.configure(&_scaled_output, &_weights_flipped, bias, output, conv_info);
209 }
Pablo Tellof5f34bb2017-08-22 13:34:13 +0100210 _scaled_output.allocator()->allocate();
211}
212
213void NEDeconvolutionLayer::run()
214{
Georgios Pinitas72219332018-06-05 14:56:06 +0100215 prepare();
216
Georgios Pinitasda953f22019-04-02 17:27:03 +0100217 MemoryGroupResourceScope scope_mg(_memory_group);
Michalis Spyrou780db4e2017-11-23 09:49:51 +0000218
Manuel Bottinid25af672019-07-10 17:06:12 +0100219 // Permute input
220 if(!_is_nchw)
221 {
222 _permute_input.run();
223 }
224
Michalis Spyrou33a69902018-02-23 15:01:52 +0000225 _upsample_f.run();
Georgios Pinitas056b5d92018-02-13 18:50:55 +0000226 _conv_f.run();
Manuel Bottinid25af672019-07-10 17:06:12 +0100227
228 // Permute output
229 if(!_is_nchw)
230 {
231 _permute_output.run();
232 }
Georgios Pinitas72219332018-06-05 14:56:06 +0100233}
234
235void NEDeconvolutionLayer::prepare()
236{
237 if(!_is_prepared)
238 {
Michele Di Giorgio061dd362018-10-17 17:10:27 +0100239 ARM_COMPUTE_ERROR_ON(!_original_weights->is_used());
240
241 // Run weights flipping and mark original weights tensor as unused
Michalis Spyrouafbc5ff2018-10-03 14:18:19 +0100242 _weights_flipped.allocator()->allocate();
Manuel Bottinid25af672019-07-10 17:06:12 +0100243 // Permute weights
244 if(!_is_nchw)
245 {
246 _permute_weights.run();
247 }
Georgios Pinitas421405b2018-10-26 19:05:32 +0100248 NEScheduler::get().schedule(&_flip_weights, Window::DimZ);
Michele Di Giorgio061dd362018-10-17 17:10:27 +0100249 _original_weights->mark_as_unused();
250
251 // Prepare convolution
Georgios Pinitas72219332018-06-05 14:56:06 +0100252 _conv_f.prepare();
Michele Di Giorgio061dd362018-10-17 17:10:27 +0100253
254 if(!_weights_flipped.is_used())
255 {
256 _weights_flipped.allocator()->free();
257 }
258
Georgios Pinitas72219332018-06-05 14:56:06 +0100259 _is_prepared = true;
260 }
Michele Di Giorgioed5a4922018-09-13 16:22:01 +0100261}
Manuel Bottinic1b76fa2019-06-17 12:04:40 +0100262} // namespace arm_compute