blob: b613708c5014fc542be6ceeb1ac41098c4d77ad7 [file] [log] [blame]
Michalis Spyrou780db4e2017-11-23 09:49:51 +00001/*
giuros01a69a88b2019-01-31 16:29:19 +00002 * Copyright (c) 2017-2019 ARM Limited.
Michalis Spyrou780db4e2017-11-23 09:49:51 +00003 *
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#ifndef __ARM_COMPUTE_CLDECONVOLUTIONLAYER_H__
25#define __ARM_COMPUTE_CLDECONVOLUTIONLAYER_H__
26
giuros014a8ec802019-03-18 13:25:05 +000027#include "arm_compute/runtime/CL/functions/CLDirectDeconvolutionLayer.h"
Michalis Spyrou780db4e2017-11-23 09:49:51 +000028#include "arm_compute/runtime/IFunction.h"
29#include "arm_compute/runtime/IMemoryManager.h"
30
31#include <memory>
32
33namespace arm_compute
34{
giuros014a8ec802019-03-18 13:25:05 +000035/** Basic function to compute the deconvolution layer. This function calls the following OpenCL kernels/functions:
Michalis Spyrou780db4e2017-11-23 09:49:51 +000036 *
giuros014a8ec802019-03-18 13:25:05 +000037 * -# @ref CLDirectDeconvolutionLayer
Michalis Spyrou780db4e2017-11-23 09:49:51 +000038 */
39class CLDeconvolutionLayer : public IFunction
40{
41public:
giuros014a8ec802019-03-18 13:25:05 +000042 /** Default constructor */
Michalis Spyrou780db4e2017-11-23 09:49:51 +000043 CLDeconvolutionLayer(std::shared_ptr<IMemoryManager> memory_manager = nullptr);
giuros014a8ec802019-03-18 13:25:05 +000044
Michalis Spyrou780db4e2017-11-23 09:49:51 +000045 /** Set the input, weights, biases and output tensors.
46 *
Manuel Bottini581c8982019-02-07 10:31:57 +000047 * @deprecated This method is deprecated and will be removed in release 19.05
giuros01a69a88b2019-01-31 16:29:19 +000048 *
Michele Di Giorgio9fef38a2018-07-06 18:06:58 +010049 * @param[in,out] input Input tensor. 3 lower dimensions represent a single input, and an optional 4th dimension for batch of inputs. Data types supported: QASYMM8/F16/F32.
Michalis Spyroua8ca2b02018-04-04 11:03:51 +010050 * @param[in] weights The 4d weights with dimensions [width, height, IFM, OFM]. Data type supported: Same as @p input.
Michalis Spyrou780db4e2017-11-23 09:49:51 +000051 * @param[in] bias (Optional) The biases have one dimension. Data type supported: Same as @p input.
52 * @param[out] output Output tensor. The output has the same number of dimensions as the @p input.
giuros014a8ec802019-03-18 13:25:05 +000053 * @param[in] deconv_info Contains padding and policies to be used in the deconvolution, this is described in @ref PadStrideInfo.
Michalis Spyrou780db4e2017-11-23 09:49:51 +000054 * @param[in] inner_border_right The number of zeros added to right edge of the input.
55 * @param[in] inner_border_top The number of zeros added to top edge of the input.
Michele Di Giorgio70ba7d62018-06-06 17:03:36 +010056 * @param[in] weights_info (Optional) Weights information needed for @ref CLConvolutionLayer, specifies if the weights tensor has been reshaped with @ref CLWeightsReshapeKernel.
Michalis Spyrou780db4e2017-11-23 09:49:51 +000057 *
58 */
giuros014a8ec802019-03-18 13:25:05 +000059 void configure(ICLTensor *input, ICLTensor *weights, const ICLTensor *bias, ICLTensor *output, const PadStrideInfo &deconv_info,
Michele Di Giorgio70ba7d62018-06-06 17:03:36 +010060 unsigned int inner_border_right, unsigned int inner_border_top, const WeightsInfo &weights_info = WeightsInfo());
Michalis Spyrou780db4e2017-11-23 09:49:51 +000061 /** Static function to check if given info will lead to a valid configuration of @ref CLDeconvolutionLayer
62 *
Manuel Bottini581c8982019-02-07 10:31:57 +000063 * @deprecated This method is deprecated and will be removed in release 19.05
giuros01a69a88b2019-01-31 16:29:19 +000064 *
Michele Di Giorgio9fef38a2018-07-06 18:06:58 +010065 * @param[in] input Input tensor info. 3 lower dimensions represent a single input, and an optional 4th dimension for batch of inputs. Data types supported: QASYMM8/F16/F32.
Michalis Spyroua8ca2b02018-04-04 11:03:51 +010066 * @param[in] weights The 4d weights info with dimensions [width, height, IFM, OFM]. Data type supported: Same as @p input.
Michalis Spyrou780db4e2017-11-23 09:49:51 +000067 * @param[in] bias (Optional) The biases have one dimension. Data type supported: Same as @p input.
68 * @param[in] output Output tensor info. The output has the same number of dimensions as the @p input.
giuros014a8ec802019-03-18 13:25:05 +000069 * @param[in] deconv_info Contains padding and policies to be used in the deconvolution, this is described in @ref PadStrideInfo.
Michalis Spyrou780db4e2017-11-23 09:49:51 +000070 * @param[in] inner_border_right The number of zeros added to right edge of the input.
71 * @param[in] inner_border_top The number of zeros added to top edge of the input.
Michele Di Giorgio70ba7d62018-06-06 17:03:36 +010072 * @param[in] weights_info (Optional) Weights information needed for @ref CLConvolutionLayer, specifies if the weights tensor has been reshaped with @ref CLWeightsReshapeKernel.
Michalis Spyrou780db4e2017-11-23 09:49:51 +000073 *
74 * @return a status
75 */
giuros014a8ec802019-03-18 13:25:05 +000076 static Status validate(const ITensorInfo *input, const ITensorInfo *weights, const ITensorInfo *bias, ITensorInfo *output, const PadStrideInfo &deconv_info,
Michele Di Giorgio70ba7d62018-06-06 17:03:36 +010077 unsigned int inner_border_right, unsigned int inner_border_top, const WeightsInfo &weights_info = WeightsInfo());
Michalis Spyrou780db4e2017-11-23 09:49:51 +000078
giuros01a69a88b2019-01-31 16:29:19 +000079 /** Set the input, weights, biases and output tensors.
80 *
81 * @param[in,out] input Input tensor. 3 lower dimensions represent a single input, and an optional 4th dimension for batch of inputs. Data types supported: QASYMM8/F16/F32.
82 * @param[in] weights The 4d weights with dimensions [width, height, IFM, OFM]. Data type supported: Same as @p input.
83 * @param[in] bias (Optional) The biases have one dimension. Data type supported: Same as @p input.
84 * @param[out] output Output tensor. The output has the same number of dimensions as the @p input.
giuros014a8ec802019-03-18 13:25:05 +000085 * @param[in] deconv_info Contains padding and policies to be used in the deconvolution, this is described in @ref PadStrideInfo.
giuros01a69a88b2019-01-31 16:29:19 +000086 * @param[in] weights_info (Optional) Weights information needed for @ref CLConvolutionLayer, specifies if the weights tensor has been reshaped with @ref CLWeightsReshapeKernel.
87 *
88 */
giuros014a8ec802019-03-18 13:25:05 +000089 void configure(ICLTensor *input, ICLTensor *weights, const ICLTensor *bias, ICLTensor *output, const PadStrideInfo &deconv_info, const WeightsInfo &weights_info = WeightsInfo());
giuros01a69a88b2019-01-31 16:29:19 +000090 /** Static function to check if given info will lead to a valid configuration of @ref CLDeconvolutionLayer
91 *
92 * @param[in] input Input tensor info. 3 lower dimensions represent a single input, and an optional 4th dimension for batch of inputs. Data types supported: QASYMM8/F16/F32.
93 * @param[in] weights The 4d weights info with dimensions [width, height, IFM, OFM]. Data type supported: Same as @p input.
94 * @param[in] bias (Optional) The biases have one dimension. Data type supported: Same as @p input.
95 * @param[in] output Output tensor info. The output has the same number of dimensions as the @p input.
giuros014a8ec802019-03-18 13:25:05 +000096 * @param[in] deconv_info Contains padding and policies to be used in the deconvolution, this is described in @ref PadStrideInfo.
giuros01a69a88b2019-01-31 16:29:19 +000097 * @param[in] weights_info (Optional) Weights information needed for @ref CLConvolutionLayer, specifies if the weights tensor has been reshaped with @ref CLWeightsReshapeKernel.
98 *
99 * @return a status
100 */
giuros014a8ec802019-03-18 13:25:05 +0000101 static Status validate(const ITensorInfo *input, const ITensorInfo *weights, const ITensorInfo *bias, ITensorInfo *output, const PadStrideInfo &deconv_info,
102 const WeightsInfo &weights_info = WeightsInfo());
giuros01a69a88b2019-01-31 16:29:19 +0000103
Michalis Spyrou780db4e2017-11-23 09:49:51 +0000104 // Inherited methods overridden:
105 void run() override;
Georgios Pinitas72219332018-06-05 14:56:06 +0100106 void prepare() override;
Michalis Spyrou780db4e2017-11-23 09:49:51 +0000107
108private:
giuros014a8ec802019-03-18 13:25:05 +0000109 std::shared_ptr<IMemoryManager> _memory_manager;
110 std::unique_ptr<IFunction> _function;
Michalis Spyrou780db4e2017-11-23 09:49:51 +0000111};
112}
Michele Di Giorgio70ba7d62018-06-06 17:03:36 +0100113#endif /* __ARM_COMPUTE_CLDECONVOLUTIONLAYER_H__ */