blob: 8c46bc26cc7bd6562920ee8b248b179a02e16064 [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 */
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
Michalis Spyrou780db4e2017-11-23 09:49:51 +000047 /** Set the input, weights, biases and output tensors.
48 *
giuros01a69a88b2019-01-31 16:29:19 +000049 * @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.
50 * @param[in] weights The 4d weights with dimensions [width, height, IFM, OFM]. Data type supported: Same as @p input.
51 * @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.
giuros01a69a88b2019-01-31 16:29:19 +000054 * @param[in] weights_info (Optional) Weights information needed for @ref CLConvolutionLayer, specifies if the weights tensor has been reshaped with @ref CLWeightsReshapeKernel.
55 *
56 */
giuros014a8ec802019-03-18 13:25:05 +000057 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 +000058 /** Static function to check if given info will lead to a valid configuration of @ref CLDeconvolutionLayer
59 *
60 * @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.
61 * @param[in] weights The 4d weights info with dimensions [width, height, IFM, OFM]. Data type supported: Same as @p input.
62 * @param[in] bias (Optional) The biases have one dimension. Data type supported: Same as @p input.
63 * @param[in] output Output tensor info. The output has the same number of dimensions as the @p input.
giuros014a8ec802019-03-18 13:25:05 +000064 * @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 +000065 * @param[in] weights_info (Optional) Weights information needed for @ref CLConvolutionLayer, specifies if the weights tensor has been reshaped with @ref CLWeightsReshapeKernel.
66 *
67 * @return a status
68 */
giuros014a8ec802019-03-18 13:25:05 +000069 static Status validate(const ITensorInfo *input, const ITensorInfo *weights, const ITensorInfo *bias, ITensorInfo *output, const PadStrideInfo &deconv_info,
70 const WeightsInfo &weights_info = WeightsInfo());
giuros01a69a88b2019-01-31 16:29:19 +000071
giuros0146a49a02019-04-01 13:50:22 +010072 static DeconvolutionMethod get_deconvolution_method(const ITensorInfo *input, const ITensorInfo *weights, const ITensorInfo *bias, ITensorInfo *output, const PadStrideInfo &deconv_info,
73 const WeightsInfo &weights_info);
Michalis Spyrou780db4e2017-11-23 09:49:51 +000074 // Inherited methods overridden:
75 void run() override;
Georgios Pinitas72219332018-06-05 14:56:06 +010076 void prepare() override;
Michalis Spyrou780db4e2017-11-23 09:49:51 +000077
78private:
giuros014a8ec802019-03-18 13:25:05 +000079 std::shared_ptr<IMemoryManager> _memory_manager;
80 std::unique_ptr<IFunction> _function;
Michalis Spyrou780db4e2017-11-23 09:49:51 +000081};
giuros0146a49a02019-04-01 13:50:22 +010082} // namespace arm_compute
Michalis Spyrouf4643372019-11-29 16:17:13 +000083#endif /* ARM_COMPUTE_CLDECONVOLUTIONLAYER_H */