blob: 1600f85488de20ce5e3cfcd693e6a4db1199167a [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
Georgios Pinitasae54e022018-07-16 15:41:27 +010027#include "arm_compute/core/Types.h"
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010028#include "arm_compute/runtime/IFunction.h"
Georgios Pinitasae54e022018-07-16 15:41:27 +010029
30#include <memory>
Georgios Pinitasae54e022018-07-16 15:41:27 +010031
32namespace arm_compute
33{
34// Forward declarations
35class ITensor;
36class ITensorInfo;
37class Status;
38
Georgios Pinitas61ba0692021-01-10 04:07:39 +000039/** Basic function to execute concatenate tensors along a given axis */
Georgios Pinitasae54e022018-07-16 15:41:27 +010040class NEConcatenateLayer : public IFunction
41{
42public:
43 /** Default constructor */
44 NEConcatenateLayer();
Georgios Pinitas4667ddd2020-07-13 21:21:33 +010045 /** Destructor */
46 ~NEConcatenateLayer();
47 /** Prevent instances of this class from being copied (As this class contains pointers) */
48 NEConcatenateLayer(const NEConcatenateLayer &) = delete;
49 /** Default move constructor */
50 NEConcatenateLayer(NEConcatenateLayer &&);
51 /** Prevent instances of this class from being copied (As this class contains pointers) */
52 NEConcatenateLayer &operator=(const NEConcatenateLayer &) = delete;
53 /** Default move assignment operator */
54 NEConcatenateLayer &operator=(NEConcatenateLayer &&);
Georgios Pinitasae54e022018-07-16 15:41:27 +010055 /** Initialise the kernel's inputs vector and output.
56 *
Sheri Zhanga47dcc22021-04-22 14:41:12 +010057 * Valid data layouts:
58 * - All
59 *
60 * Valid data type configurations:
61 * |src |dst |
62 * |:--------------|:--------------|
63 * |QASYMM8 |QASYMM8 |
64 * |QASYMM8_SIGNED |QASYMM8_SIGNED |
65 * |F16 |F16 |
66 * |F32 |F32 |
67 *
Georgios Pinitasae54e022018-07-16 15:41:27 +010068 * @note Input and output tensor dimensions preconditions defer depending on the concatenation axis.
Michele Di Giorgiobd2c8e12021-01-19 15:29:02 +000069 * @note Preconditions can be found respectively at @ref cpu::kernels::CpuConcatenateWidthKernel, @ref cpu::kernels::CpuConcatenateHeightKernel,
70 * @ref cpu::kernels::CpuConcatenateDepthKernel and @ref cpu::kernels::CpuConcatenateBatchKernel.
Georgios Pinitasae54e022018-07-16 15:41:27 +010071 *
Georgios Pinitas33843562019-12-10 13:33:18 +000072 * @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 +010073 * @param[out] output Output tensor. Data types supported: Same as @p input.
Vidhya Sudhan Loganathan338595b2019-06-28 14:09:53 +010074 * @param[in] axis Concatenation axis. Supported underlying concatenation axis are 0, 1, 2 and 3.
Georgios Pinitasae54e022018-07-16 15:41:27 +010075 */
Georgios Pinitas09f24972019-05-17 18:14:40 +010076 void configure(std::vector<const ITensor *> inputs_vector, ITensor *output, size_t axis);
Georgios Pinitasae54e022018-07-16 15:41:27 +010077 /** Static function to check if given info will lead to a valid configuration of @ref NEConcatenateLayer
78 *
79 * @note Input and output tensor dimensions preconditions defer depending on the concatenation axis.
Michele Di Giorgiobd2c8e12021-01-19 15:29:02 +000080 * @note Preconditions can be found respectively at @ref cpu::kernels::CpuConcatenateWidthKernel, @ref cpu::kernels::CpuConcatenateHeightKernel,
81 * @ref cpu::kernels::CpuConcatenateDepthKernel and @ref cpu::kernels::CpuConcatenateBatchKernel.
Georgios Pinitasae54e022018-07-16 15:41:27 +010082 *
Georgios Pinitas33843562019-12-10 13:33:18 +000083 * @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 +010084 * @param[in] output Output tensor info. Data types supported: Same as @p input.
Vidhya Sudhan Loganathan338595b2019-06-28 14:09:53 +010085 * @param[in] axis Concatenation axis. Supported underlying concatenation axis are 0, 1, 2 and 3.
Georgios Pinitasae54e022018-07-16 15:41:27 +010086 *
87 * @return a status
88 */
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010089 static Status
90 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 */