blob: 6aa724ab0c37d81bb13036e3bb916027f107ceac [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 *
58 * @note Input and output tensor dimensions preconditions defer depending on the concatenation axis.
Michele Di Giorgiobd2c8e12021-01-19 15:29:02 +000059 * @note Preconditions can be found respectively at @ref cpu::kernels::CpuConcatenateWidthKernel, @ref cpu::kernels::CpuConcatenateHeightKernel,
60 * @ref cpu::kernels::CpuConcatenateDepthKernel and @ref cpu::kernels::CpuConcatenateBatchKernel.
Georgios Pinitasae54e022018-07-16 15:41:27 +010061 *
Georgios Pinitas33843562019-12-10 13:33:18 +000062 * @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 +010063 * @param[out] output Output tensor. Data types supported: Same as @p input.
Vidhya Sudhan Loganathan338595b2019-06-28 14:09:53 +010064 * @param[in] axis Concatenation axis. Supported underlying concatenation axis are 0, 1, 2 and 3.
Georgios Pinitasae54e022018-07-16 15:41:27 +010065 */
Georgios Pinitas09f24972019-05-17 18:14:40 +010066 void configure(std::vector<const ITensor *> inputs_vector, ITensor *output, size_t axis);
Georgios Pinitasae54e022018-07-16 15:41:27 +010067 /** Static function to check if given info will lead to a valid configuration of @ref NEConcatenateLayer
68 *
69 * @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] 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 +010074 * @param[in] output Output tensor info. 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 *
77 * @return a status
78 */
Georgios Pinitas09f24972019-05-17 18:14:40 +010079 static Status validate(const std::vector<const ITensorInfo *> &inputs_vector, const ITensorInfo *output, size_t axis);
Georgios Pinitasae54e022018-07-16 15:41:27 +010080
81 // Inherited methods overridden:
82 void run() override;
83
84private:
Georgios Pinitas4667ddd2020-07-13 21:21:33 +010085 struct Impl;
86 std::unique_ptr<Impl> _impl;
87};
Pablo Tello3dd5b682019-03-04 14:14:02 +000088} // namespace arm_compute
Michalis Spyrouf4643372019-11-29 16:17:13 +000089#endif /* ARM_COMPUTE_NECONCATENATELAYER_H */