blob: 344ebd0afbe4489fe87138fb7990020ce46c0686 [file] [log] [blame]
Michalis Spyrou780db4e2017-11-23 09:49:51 +00001/*
Sheri Zhang7e20e292021-02-02 11:49:34 +00002 * Copyright (c) 2017-2021 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_CLDECONVOLUTIONLAYERUPSAMPLE_H
25#define ARM_COMPUTE_CLDECONVOLUTIONLAYERUPSAMPLE_H
Michalis Spyrou780db4e2017-11-23 09:49:51 +000026
Michalis Spyrou780db4e2017-11-23 09:49:51 +000027#include "arm_compute/core/Types.h"
Sheri Zhang7e20e292021-02-02 11:49:34 +000028#include "arm_compute/runtime/CL/functions/CLFill.h"
Sang-Hoon Parkbef7fa22020-10-21 15:58:54 +010029#include "arm_compute/runtime/IFunction.h"
30
31#include <memory>
Michalis Spyrou780db4e2017-11-23 09:49:51 +000032
33namespace arm_compute
34{
Georgios Pinitasdbfc2dc2019-04-02 12:51:21 +010035// Forward declarations
Sang-Hoon Parkbef7fa22020-10-21 15:58:54 +010036class CLDeconvolutionLayerUpsampleKernel;
37class CLCompileContext;
Michalis Spyrou780db4e2017-11-23 09:49:51 +000038class ICLTensor;
Sang-Hoon Parkbef7fa22020-10-21 15:58:54 +010039class ITensorInfo;
Michalis Spyrou780db4e2017-11-23 09:49:51 +000040
Georgios Pinitasdbfc2dc2019-04-02 12:51:21 +010041/** Basic function to execute deconvolution upsample on OpenCL. This function calls the following OpenCL kernels and functions:
42 *
Sheri Zhang7e20e292021-02-02 11:49:34 +000043 * -# @ref CLFill
Georgios Pinitasdbfc2dc2019-04-02 12:51:21 +010044 * -# @ref CLDeconvolutionLayerUpsampleKernel
45 */
Michalis Spyrou780db4e2017-11-23 09:49:51 +000046class CLDeconvolutionLayerUpsample : public IFunction
47{
48public:
49 /** Default constructor */
50 CLDeconvolutionLayerUpsample();
51 /** Prevent instances of this class from being copied (As this class contains pointers) */
52 CLDeconvolutionLayerUpsample(const CLDeconvolutionLayerUpsample &) = delete;
53 /** Prevent instances of this class from being copied (As this class contains pointers) */
54 CLDeconvolutionLayerUpsample &operator=(const CLDeconvolutionLayerUpsample &) = delete;
55 /** Allow instances of this class to be moved */
56 CLDeconvolutionLayerUpsample(CLDeconvolutionLayerUpsample &&) = default;
57 /** Allow instances of this class to be moved */
58 CLDeconvolutionLayerUpsample &operator=(CLDeconvolutionLayerUpsample &&) = default;
59 /** Default destructor */
Sang-Hoon Parkbef7fa22020-10-21 15:58:54 +010060 ~CLDeconvolutionLayerUpsample();
Michalis Spyrou780db4e2017-11-23 09:49:51 +000061
62 /** Initialize the function's source, destination, interpolation type and border_mode.
63 *
Sheri Zhang6124ce62021-05-04 14:03:13 +010064 * Valid data layouts:
65 * - NHWC
66 * - NCHW
67 *
68 * Valid data type configurations:
69 * |src |dst |
70 * |:--------------|:--------------|
71 * |All |All |
72 *
Michele Di Giorgiocbbed282019-12-20 13:26:08 +000073 * @param[in, out] input Source tensor. Data type supported: All.
Manuel Bottinic1b76fa2019-06-17 12:04:40 +010074 * @param[out] output Destination tensor. Data type supported: same as @p input.
75 * @param[in] info Contains padding and policies to be used in the deconvolution.
Michalis Spyrou780db4e2017-11-23 09:49:51 +000076 */
Manuel Bottinic1b76fa2019-06-17 12:04:40 +010077 void configure(ICLTensor *input, ICLTensor *output, const PadStrideInfo &info);
Manuel Bottini2b84be52020-04-08 10:15:51 +010078 /** Initialize the function's source, destination, interpolation type and border_mode.
79 *
80 * @param[in] compile_context The compile context to be used.
81 * @param[in, out] input Source tensor. Data type supported: All.
82 * @param[out] output Destination tensor. Data type supported: same as @p input.
83 * @param[in] info Contains padding and policies to be used in the deconvolution.
84 */
85 void configure(const CLCompileContext &compile_context, ICLTensor *input, ICLTensor *output, const PadStrideInfo &info);
Michalis Spyrou780db4e2017-11-23 09:49:51 +000086 /** Static function to check if given info will lead to a valid configuration of @ref CLDeconvolutionLayerUpsample
87 *
Michele Di Giorgiocbbed282019-12-20 13:26:08 +000088 * @param[in] input Source tensor info. Data type supported: All.
Manuel Bottinic1b76fa2019-06-17 12:04:40 +010089 * @param[in] output Destination tensor info. Data type supported: same as @p input.
90 * @param[in] info Contains padding and policies to be used in the deconvolution.
Michalis Spyrou780db4e2017-11-23 09:49:51 +000091 *
92 * @return a status
93 */
Manuel Bottinic1b76fa2019-06-17 12:04:40 +010094 static Status validate(const ITensorInfo *input, const ITensorInfo *output, const PadStrideInfo &info);
Michalis Spyrou780db4e2017-11-23 09:49:51 +000095
96 // Inherited methods overridden:
97 void run() override;
98
99private:
Sang-Hoon Parkbef7fa22020-10-21 15:58:54 +0100100 std::unique_ptr<CLDeconvolutionLayerUpsampleKernel> _upsample;
Sheri Zhang7e20e292021-02-02 11:49:34 +0000101 CLFill _fill;
Sang-Hoon Parkbef7fa22020-10-21 15:58:54 +0100102 ICLTensor *_output;
Michalis Spyrou780db4e2017-11-23 09:49:51 +0000103};
Georgios Pinitasdbfc2dc2019-04-02 12:51:21 +0100104} // namespace arm_compute
Michalis Spyrouf4643372019-11-29 16:17:13 +0000105#endif /* ARM_COMPUTE_CLDECONVOLUTIONLAYERUPSAMPLE_H */