blob: 4d4c62434a4d39b5c99a8202fe346901d5f6d58b [file] [log] [blame]
Georgios Pinitase29acf12018-07-16 14:40:09 +01001/*
2 * Copyright (c) 2018 ARM Limited.
3 *
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#ifndef __ARM_COMPUTE_CLCONCATENATELAYER_H__
25#define __ARM_COMPUTE_CLCONCATENATELAYER_H__
26
27#include "arm_compute/runtime/IFunction.h"
28
29#include "arm_compute/core/Types.h"
30
31#include <memory>
32#include <vector>
33
34namespace arm_compute
35{
36// Forward declarations
37class ICLTensor;
38class ITensorInfo;
39class Status;
40
41/** Basic function to execute concatenate tensors along a given axis. This function calls the following kernels:
42 *
43 * -# @ref CLWidthConcatenateLayer (if underlying concatenation axis is 0).
44 * -# @ref CLDepthConcatenateLayer (if underlying concatenation axis is 2).
45 */
46class CLConcatenateLayer : public IFunction
47{
48public:
49 /** Default constructor */
50 CLConcatenateLayer();
51 /** Initialise the kernel's inputs vector and output.
52 *
53 * @note Input and output tensor dimensions preconditions defer depending on the concatenation axis.
54 * @note Preconditions can be found respectively at @ref CLWidthConcatenateLayer and @ref CLDepthConcatenateLayer.
55 *
56 * @param[in,out] inputs_vector The vectors containing all the tensors to concatenate. Data types supported: QASYMM8/F16/F32.
57 * @param[out] output Output tensor. Data types supported: Same as @p input.
58 * @param[in] axis Concatenation axis. Supported underlying concatenation axis are 0 and 2.
59 */
Georgios Pinitasae54e022018-07-16 15:41:27 +010060 void configure(const std::vector<ICLTensor *> &inputs_vector, ICLTensor *output, DataLayoutDimension axis);
Georgios Pinitase29acf12018-07-16 14:40:09 +010061 /** Static function to check if given info will lead to a valid configuration of @ref CLConcatenateLayer
62 *
63 * @note Input and output tensor dimensions preconditions defer depending on the concatenation axis.
64 * @note Preconditions can be found respectively at @ref CLWidthConcatenateLayer and @ref CLDepthConcatenateLayer.
65 *
66 * @param[in] inputs_vector The vectors containing all the tensors info to concatenate. Data types supported: QASYMM8/F16/F32.
67 * @param[in] output Output tensor info. Data types supported: Same as @p input.
68 * @param[in] axis Concatenation axis. Supported underlying concatenation axis are 0 and 2.
69 *
70 * @return a status
71 */
72 static Status validate(const std::vector<ITensorInfo *> &inputs_vector, const ITensorInfo *output, DataLayoutDimension axis);
73
74 // Inherited methods overridden:
75 void run() override;
76
77private:
78 std::unique_ptr<IFunction> _concat_function;
79};
80}
81#endif /* __ARM_COMPUTE_CLCONCATENATELAYER_H__ */