blob: 25a0153f51505183421d78f3e4f45b33b9e128c4 [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
Pablo Tello6a14adb2019-03-05 17:33:08 +000029#include "arm_compute/core/CL/kernels/CLHeightConcatenateLayerKernel.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 *
44 * -# @ref CLWidthConcatenateLayer (if underlying concatenation axis is 0).
Pablo Tello6a14adb2019-03-05 17:33:08 +000045 * -# @ref CLHeightConcatenateLayerKernel (if underlying concatenation axis is 1).
Georgios Pinitase29acf12018-07-16 14:40:09 +010046 * -# @ref CLDepthConcatenateLayer (if underlying concatenation axis is 2).
47 */
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.
Pablo Tello6a14adb2019-03-05 17:33:08 +000056 * @note Preconditions can be found respectively at @ref CLWidthConcatenateLayer, @ref CLHeightConcatenateLayerKernel and @ref CLDepthConcatenateLayer.
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 Pinitasae54e022018-07-16 15:41:27 +010062 void configure(const std::vector<ICLTensor *> &inputs_vector, ICLTensor *output, DataLayoutDimension 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.
Pablo Tello6a14adb2019-03-05 17:33:08 +000066 * @note Preconditions can be found respectively at @ref CLWidthConcatenateLayer, @ref CLHeightConcatenateLayerKernel and @ref CLDepthConcatenateLayer.
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 */
74 static Status validate(const std::vector<ITensorInfo *> &inputs_vector, const ITensorInfo *output, DataLayoutDimension axis);
75
76 // Inherited methods overridden:
77 void run() override;
78
79private:
Pablo Tello6a14adb2019-03-05 17:33:08 +000080 void configure_h_concatenate(std::vector<ICLTensor *> inputs_vector, ICLTensor *output);
81 static Status validate_h_concatenate(const std::vector<ITensorInfo *> &inputs_vector, const ITensorInfo *output);
82
83 std::unique_ptr<IFunction> _concat_function;
84 std::unique_ptr<CLHeightConcatenateLayerKernel[]> _hconcat_kernels;
85 unsigned int _num_inputs;
86 unsigned int _axis;
Georgios Pinitase29acf12018-07-16 14:40:09 +010087};
88}
89#endif /* __ARM_COMPUTE_CLCONCATENATELAYER_H__ */