blob: 96ffedd5b4d41c9af58dcafef74021df29c269bc [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"
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"
ramelg01cbbb0382021-09-17 17:36:57 +010031#include "src/common/utils/Log.h"
Sang-Hoon Park68dd25f2020-10-19 16:00:11 +010032#include "src/core/helpers/AutoConfiguration.h"
Pablo Tellof5f34bb2017-08-22 13:34:13 +010033
Michalis Spyrou780db4e2017-11-23 09:49:51 +000034using namespace arm_compute::misc::shape_calculator;
Pablo Tellof5f34bb2017-08-22 13:34:13 +010035
Manuel Bottinif391fff2019-05-15 13:01:26 +010036namespace arm_compute
37{
Manuel Bottini6e10aa32020-04-30 13:28:23 +010038namespace
39{
40PadStrideInfo compute_upsample_info(const PadStrideInfo &info, uint32_t deconv_pad_x, uint32_t deconv_pad_y)
41{
42 const unsigned int pad_left = info.pad_left();
43 const unsigned int pad_right = info.pad_right();
44 const unsigned int pad_top = info.pad_top();
45 const unsigned int pad_bottom = info.pad_bottom();
46 const unsigned int stride_x = info.stride().first;
47 const unsigned int stride_y = info.stride().second;
48
49 // Find the upsampled dimensions and the padding needed for the convolution with stride 1 in order to match output shape
50 unsigned int deconv_pad_left = pad_right > pad_left ? pad_right - pad_left : 0;
51 unsigned int deconv_pad_right = pad_left > pad_right ? pad_left - pad_right : 0;
52 deconv_pad_x -= deconv_pad_left + deconv_pad_right;
53 ARM_COMPUTE_ERROR_ON((deconv_pad_x % 2) != 0);
54 deconv_pad_left += deconv_pad_x / 2;
55 deconv_pad_right += deconv_pad_x / 2;
56
57 unsigned int deconv_pad_top = pad_bottom > pad_top ? pad_bottom - pad_top : 0;
58 unsigned int deconv_pad_bottom = pad_top > pad_bottom ? pad_top - pad_bottom : 0;
59 deconv_pad_y -= deconv_pad_top + deconv_pad_bottom;
60 ARM_COMPUTE_ERROR_ON((deconv_pad_y % 2) != 0);
61 deconv_pad_top += deconv_pad_y / 2;
62 deconv_pad_bottom += deconv_pad_y / 2;
63
64 return PadStrideInfo(stride_x, stride_y, deconv_pad_left, deconv_pad_right, deconv_pad_top, deconv_pad_bottom, DimensionRoundingType::FLOOR);
65}
66
67} // namespace
68
Pablo Tellof5f34bb2017-08-22 13:34:13 +010069NEDeconvolutionLayer::NEDeconvolutionLayer(std::shared_ptr<IMemoryManager> memory_manager) // NOLINT
70 : _memory_group(std::move(memory_manager)),
Pablo Tellof5f34bb2017-08-22 13:34:13 +010071 _conv_f(),
Michalis Spyrou33a69902018-02-23 15:01:52 +000072 _upsample_f(),
Michalis Spyrouafbc5ff2018-10-03 14:18:19 +010073 _flip_weights(),
Michalis Spyrou780db4e2017-11-23 09:49:51 +000074 _scaled_output(),
Michalis Spyrouafbc5ff2018-10-03 14:18:19 +010075 _weights_flipped(),
Luca Foschianifedefc32020-02-17 17:02:49 +000076 _flip_axis(),
Michele Di Giorgio061dd362018-10-17 17:10:27 +010077 _original_weights(nullptr),
Michalis Spyrou780db4e2017-11-23 09:49:51 +000078 _input(nullptr),
79 _info(),
Annop Wongwathanaratb609c932023-01-16 14:36:45 +000080 _is_prepared(false),
81 _do_upsampling(true)
Pablo Tellof5f34bb2017-08-22 13:34:13 +010082{
83}
84
Annop Wongwathanarat11f7d7e2023-01-12 11:35:37 +000085Status NEDeconvolutionLayer::validate(const ITensorInfo *input, const ITensorInfo *weights, const ITensorInfo *bias, const ITensorInfo *output, const PadStrideInfo &info, bool enable_fast_math)
Alex Gilday27c08ab2018-02-22 11:36:16 +000086{
87 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(input, weights, output);
Luca Foschianifedefc32020-02-17 17:02:49 +000088 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input, 1, DataType::F32, DataType::F16, DataType::QASYMM8, DataType::QASYMM8_SIGNED);
Manuel Bottinid25af672019-07-10 17:06:12 +010089 const unsigned int width_idx = get_data_layout_dimension_index(weights->data_layout(), DataLayoutDimension::WIDTH);
90 const unsigned int height_idx = get_data_layout_dimension_index(weights->data_layout(), DataLayoutDimension::HEIGHT);
91 ARM_COMPUTE_RETURN_ERROR_ON(weights->dimension(width_idx) != weights->dimension(height_idx));
92 ARM_COMPUTE_RETURN_ERROR_ON(weights->dimension(width_idx) < 1);
Freddie Liardet9d061b02021-04-06 15:59:28 +010093 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_LAYOUT(weights, input);
94 if(is_data_type_quantized_per_channel(weights->data_type()) && is_data_type_quantized(input->data_type()))
95 {
96 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(weights, 1, DataType::QSYMM8_PER_CHANNEL);
97 }
98 else
99 {
100 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input, weights);
101 }
Alex Gilday27c08ab2018-02-22 11:36:16 +0000102
Matthew Jacksonb9070a42019-08-22 16:13:27 +0100103 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 +0000104
Manuel Bottini9f0d5ec2019-08-19 13:31:38 +0100105 if(bias != nullptr)
Usama Arif2899e002019-04-16 14:32:25 +0100106 {
Manuel Bottini9f0d5ec2019-08-19 13:31:38 +0100107 if(is_data_type_quantized_asymmetric(input->data_type()))
108 {
109 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(bias, 1, DataType::S32);
110 }
111 else
112 {
113 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input, bias);
114 }
Alex Gilday27c08ab2018-02-22 11:36:16 +0000115 }
116
117 if(output->tensor_shape().total_size() > 0)
118 {
119 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input, output);
Alex Gilday27c08ab2018-02-22 11:36:16 +0000120
Michele Di Giorgioed5a4922018-09-13 16:22:01 +0100121 const TensorShape output_shape = compute_deconvolution_output_shape(out_dims, *input, *weights);
122
Alex Gilday27c08ab2018-02-22 11:36:16 +0000123 ARM_COMPUTE_RETURN_ERROR_ON_MSG(output->dimension(Window::DimX) != output_shape.x(), "Output's width is invalid.");
124 ARM_COMPUTE_RETURN_ERROR_ON_MSG(output->dimension(Window::DimY) != output_shape.y(), "Output's height is invalid.");
125 ARM_COMPUTE_RETURN_ERROR_ON_MSG(output->dimension(Window::DimZ) != output_shape.z(), "Output's depth is invalid.");
126 }
127
Freddie Liardet9d061b02021-04-06 15:59:28 +0100128 uint32_t deconv_pad_x = 0;
129 uint32_t deconv_pad_y = 0;
130 const unsigned int stride_x = info.stride().first;
131 const unsigned int stride_y = info.stride().second;
Pablo Marquez Tello2a0939d2021-01-20 15:02:59 +0000132 // Guard against overflows in compute_deconvolution_upsampled_shape()
Freddie Liardet9d061b02021-04-06 15:59:28 +0100133 const DataLayout data_layout = input->data_layout();
134 const size_t idx_w = get_data_layout_dimension_index(data_layout, DataLayoutDimension::WIDTH);
135 const size_t idx_h = get_data_layout_dimension_index(data_layout, DataLayoutDimension::HEIGHT);
136 const unsigned int out_x = (input->dimension(idx_w) - 1) * stride_x + 1;
137 const unsigned int out_y = (input->dimension(idx_h) - 1) * stride_y + 1;
Pablo Marquez Tello2a0939d2021-01-20 15:02:59 +0000138 ARM_COMPUTE_RETURN_ERROR_ON(weights->dimension(idx_w) > out_x);
139 ARM_COMPUTE_RETURN_ERROR_ON(weights->dimension(idx_h) > out_y);
140 ARM_COMPUTE_RETURN_ERROR_ON((out_x - weights->dimension(idx_w) + 1) > out_dims.first);
Freddie Liardet9d061b02021-04-06 15:59:28 +0100141 ARM_COMPUTE_RETURN_ERROR_ON((out_y - weights->dimension(idx_h) + 1) > out_dims.second);
Pablo Marquez Tello2a0939d2021-01-20 15:02:59 +0000142
Matthew Jacksonb9070a42019-08-22 16:13:27 +0100143 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 +0100144 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 +0000145 const PadStrideInfo upsample_info = compute_upsample_info(info, deconv_pad_x, deconv_pad_y);
146
147 // Do not perform upsampling when the operation uses unit stride in all dimensions
148 const bool do_upsampling = stride_x != 1 || stride_y != 1;
Alex Gilday27c08ab2018-02-22 11:36:16 +0000149
Manuel Bottinid25af672019-07-10 17:06:12 +0100150 const unsigned int batches_idx = get_data_layout_dimension_index(weights->data_layout(), DataLayoutDimension::BATCHES);
151 const unsigned int channel_idx = get_data_layout_dimension_index(weights->data_layout(), DataLayoutDimension::CHANNEL);
152 ARM_COMPUTE_RETURN_ERROR_ON(input->dimension(batches_idx) != scale_out_info.dimension(batches_idx));
153 ARM_COMPUTE_RETURN_ERROR_ON(input->dimension(channel_idx) != scale_out_info.dimension(channel_idx));
Alex Gilday27c08ab2018-02-22 11:36:16 +0000154
Annop Wongwathanaratc4ed2fd2023-02-09 16:33:13 +0000155 if (do_upsampling)
156 {
157 const PadStrideInfo conv_info(1, 1, 0, 0, 0, 0, DimensionRoundingType::CEIL);
158 ARM_COMPUTE_RETURN_ON_ERROR(NEConvolutionLayer::validate(&scale_out_info, weights, bias, output, conv_info, WeightsInfo(), Size2D(1U, 1U), ActivationLayerInfo(), enable_fast_math));
159 }
160 else
161 {
162 const PadStrideInfo conv_info(1, 1, upsample_info.pad_left(), upsample_info.pad_right(), upsample_info.pad_top(), upsample_info.pad_bottom(), DimensionRoundingType::CEIL);
163 ARM_COMPUTE_RETURN_ON_ERROR(NEConvolutionLayer::validate(input, weights, bias, output, conv_info, WeightsInfo(), Size2D(1U, 1U), ActivationLayerInfo(), enable_fast_math));
164 }
Alex Gilday27c08ab2018-02-22 11:36:16 +0000165
166 return Status{};
167}
168
Annop Wongwathanarat11f7d7e2023-01-12 11:35:37 +0000169void NEDeconvolutionLayer::configure(ITensor *input, const ITensor *weights, const ITensor *bias, ITensor *output, const PadStrideInfo &info, bool enable_fast_math)
Pablo Tellof5f34bb2017-08-22 13:34:13 +0100170{
Michele Di Giorgio0c5191c2019-08-15 15:11:45 +0100171 // Perform validation step
Alex Gilday27c08ab2018-02-22 11:36:16 +0000172 ARM_COMPUTE_ERROR_ON_NULLPTR(input, weights, output);
Annop Wongwathanarat11f7d7e2023-01-12 11:35:37 +0000173 ARM_COMPUTE_ERROR_THROW_ON(NEDeconvolutionLayer::validate(input->info(), weights->info(), (bias == nullptr) ? nullptr : bias->info(), output->info(), info, enable_fast_math));
174 ARM_COMPUTE_LOG_PARAMS(input, weights, bias, output, info, enable_fast_math);
Manuel Bottinid25af672019-07-10 17:06:12 +0100175
Manuel Bottini6e10aa32020-04-30 13:28:23 +0100176 const DataLayout data_layout = input->info()->data_layout();
177 const unsigned int width_idx = get_data_layout_dimension_index(data_layout, DataLayoutDimension::WIDTH);
178 const unsigned int height_idx = get_data_layout_dimension_index(data_layout, DataLayoutDimension::HEIGHT);
179 auto out_dims = deconvolution_output_dimensions(input->info()->dimension(width_idx), input->info()->dimension(height_idx),
180 weights->info()->dimension(width_idx), weights->info()->dimension(height_idx), info);
181
182 const TensorShape output_shape = compute_deconvolution_output_shape(out_dims, *input->info(), *weights->info());
Pablo Tellof5f34bb2017-08-22 13:34:13 +0100183
Michele Di Giorgio061dd362018-10-17 17:10:27 +0100184 _input = input;
185 _original_weights = weights;
186 _info = info;
Michele Di Giorgio061dd362018-10-17 17:10:27 +0100187 _is_prepared = false;
Michalis Spyrou780db4e2017-11-23 09:49:51 +0000188
Manuel Bottini6e10aa32020-04-30 13:28:23 +0100189 const unsigned int stride_x = info.stride().first;
190 const unsigned int stride_y = info.stride().second;
Pablo Tellof5f34bb2017-08-22 13:34:13 +0100191
Michalis Spyrouafbc5ff2018-10-03 14:18:19 +0100192 // Output auto initialization if not yet initialized
193 auto_init_if_empty(*output->info(), output_shape, 1, input->info()->data_type(), input->info()->quantization_info());
194
Luca Foschianifedefc32020-02-17 17:02:49 +0000195 _flip_axis.allocator()->init(TensorInfo(TensorShape(2U), 1, DataType::U32));
Pablo Tellof5f34bb2017-08-22 13:34:13 +0100196
Manuel Bottini6e10aa32020-04-30 13:28:23 +0100197 _weights_flipped.allocator()->init(weights->info()->clone()->set_data_layout(data_layout));
198 _flip_weights.configure(weights, &_weights_flipped, &_flip_axis);
Michalis Spyrouafbc5ff2018-10-03 14:18:19 +0100199
Manuel Bottini6e10aa32020-04-30 13:28:23 +0100200 // setup the function to convolve the upscaled output
Manuel Bottini6e10aa32020-04-30 13:28:23 +0100201 uint32_t deconv_pad_x = 0;
202 uint32_t deconv_pad_y = 0;
Annop Wongwathanaratc4ed2fd2023-02-09 16:33:13 +0000203 const TensorShape scale_out_shape = compute_deconvolution_upsampled_shape(*input->info(), *weights->info(),
204 stride_x, stride_y,
205 out_dims, deconv_pad_x, deconv_pad_y);
206 const PadStrideInfo upsample_info = compute_upsample_info(info, deconv_pad_x, deconv_pad_y);
207
208 // Do not perform upsampling when the operation uses unit stride in all dimensions
209 _do_upsampling = stride_x != 1 || stride_y != 1;
Michalis Spyrou780db4e2017-11-23 09:49:51 +0000210
Luca Foschianifedefc32020-02-17 17:02:49 +0000211 // Setup flip axis data
212 _flip_axis.allocator()->allocate();
213 auto axis_data = reinterpret_cast<uint32_t *>(_flip_axis.buffer());
Manuel Bottini6e10aa32020-04-30 13:28:23 +0100214 axis_data[0] = static_cast<uint32_t>(width_idx);
215 axis_data[1] = static_cast<uint32_t>(height_idx);
216
Annop Wongwathanaratb609c932023-01-16 14:36:45 +0000217 // Setup convolution and upsampling, if needed
218 if (_do_upsampling)
219 {
220 _memory_group.manage(&_scaled_output);
Annop Wongwathanaratb609c932023-01-16 14:36:45 +0000221
Annop Wongwathanaratc4ed2fd2023-02-09 16:33:13 +0000222 const PadStrideInfo conv_info(1, 1, 0, 0, 0, 0, DimensionRoundingType::CEIL);
Annop Wongwathanaratb609c932023-01-16 14:36:45 +0000223 TensorInfo scale_out_info(scale_out_shape, 1, input->info()->data_type(), input->info()->quantization_info());
224 scale_out_info.set_data_layout(data_layout);
225 _scaled_output.allocator()->init(scale_out_info);
226
Annop Wongwathanaratc4ed2fd2023-02-09 16:33:13 +0000227 // Minor optimization: In the upsampling step, we do not need to allocate space for the padding in the upsampled image.
228 // The padding amount can be given as input to the convolution layer.
Annop Wongwathanaratb609c932023-01-16 14:36:45 +0000229 _upsample_f.configure(input, &_scaled_output, upsample_info);
230
231 _conv_f.configure(&_scaled_output, &_weights_flipped, bias, output, conv_info, WeightsInfo(), Size2D(1U, 1U), ActivationLayerInfo(), enable_fast_math);
232
233 _scaled_output.allocator()->allocate();
234 }
235 else
236 {
Annop Wongwathanaratc4ed2fd2023-02-09 16:33:13 +0000237 const PadStrideInfo conv_info(1, 1, upsample_info.pad_left(), upsample_info.pad_right(), upsample_info.pad_top(), upsample_info.pad_bottom(), DimensionRoundingType::CEIL);
Annop Wongwathanaratb609c932023-01-16 14:36:45 +0000238 _conv_f.configure(input, &_weights_flipped, bias, output, conv_info, WeightsInfo(), Size2D(1U, 1U), ActivationLayerInfo(), enable_fast_math);
239 }
Pablo Tellof5f34bb2017-08-22 13:34:13 +0100240}
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
Annop Wongwathanaratb609c932023-01-16 14:36:45 +0000248 if(_do_upsampling)
249 {
250 _upsample_f.run();
251 }
Georgios Pinitas056b5d92018-02-13 18:50:55 +0000252 _conv_f.run();
Georgios Pinitas72219332018-06-05 14:56:06 +0100253}
254
255void NEDeconvolutionLayer::prepare()
256{
257 if(!_is_prepared)
258 {
Michele Di Giorgio061dd362018-10-17 17:10:27 +0100259 ARM_COMPUTE_ERROR_ON(!_original_weights->is_used());
SiCong Liecb14272019-08-20 11:09:11 +0100260
261 // Run weights flipping and mark original weights tensor as unused
262 _weights_flipped.allocator()->allocate();
Luca Foschianifedefc32020-02-17 17:02:49 +0000263 _flip_weights.run();
Michele Di Giorgio061dd362018-10-17 17:10:27 +0100264 _original_weights->mark_as_unused();
265
266 // Prepare convolution
Georgios Pinitas72219332018-06-05 14:56:06 +0100267 _conv_f.prepare();
Michele Di Giorgio061dd362018-10-17 17:10:27 +0100268
Georgios Pinitas72219332018-06-05 14:56:06 +0100269 _is_prepared = true;
270 }
Michele Di Giorgioed5a4922018-09-13 16:22:01 +0100271}
Manuel Bottinic1b76fa2019-06-17 12:04:40 +0100272} // namespace arm_compute