blob: 0c59e2c86dfad5a3ff3f888fbc4321ea0e9df652 [file] [log] [blame]
Michalis Spyrou780db4e2017-11-23 09:49:51 +00001/*
Gunes Bayirec0113d2022-11-09 09:26:27 +00002 * Copyright (c) 2017-2022 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 */
Michalis Spyrouf4643372019-11-29 16:17:13 +000024#ifndef ARM_COMPUTE_CLDECONVOLUTIONLAYER_H
25#define ARM_COMPUTE_CLDECONVOLUTIONLAYER_H
Michalis Spyrou780db4e2017-11-23 09:49:51 +000026
giuros014a8ec802019-03-18 13:25:05 +000027#include "arm_compute/runtime/CL/functions/CLDirectDeconvolutionLayer.h"
giuros0146a49a02019-04-01 13:50:22 +010028#include "arm_compute/runtime/CL/functions/CLGEMMDeconvolutionLayer.h"
Michalis Spyrou780db4e2017-11-23 09:49:51 +000029#include "arm_compute/runtime/IFunction.h"
30#include "arm_compute/runtime/IMemoryManager.h"
31
32#include <memory>
33
34namespace arm_compute
35{
giuros014a8ec802019-03-18 13:25:05 +000036/** Basic function to compute the deconvolution layer. This function calls the following OpenCL kernels/functions:
Michalis Spyrou780db4e2017-11-23 09:49:51 +000037 *
giuros0146a49a02019-04-01 13:50:22 +010038 * -# @ref CLGEMMDeconvolutionLayer
giuros014a8ec802019-03-18 13:25:05 +000039 * -# @ref CLDirectDeconvolutionLayer
Michalis Spyrou780db4e2017-11-23 09:49:51 +000040 */
41class CLDeconvolutionLayer : public IFunction
42{
43public:
giuros014a8ec802019-03-18 13:25:05 +000044 /** Default constructor */
Michalis Spyrou780db4e2017-11-23 09:49:51 +000045 CLDeconvolutionLayer(std::shared_ptr<IMemoryManager> memory_manager = nullptr);
giuros014a8ec802019-03-18 13:25:05 +000046
Gunes Bayirec0113d2022-11-09 09:26:27 +000047 ~CLDeconvolutionLayer();
48
Michalis Spyrou780db4e2017-11-23 09:49:51 +000049 /** Set the input, weights, biases and output tensors.
50 *
Teresa Charlin62687422021-04-28 10:58:49 +010051 * Valid data layouts:
52 * - NHWC
53 * - NCHW
54 *
55 * Valid data type configurations:
56 * |src0 |src1 |src2 |dst |
57 * |:--------------|:------------------|:------|:--------------|
58 * |F16 |F16 |F16 |F16 |
59 * |F32 |F32 |F32 |F32 |
60 * |QASYMM8 |QASYMM8 |S32 |QASYMM8 |
61 * |QASYMM8 |QSYMM8_PER_CHANNEL |S32 |QASYMM8 |
62 * |QASYMM8_SIGNED |QASYMM8_SIGNED |S32 |QASYMM8_SIGNED |
63 * |QASYMM8_SIGNED |QSYMM8_PER_CHANNEL |S32 |QASYMM8_SIGNED |
64 *
Sheri Zhanga14817a2020-02-26 10:30:15 +000065 * @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_SIGNED/QASYMM8/F16/F32.
Freddie Liardete92b0452021-04-22 14:55:17 +010066 * @param[in] weights The 4d weights with dimensions [width, height, IFM, OFM]. Data type supported: Same as @p input or QSYMM8_PER_CHANNEL if @p input is QASYMM8/QASYMM8_SIGNED.
67 * @param[in] bias (Optional) The biases have one dimension. Data type supported: Should match @p input data type, except for input of QASYMM8 and QASYMM8_SIGNED type where biases should be of S32 type
giuros01a69a88b2019-01-31 16:29:19 +000068 * @param[out] output Output tensor. 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.
Manuel Bottinid87aded2021-07-16 10:23:31 +010070 * @param[in] weights_info (Optional) Weights information needed for @ref CLConvolutionLayer, specifies if the weights tensor has been reshaped with @ref opencl::kernels::ClWeightsReshapeKernel.
giuros01a69a88b2019-01-31 16:29:19 +000071 *
72 */
giuros014a8ec802019-03-18 13:25:05 +000073 void configure(ICLTensor *input, ICLTensor *weights, const ICLTensor *bias, ICLTensor *output, const PadStrideInfo &deconv_info, const WeightsInfo &weights_info = WeightsInfo());
Manuel Bottini2b84be52020-04-08 10:15:51 +010074 /** Set the input, weights, biases and output tensors.
75 *
76 * @param[in] compile_context The compile context to be used.
77 * @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_SIGNED/QASYMM8/F16/F32.
Freddie Liardete92b0452021-04-22 14:55:17 +010078 * @param[in] weights The 4d weights with dimensions [width, height, IFM, OFM]. Data type supported: Same as @p input or QSYMM8_PER_CHANNEL if @p input is QASYMM8/QASYMM8_SIGNED.
79 * @param[in] bias (Optional) The biases have one dimension. Data type supported: Should match @p input data type, except for input of QASYMM8 and QASYMM8_SIGNED type where biases should be of S32 type
Manuel Bottini2b84be52020-04-08 10:15:51 +010080 * @param[out] output Output tensor. The output has the same number of dimensions as the @p input.
81 * @param[in] deconv_info Contains padding and policies to be used in the deconvolution, this is described in @ref PadStrideInfo.
Manuel Bottinid87aded2021-07-16 10:23:31 +010082 * @param[in] weights_info (Optional) Weights information needed for @ref CLConvolutionLayer, specifies if the weights tensor has been reshaped with @ref opencl::kernels::ClWeightsReshapeKernel.
Manuel Bottini2b84be52020-04-08 10:15:51 +010083 *
84 */
85 void configure(const CLCompileContext &compile_context, ICLTensor *input, ICLTensor *weights, const ICLTensor *bias, ICLTensor *output, const PadStrideInfo &deconv_info,
86 const WeightsInfo &weights_info = WeightsInfo());
giuros01a69a88b2019-01-31 16:29:19 +000087 /** Static function to check if given info will lead to a valid configuration of @ref CLDeconvolutionLayer
88 *
Sheri Zhanga14817a2020-02-26 10:30:15 +000089 * @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_SIGNED/QASYMM8/F16/F32.
Freddie Liardete92b0452021-04-22 14:55:17 +010090 * @param[in] weights The 4d weights info with dimensions [width, height, IFM, OFM]. Data type supported: Same as @p input or QSYMM8_PER_CHANNEL if @p input is QASYMM8/QASYMM8_SIGNED.
91 * @param[in] bias (Optional) The biases have one dimension. Data type supported: Should match @p input data type, except for input of QASYMM8 and QASYMM8_SIGNED type where biases should be of S32 type
giuros01a69a88b2019-01-31 16:29:19 +000092 * @param[in] output Output tensor info. The output has the same number of dimensions as the @p input.
giuros014a8ec802019-03-18 13:25:05 +000093 * @param[in] deconv_info Contains padding and policies to be used in the deconvolution, this is described in @ref PadStrideInfo.
Manuel Bottinid87aded2021-07-16 10:23:31 +010094 * @param[in] weights_info (Optional) Weights information needed for @ref CLConvolutionLayer, specifies if the weights tensor has been reshaped with @ref opencl::kernels::ClWeightsReshapeKernel.
giuros01a69a88b2019-01-31 16:29:19 +000095 *
96 * @return a status
97 */
giuros014a8ec802019-03-18 13:25:05 +000098 static Status validate(const ITensorInfo *input, const ITensorInfo *weights, const ITensorInfo *bias, ITensorInfo *output, const PadStrideInfo &deconv_info,
99 const WeightsInfo &weights_info = WeightsInfo());
giuros01a69a88b2019-01-31 16:29:19 +0000100
giuros0146a49a02019-04-01 13:50:22 +0100101 static DeconvolutionMethod get_deconvolution_method(const ITensorInfo *input, const ITensorInfo *weights, const ITensorInfo *bias, ITensorInfo *output, const PadStrideInfo &deconv_info,
102 const WeightsInfo &weights_info);
Michalis Spyrou780db4e2017-11-23 09:49:51 +0000103 // Inherited methods overridden:
104 void run() override;
Georgios Pinitas72219332018-06-05 14:56:06 +0100105 void prepare() override;
Michalis Spyrou780db4e2017-11-23 09:49:51 +0000106
107private:
giuros014a8ec802019-03-18 13:25:05 +0000108 std::shared_ptr<IMemoryManager> _memory_manager;
109 std::unique_ptr<IFunction> _function;
Gunes Bayirec0113d2022-11-09 09:26:27 +0000110
111 struct Impl;
112 std::unique_ptr<Impl> _impl;
Michalis Spyrou780db4e2017-11-23 09:49:51 +0000113};
giuros0146a49a02019-04-01 13:50:22 +0100114} // namespace arm_compute
Michalis Spyrouf4643372019-11-29 16:17:13 +0000115#endif /* ARM_COMPUTE_CLDECONVOLUTIONLAYER_H */