blob: 9c7754947ae8ebcfe61eb047e1df2312a0666759 [file] [log] [blame]
Anthony Barbier7068f992017-10-26 15:23:08 +01001/*
Michalis Spyroua9c44722019-04-05 17:18:36 +01002 * Copyright (c) 2017-2019 ARM Limited.
Anthony Barbier7068f992017-10-26 15:23:08 +01003 *
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
Michalis Spyrouf4643372019-11-29 16:17:13 +000025#ifndef ARM_COMPUTE_GCDEPTHCONCATENATEKERNEL_H
26#define ARM_COMPUTE_GCDEPTHCONCATENATEKERNEL_H
Anthony Barbier7068f992017-10-26 15:23:08 +010027
28#include "arm_compute/core/GLES_COMPUTE/IGCKernel.h"
29#include "arm_compute/core/Types.h"
30
31namespace arm_compute
32{
33class IGCTensor;
34
35/** Interface for the depth concatenate kernel.
36 * The input tensor will be concatenated into the output tensor.
37 */
Giorgio Arena04a8f8c2017-11-23 11:45:24 +000038class GCDepthConcatenateLayerKernel : public IGCKernel
Anthony Barbier7068f992017-10-26 15:23:08 +010039{
40public:
41 /** Default constructor */
Giorgio Arena04a8f8c2017-11-23 11:45:24 +000042 GCDepthConcatenateLayerKernel();
Anthony Barbier7068f992017-10-26 15:23:08 +010043 /** Prevent instances of this class from being copied (As this class contains pointers) */
Giorgio Arena04a8f8c2017-11-23 11:45:24 +000044 GCDepthConcatenateLayerKernel(const GCDepthConcatenateLayerKernel &) = delete;
Anthony Barbier7068f992017-10-26 15:23:08 +010045 /** Prevent instances of this class from being copied (As this class contains pointers) */
Giorgio Arena04a8f8c2017-11-23 11:45:24 +000046 GCDepthConcatenateLayerKernel &operator=(const GCDepthConcatenateLayerKernel &) = delete;
Anthony Barbier7068f992017-10-26 15:23:08 +010047 /** Allow instances of this class to be moved */
Giorgio Arena04a8f8c2017-11-23 11:45:24 +000048 GCDepthConcatenateLayerKernel(GCDepthConcatenateLayerKernel &&) = default;
Anthony Barbier7068f992017-10-26 15:23:08 +010049 /** Allow instances of this class to be moved */
Giorgio Arena04a8f8c2017-11-23 11:45:24 +000050 GCDepthConcatenateLayerKernel &operator=(GCDepthConcatenateLayerKernel &&) = default;
Anthony Barbier7068f992017-10-26 15:23:08 +010051 /** Default destructor */
Giorgio Arena04a8f8c2017-11-23 11:45:24 +000052 ~GCDepthConcatenateLayerKernel() = default;
Anthony Barbier7068f992017-10-26 15:23:08 +010053 /** Initialise the kernel's inputs and output
54 *
55 * @param[in] input Input tensor. Data types supported: F16/F32.
56 * @param[in] depth_offset The offset on the Z axis.
57 * @param[in,out] output Output tensor. Data types supported: Same as @p input.
58 *
59 * @note: The output tensor's low two dimensions can't be smaller than the input one's.
60 * @note: The gaps between the two lowest dimensions of input and output need to be divisible by 2.
61 *
62 */
63 void configure(const IGCTensor *input, unsigned int depth_offset, IGCTensor *output);
64
65 // Inherited methods overridden:
66 void run(const Window &window) override;
Anthony Barbier7068f992017-10-26 15:23:08 +010067
68private:
69 const IGCTensor *_input;
70 IGCTensor *_output;
Frank Lei4406fd62018-02-01 14:47:14 +080071 int _depth_offset;
Anthony Barbier7068f992017-10-26 15:23:08 +010072};
73}
Michalis Spyrouf4643372019-11-29 16:17:13 +000074#endif /* ARM_COMPUTE_GCDEPTHCONCATENATEKERNEL_H */