blob: 0a8884f4e3692d70124777dd6026d8757a25ecca [file] [log] [blame]
Georgios Pinitase29acf12018-07-16 14:40:09 +01001/*
Michele Di Giorgio7d61ff02021-01-18 21:15:59 +00002 * Copyright (c) 2018-2021 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#include "arm_compute/runtime/CL/functions/CLConcatenateLayer.h"
25
Georgios Pinitase29acf12018-07-16 14:40:09 +010026#include "arm_compute/core/CL/ICLTensor.h"
Michele Di Giorgio7d61ff02021-01-18 21:15:59 +000027#include "src/core/CL/ICLKernel.h"
Georgios Pinitas7891a732021-08-20 21:39:25 +010028#include "src/gpu/cl/operators/ClConcatenate.h"
Georgios Pinitase29acf12018-07-16 14:40:09 +010029
ramelg016d891572021-09-29 10:05:09 +010030#include "src/common/utils/Log.h"
31
Georgios Pinitase29acf12018-07-16 14:40:09 +010032namespace arm_compute
33{
Michele Di Giorgiof932d2c2020-07-06 11:27:21 +010034struct CLConcatenateLayer::Impl
35{
Michele Di Giorgio7d61ff02021-01-18 21:15:59 +000036 std::vector<const ICLTensor *> srcs{};
37 ICLTensor *dst{ nullptr };
38 unsigned int num_inputs{ 0 };
39 unsigned int axis{ 0 };
40 std::unique_ptr<opencl::ClConcatenate> op{ nullptr };
Michele Di Giorgiof932d2c2020-07-06 11:27:21 +010041};
42
43CLConcatenateLayer::CLConcatenateLayer()
Georgios Pinitas40f51a62020-11-21 03:04:18 +000044 : _impl(std::make_unique<Impl>())
Michele Di Giorgiof932d2c2020-07-06 11:27:21 +010045{
46}
47
48CLConcatenateLayer::CLConcatenateLayer(CLConcatenateLayer &&) = default;
49
50CLConcatenateLayer &CLConcatenateLayer::operator=(CLConcatenateLayer &&) = default;
51
52CLConcatenateLayer::~CLConcatenateLayer() = default;
53
54void CLConcatenateLayer::configure(std::vector<const ICLTensor *> &inputs_vector, ICLTensor *output, size_t axis)
55{
56 configure(CLKernelLibrary::get().get_compile_context(), inputs_vector, output, axis);
57}
58
59void CLConcatenateLayer::configure(const CLCompileContext &compile_context, std::vector<const ICLTensor *> &inputs_vector, ICLTensor *output, size_t axis)
60{
61 ARM_COMPUTE_ERROR_ON(output == nullptr);
ramelg016d891572021-09-29 10:05:09 +010062 ARM_COMPUTE_LOG_PARAMS(inputs_vector, output, axis);
Michele Di Giorgiof932d2c2020-07-06 11:27:21 +010063
64 _impl->srcs = inputs_vector;
65 _impl->dst = output;
66 _impl->axis = axis;
67 _impl->num_inputs = inputs_vector.size();
Michele Di Giorgio7d61ff02021-01-18 21:15:59 +000068 _impl->op = std::make_unique<opencl::ClConcatenate>();
Michele Di Giorgiof932d2c2020-07-06 11:27:21 +010069
70 std::vector<ITensorInfo *> inputs_vector_info;
71 for(unsigned int i = 0; i < inputs_vector.size(); ++i)
72 {
73 ARM_COMPUTE_ERROR_ON_NULLPTR(inputs_vector.at(i));
74 inputs_vector_info.emplace_back(inputs_vector.at(i)->info());
75 }
76 _impl->op->configure(compile_context, inputs_vector_info, _impl->dst->info(), axis);
77}
78
79Status CLConcatenateLayer::validate(const std::vector<const ITensorInfo *> &inputs_vector, const ITensorInfo *output, size_t axis)
80{
Michele Di Giorgio7d61ff02021-01-18 21:15:59 +000081 return opencl::ClConcatenate::validate(inputs_vector, output, axis);
Michele Di Giorgiof932d2c2020-07-06 11:27:21 +010082}
83
Georgios Pinitase29acf12018-07-16 14:40:09 +010084void CLConcatenateLayer::run()
85{
Georgios Pinitas0499dff2020-07-31 22:21:38 +010086 ITensorPack pack;
Michele Di Giorgiof932d2c2020-07-06 11:27:21 +010087 for(unsigned i = 0; i < _impl->num_inputs; ++i)
Pablo Tello6a14adb2019-03-05 17:33:08 +000088 {
Georgios Pinitas0499dff2020-07-31 22:21:38 +010089 pack.add_tensor(TensorType::ACL_SRC_VEC + i, _impl->srcs.at(i));
Pablo Tello6a14adb2019-03-05 17:33:08 +000090 }
Georgios Pinitas0499dff2020-07-31 22:21:38 +010091 pack.add_tensor(TensorType::ACL_DST, _impl->dst);
Michele Di Giorgiof932d2c2020-07-06 11:27:21 +010092
Georgios Pinitas0499dff2020-07-31 22:21:38 +010093 _impl->op->run(pack);
Georgios Pinitase29acf12018-07-16 14:40:09 +010094}
95} // namespace arm_compute