blob: c56fc117b9849c3ef054a0e0526f9f28cc9d3d56 [file] [log] [blame]
Georgios Pinitase29acf12018-07-16 14:40:09 +01001/*
Pablo Tello6a14adb2019-03-05 17:33:08 +00002 * Copyright (c) 2018-2019 ARM Limited.
Georgios Pinitase29acf12018-07-16 14:40:09 +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#ifndef __ARM_COMPUTE_CLCONCATENATELAYER_H__
25#define __ARM_COMPUTE_CLCONCATENATELAYER_H__
26
27#include "arm_compute/runtime/IFunction.h"
28
Georgios Pinitas09f24972019-05-17 18:14:40 +010029#include "arm_compute/core/CL/ICLKernel.h"
Georgios Pinitase29acf12018-07-16 14:40:09 +010030#include "arm_compute/core/Types.h"
31
32#include <memory>
33#include <vector>
34
35namespace arm_compute
36{
37// Forward declarations
38class ICLTensor;
39class ITensorInfo;
40class Status;
41
42/** Basic function to execute concatenate tensors along a given axis. This function calls the following kernels:
43 *
Georgios Pinitas09f24972019-05-17 18:14:40 +010044 * -# @ref CLWidthConcatenateLayerKernel (if underlying concatenation axis is 0).
Pablo Tello6a14adb2019-03-05 17:33:08 +000045 * -# @ref CLHeightConcatenateLayerKernel (if underlying concatenation axis is 1).
Georgios Pinitas09f24972019-05-17 18:14:40 +010046 * -# @ref CLDepthConcatenateLayerKernel (if underlying concatenation axis is 2).
Georgios Pinitase29acf12018-07-16 14:40:09 +010047 */
48class CLConcatenateLayer : public IFunction
49{
50public:
51 /** Default constructor */
52 CLConcatenateLayer();
53 /** Initialise the kernel's inputs vector and output.
54 *
55 * @note Input and output tensor dimensions preconditions defer depending on the concatenation axis.
Georgios Pinitas09f24972019-05-17 18:14:40 +010056 * @note Preconditions can be found respectively at @ref CLWidthConcatenateLayerKernel, @ref CLHeightConcatenateLayerKernel and @ref CLDepthConcatenateLayerKernel.
Georgios Pinitase29acf12018-07-16 14:40:09 +010057 *
58 * @param[in,out] inputs_vector The vectors containing all the tensors to concatenate. Data types supported: QASYMM8/F16/F32.
59 * @param[out] output Output tensor. Data types supported: Same as @p input.
Pablo Tello6a14adb2019-03-05 17:33:08 +000060 * @param[in] axis Concatenation axis. Supported underlying concatenation axis are 0, 1 and 2.
Georgios Pinitase29acf12018-07-16 14:40:09 +010061 */
Georgios Pinitas9e4824c2019-04-12 13:15:58 +010062 void configure(const std::vector<ICLTensor *> &inputs_vector, ICLTensor *output, size_t axis);
Georgios Pinitase29acf12018-07-16 14:40:09 +010063 /** Static function to check if given info will lead to a valid configuration of @ref CLConcatenateLayer
64 *
65 * @note Input and output tensor dimensions preconditions defer depending on the concatenation axis.
Georgios Pinitas09f24972019-05-17 18:14:40 +010066 * @note Preconditions can be found respectively at @ref CLWidthConcatenateLayerKernel, @ref CLHeightConcatenateLayerKernel and @ref CLDepthConcatenateLayerKernel.
Georgios Pinitase29acf12018-07-16 14:40:09 +010067 *
68 * @param[in] inputs_vector The vectors containing all the tensors info to concatenate. Data types supported: QASYMM8/F16/F32.
69 * @param[in] output Output tensor info. Data types supported: Same as @p input.
Pablo Tello6a14adb2019-03-05 17:33:08 +000070 * @param[in] axis Concatenation axis. Supported underlying concatenation axis are 0, 1 and 2.
Georgios Pinitase29acf12018-07-16 14:40:09 +010071 *
72 * @return a status
73 */
Georgios Pinitas9e4824c2019-04-12 13:15:58 +010074 static Status validate(const std::vector<ITensorInfo *> &inputs_vector, const ITensorInfo *output, size_t axis);
Georgios Pinitase29acf12018-07-16 14:40:09 +010075
76 // Inherited methods overridden:
77 void run() override;
78
79private:
Michalis Spyrou8c571692019-04-05 11:29:52 +010080 std::vector<std::unique_ptr<ICLKernel>> _concat_kernels;
81 unsigned int _num_inputs;
82 unsigned int _axis;
Georgios Pinitase29acf12018-07-16 14:40:09 +010083};
Georgios Pinitas9e4824c2019-04-12 13:15:58 +010084} // namespace arm_compute
Georgios Pinitase29acf12018-07-16 14:40:09 +010085#endif /* __ARM_COMPUTE_CLCONCATENATELAYER_H__ */