Anthony Barbier | f45d5a9 | 2018-01-24 16:23:15 +0000 | [diff] [blame] | 1 | /* |
Anthony Barbier | 06ea048 | 2018-02-22 15:45:35 +0000 | [diff] [blame] | 2 | * Copyright (c) 2017-2018 ARM Limited. |
Anthony Barbier | f45d5a9 | 2018-01-24 16:23:15 +0000 | [diff] [blame] | 3 | * |
| 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/CL/functions/CLDeconvolutionLayer.h" |
| 25 | |
| 26 | #include "arm_compute/core/Helpers.h" |
| 27 | #include "arm_compute/core/Utils.h" |
| 28 | #include "arm_compute/core/Validate.h" |
| 29 | #include "arm_compute/core/utils/misc/ShapeCalculator.h" |
| 30 | |
| 31 | #include <memory> |
| 32 | #include <tuple> |
| 33 | |
| 34 | using namespace arm_compute; |
| 35 | using namespace arm_compute::misc::shape_calculator; |
| 36 | |
| 37 | CLDeconvolutionLayer::CLDeconvolutionLayer(std::shared_ptr<IMemoryManager> memory_manager) // NOLINT |
| 38 | : _memory_group(std::move(memory_manager)), |
| 39 | _scale_f(), |
| 40 | _conv_f(), |
Jenkins | 52ba29e | 2018-08-29 15:32:11 +0000 | [diff] [blame^] | 41 | _scaled_output(), |
| 42 | _is_prepared(false) |
Anthony Barbier | f45d5a9 | 2018-01-24 16:23:15 +0000 | [diff] [blame] | 43 | { |
| 44 | } |
| 45 | |
| 46 | Status CLDeconvolutionLayer::validate(const ITensorInfo *input, const ITensorInfo *weights, const ITensorInfo *bias, ITensorInfo *output, const PadStrideInfo &info, |
Jenkins | 52ba29e | 2018-08-29 15:32:11 +0000 | [diff] [blame^] | 47 | unsigned int inner_border_right, unsigned int inner_border_top, const WeightsInfo &weights_info) |
Anthony Barbier | f45d5a9 | 2018-01-24 16:23:15 +0000 | [diff] [blame] | 48 | { |
| 49 | ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(input, weights, output); |
Jenkins | 52ba29e | 2018-08-29 15:32:11 +0000 | [diff] [blame^] | 50 | ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input, 1, DataType::F16, DataType::F32); |
Anthony Barbier | f45d5a9 | 2018-01-24 16:23:15 +0000 | [diff] [blame] | 51 | ARM_COMPUTE_RETURN_ERROR_ON(weights->dimension(0) != weights->dimension(1)); |
| 52 | ARM_COMPUTE_RETURN_ERROR_ON(weights->dimension(0) < 1); |
Anthony Barbier | 06ea048 | 2018-02-22 15:45:35 +0000 | [diff] [blame] | 53 | ARM_COMPUTE_RETURN_ERROR_ON(!info.padding_is_symmetric()); |
Anthony Barbier | f45d5a9 | 2018-01-24 16:23:15 +0000 | [diff] [blame] | 54 | |
| 55 | const unsigned int stride_x = info.stride().first; |
| 56 | const unsigned int stride_y = info.stride().second; |
| 57 | |
| 58 | ARM_COMPUTE_RETURN_ERROR_ON_MSG(inner_border_right > stride_x - 1, "inner_border_right must be smaller than stride_x"); |
| 59 | ARM_COMPUTE_RETURN_ERROR_ON_MSG(inner_border_top > stride_y - 1, "inner_border_top must be smaller than stride_y"); |
| 60 | |
| 61 | auto out_dims = deconvolution_output_dimensions(input->dimension(0), input->dimension(1), weights->dimension(0), weights->dimension(1), |
| 62 | info.pad().first, info.pad().second, inner_border_right, inner_border_top, stride_x, stride_y); |
| 63 | |
| 64 | const TensorShape output_shape = deconvolution_output_shape(out_dims, input->tensor_shape(), weights->tensor_shape()); |
| 65 | |
wr0112358 | 67c8c91 | 2018-05-14 10:13:56 +0200 | [diff] [blame] | 66 | ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input, output, weights); |
Anthony Barbier | f45d5a9 | 2018-01-24 16:23:15 +0000 | [diff] [blame] | 67 | |
| 68 | if(bias != nullptr) |
| 69 | { |
| 70 | ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input, bias); |
Anthony Barbier | f45d5a9 | 2018-01-24 16:23:15 +0000 | [diff] [blame] | 71 | } |
| 72 | |
| 73 | ARM_COMPUTE_RETURN_ERROR_ON_MSG(output->dimension(Window::DimX) != output_shape.x(), "Output's width is invalid."); |
| 74 | ARM_COMPUTE_RETURN_ERROR_ON_MSG(output->dimension(Window::DimY) != output_shape.y(), "Output's height is invalid."); |
| 75 | ARM_COMPUTE_RETURN_ERROR_ON_MSG(output->dimension(Window::DimZ) != output_shape.z(), "Output's depth is invalid."); |
| 76 | |
| 77 | TensorInfo scale_out_info(input->clone()->set_is_resizable(true).reset_padding().set_tensor_shape(compute_deconvolution_shape(*input, stride_x, stride_y, inner_border_right, inner_border_top, |
| 78 | info))); |
| 79 | const PadStrideInfo conv_info(1, 1, 0, 0, 0, 0, DimensionRoundingType::CEIL); |
| 80 | |
| 81 | ARM_COMPUTE_RETURN_ON_ERROR(CLDeconvolutionLayerUpsample::validate(input, &scale_out_info, BorderSize(inner_border_right, inner_border_top), info)); |
Jenkins | 52ba29e | 2018-08-29 15:32:11 +0000 | [diff] [blame^] | 82 | ARM_COMPUTE_RETURN_ON_ERROR(CLConvolutionLayer::validate(&scale_out_info, weights, bias, output, conv_info, weights_info)); |
Anthony Barbier | f45d5a9 | 2018-01-24 16:23:15 +0000 | [diff] [blame] | 83 | |
| 84 | return Status{}; |
| 85 | } |
| 86 | |
| 87 | void CLDeconvolutionLayer::configure(ICLTensor *input, const ICLTensor *weights, const ICLTensor *bias, ICLTensor *output, const PadStrideInfo &info, |
Jenkins | 52ba29e | 2018-08-29 15:32:11 +0000 | [diff] [blame^] | 88 | unsigned int inner_border_right, unsigned int inner_border_top, const WeightsInfo &weights_info) |
Anthony Barbier | f45d5a9 | 2018-01-24 16:23:15 +0000 | [diff] [blame] | 89 | { |
| 90 | ARM_COMPUTE_ERROR_ON_NULLPTR(input, weights, output); |
| 91 | |
| 92 | const unsigned int stride_x = info.stride().first; |
| 93 | const unsigned int stride_y = info.stride().second; |
| 94 | |
| 95 | auto out_dims = deconvolution_output_dimensions(input->info()->dimension(0), input->info()->dimension(1), weights->info()->dimension(0), weights->info()->dimension(1), |
Jenkins | 52ba29e | 2018-08-29 15:32:11 +0000 | [diff] [blame^] | 96 | info.pad().first, info.pad().second, inner_border_right, inner_border_top, stride_x, stride_y); |
Anthony Barbier | f45d5a9 | 2018-01-24 16:23:15 +0000 | [diff] [blame] | 97 | |
| 98 | const TensorShape output_shape = deconvolution_output_shape(out_dims, input->info()->tensor_shape(), weights->info()->tensor_shape()); |
| 99 | |
| 100 | // Output auto initialization if not yet initialized |
Jenkins | 52ba29e | 2018-08-29 15:32:11 +0000 | [diff] [blame^] | 101 | auto_init_if_empty(*output->info(), output_shape, 1, input->info()->data_type()); |
Anthony Barbier | f45d5a9 | 2018-01-24 16:23:15 +0000 | [diff] [blame] | 102 | |
| 103 | // Perform validation step |
| 104 | ARM_COMPUTE_ERROR_THROW_ON(CLDeconvolutionLayer::validate(input->info(), weights->info(), bias == nullptr ? nullptr : bias->info(), output->info(), info, inner_border_right, inner_border_top)); |
| 105 | |
Jenkins | 52ba29e | 2018-08-29 15:32:11 +0000 | [diff] [blame^] | 106 | _is_prepared = false; |
| 107 | |
Anthony Barbier | f45d5a9 | 2018-01-24 16:23:15 +0000 | [diff] [blame] | 108 | _memory_group.manage(&_scaled_output); |
| 109 | |
| 110 | // configure scale function |
| 111 | // Init and allocate intermmidiate tensor for output, same size as input but the first two axis are the same as the output tensor |
| 112 | TensorShape scale_out_shape(input->info()->tensor_shape()); |
| 113 | const unsigned int out_x = input->info()->dimension(0) + (input->info()->dimension(0) - 1) * (stride_x - 1) + inner_border_right + 2 * info.pad().first; |
| 114 | const unsigned int out_y = input->info()->dimension(1) + (input->info()->dimension(1) - 1) * (stride_y - 1) + inner_border_top + 2 * info.pad().second; |
| 115 | scale_out_shape.set(0, out_x); |
| 116 | scale_out_shape.set(1, out_y); |
Jenkins | 52ba29e | 2018-08-29 15:32:11 +0000 | [diff] [blame^] | 117 | TensorInfo scale_out_info(scale_out_shape, 1, input->info()->data_type()); |
Anthony Barbier | f45d5a9 | 2018-01-24 16:23:15 +0000 | [diff] [blame] | 118 | _scaled_output.allocator()->init(scale_out_info); |
| 119 | |
| 120 | _scale_f.configure(input, &_scaled_output, BorderSize(inner_border_top, inner_border_right), info); |
| 121 | |
| 122 | // setup the function to convolve the upscaled output |
| 123 | const PadStrideInfo conv_info(1, 1, 0, 0, 0, 0, DimensionRoundingType::CEIL); |
Jenkins | 52ba29e | 2018-08-29 15:32:11 +0000 | [diff] [blame^] | 124 | _conv_f.configure(&_scaled_output, weights, bias, output, conv_info, weights_info); |
Anthony Barbier | f45d5a9 | 2018-01-24 16:23:15 +0000 | [diff] [blame] | 125 | _scaled_output.allocator()->allocate(); |
| 126 | } |
| 127 | |
| 128 | void CLDeconvolutionLayer::run() |
| 129 | { |
Jenkins | 52ba29e | 2018-08-29 15:32:11 +0000 | [diff] [blame^] | 130 | prepare(); |
| 131 | |
Anthony Barbier | f45d5a9 | 2018-01-24 16:23:15 +0000 | [diff] [blame] | 132 | _memory_group.acquire(); |
Jenkins | 52ba29e | 2018-08-29 15:32:11 +0000 | [diff] [blame^] | 133 | |
Anthony Barbier | f45d5a9 | 2018-01-24 16:23:15 +0000 | [diff] [blame] | 134 | _scale_f.run(); |
| 135 | _conv_f.run(); |
Jenkins | 52ba29e | 2018-08-29 15:32:11 +0000 | [diff] [blame^] | 136 | |
Anthony Barbier | f45d5a9 | 2018-01-24 16:23:15 +0000 | [diff] [blame] | 137 | _memory_group.release(); |
| 138 | } |
Jenkins | 52ba29e | 2018-08-29 15:32:11 +0000 | [diff] [blame^] | 139 | |
| 140 | void CLDeconvolutionLayer::prepare() |
| 141 | { |
| 142 | if(!_is_prepared) |
| 143 | { |
| 144 | _conv_f.prepare(); |
| 145 | _is_prepared = true; |
| 146 | } |
| 147 | } |