blob: dd1c709d76d59fe597f89dff34aaca2a875316e4 [file] [log] [blame]
Georgios Pinitasae54e022018-07-16 15:41:27 +01001/*
Georgios Pinitas61ba0692021-01-10 04:07:39 +00002 * Copyright (c) 2018-2021 Arm Limited.
Georgios Pinitasae54e022018-07-16 15:41:27 +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 */
Michalis Spyrouf4643372019-11-29 16:17:13 +000024#ifndef ARM_COMPUTE_NECONCATENATELAYER_H
25#define ARM_COMPUTE_NECONCATENATELAYER_H
Georgios Pinitasae54e022018-07-16 15:41:27 +010026
27#include "arm_compute/runtime/IFunction.h"
28
29#include "arm_compute/core/Types.h"
30
31#include <memory>
Georgios Pinitasae54e022018-07-16 15:41:27 +010032
33namespace arm_compute
34{
35// Forward declarations
36class ITensor;
37class ITensorInfo;
38class Status;
39
Georgios Pinitas61ba0692021-01-10 04:07:39 +000040/** Basic function to execute concatenate tensors along a given axis */
Georgios Pinitasae54e022018-07-16 15:41:27 +010041class NEConcatenateLayer : public IFunction
42{
43public:
44 /** Default constructor */
45 NEConcatenateLayer();
Georgios Pinitas4667ddd2020-07-13 21:21:33 +010046 /** Destructor */
47 ~NEConcatenateLayer();
48 /** Prevent instances of this class from being copied (As this class contains pointers) */
49 NEConcatenateLayer(const NEConcatenateLayer &) = delete;
50 /** Default move constructor */
51 NEConcatenateLayer(NEConcatenateLayer &&);
52 /** Prevent instances of this class from being copied (As this class contains pointers) */
53 NEConcatenateLayer &operator=(const NEConcatenateLayer &) = delete;
54 /** Default move assignment operator */
55 NEConcatenateLayer &operator=(NEConcatenateLayer &&);
Georgios Pinitasae54e022018-07-16 15:41:27 +010056 /** Initialise the kernel's inputs vector and output.
57 *
Sheri Zhanga47dcc22021-04-22 14:41:12 +010058 * Valid data layouts:
59 * - All
60 *
61 * Valid data type configurations:
62 * |src |dst |
63 * |:--------------|:--------------|
64 * |QASYMM8 |QASYMM8 |
65 * |QASYMM8_SIGNED |QASYMM8_SIGNED |
66 * |F16 |F16 |
67 * |F32 |F32 |
68 *
Georgios Pinitasae54e022018-07-16 15:41:27 +010069 * @note Input and output tensor dimensions preconditions defer depending on the concatenation axis.
Michele Di Giorgiobd2c8e12021-01-19 15:29:02 +000070 * @note Preconditions can be found respectively at @ref cpu::kernels::CpuConcatenateWidthKernel, @ref cpu::kernels::CpuConcatenateHeightKernel,
71 * @ref cpu::kernels::CpuConcatenateDepthKernel and @ref cpu::kernels::CpuConcatenateBatchKernel.
Georgios Pinitasae54e022018-07-16 15:41:27 +010072 *
Georgios Pinitas33843562019-12-10 13:33:18 +000073 * @param[in,out] inputs_vector The vectors containing all the tensors to concatenate. Data types supported: QASYMM8/QASYMM8_SIGNED/F16/F32.
Georgios Pinitasae54e022018-07-16 15:41:27 +010074 * @param[out] output Output tensor. Data types supported: Same as @p input.
Vidhya Sudhan Loganathan338595b2019-06-28 14:09:53 +010075 * @param[in] axis Concatenation axis. Supported underlying concatenation axis are 0, 1, 2 and 3.
Georgios Pinitasae54e022018-07-16 15:41:27 +010076 */
Georgios Pinitas09f24972019-05-17 18:14:40 +010077 void configure(std::vector<const ITensor *> inputs_vector, ITensor *output, size_t axis);
Georgios Pinitasae54e022018-07-16 15:41:27 +010078 /** Static function to check if given info will lead to a valid configuration of @ref NEConcatenateLayer
79 *
80 * @note Input and output tensor dimensions preconditions defer depending on the concatenation axis.
Michele Di Giorgiobd2c8e12021-01-19 15:29:02 +000081 * @note Preconditions can be found respectively at @ref cpu::kernels::CpuConcatenateWidthKernel, @ref cpu::kernels::CpuConcatenateHeightKernel,
82 * @ref cpu::kernels::CpuConcatenateDepthKernel and @ref cpu::kernels::CpuConcatenateBatchKernel.
Georgios Pinitasae54e022018-07-16 15:41:27 +010083 *
Georgios Pinitas33843562019-12-10 13:33:18 +000084 * @param[in] inputs_vector The vectors containing all the tensors info to concatenate. Data types supported: QASYMM8/QASYMM8_SIGNED/F16/F32.
Georgios Pinitasae54e022018-07-16 15:41:27 +010085 * @param[in] output Output tensor info. Data types supported: Same as @p input.
Vidhya Sudhan Loganathan338595b2019-06-28 14:09:53 +010086 * @param[in] axis Concatenation axis. Supported underlying concatenation axis are 0, 1, 2 and 3.
Georgios Pinitasae54e022018-07-16 15:41:27 +010087 *
88 * @return a status
89 */
Georgios Pinitas09f24972019-05-17 18:14:40 +010090 static Status validate(const std::vector<const ITensorInfo *> &inputs_vector, const ITensorInfo *output, size_t axis);
Georgios Pinitasae54e022018-07-16 15:41:27 +010091
92 // Inherited methods overridden:
93 void run() override;
94
95private:
Georgios Pinitas4667ddd2020-07-13 21:21:33 +010096 struct Impl;
97 std::unique_ptr<Impl> _impl;
98};
Pablo Tello3dd5b682019-03-04 14:14:02 +000099} // namespace arm_compute
Michalis Spyrouf4643372019-11-29 16:17:13 +0000100#endif /* ARM_COMPUTE_NECONCATENATELAYER_H */