blob: ea96e45bf862c490514e23e05b5d55b64a35ba54 [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"
28#include "src/runtime/gpu/cl/operators/ClConcatenate.h"
Georgios Pinitase29acf12018-07-16 14:40:09 +010029
30namespace arm_compute
31{
Michele Di Giorgiof932d2c2020-07-06 11:27:21 +010032struct CLConcatenateLayer::Impl
33{
Michele Di Giorgio7d61ff02021-01-18 21:15:59 +000034 std::vector<const ICLTensor *> srcs{};
35 ICLTensor *dst{ nullptr };
36 unsigned int num_inputs{ 0 };
37 unsigned int axis{ 0 };
38 std::unique_ptr<opencl::ClConcatenate> op{ nullptr };
Michele Di Giorgiof932d2c2020-07-06 11:27:21 +010039};
40
41CLConcatenateLayer::CLConcatenateLayer()
Georgios Pinitas40f51a62020-11-21 03:04:18 +000042 : _impl(std::make_unique<Impl>())
Michele Di Giorgiof932d2c2020-07-06 11:27:21 +010043{
44}
45
46CLConcatenateLayer::CLConcatenateLayer(CLConcatenateLayer &&) = default;
47
48CLConcatenateLayer &CLConcatenateLayer::operator=(CLConcatenateLayer &&) = default;
49
50CLConcatenateLayer::~CLConcatenateLayer() = default;
51
52void CLConcatenateLayer::configure(std::vector<const ICLTensor *> &inputs_vector, ICLTensor *output, size_t axis)
53{
54 configure(CLKernelLibrary::get().get_compile_context(), inputs_vector, output, axis);
55}
56
57void CLConcatenateLayer::configure(const CLCompileContext &compile_context, std::vector<const ICLTensor *> &inputs_vector, ICLTensor *output, size_t axis)
58{
59 ARM_COMPUTE_ERROR_ON(output == nullptr);
60
61 _impl->srcs = inputs_vector;
62 _impl->dst = output;
63 _impl->axis = axis;
64 _impl->num_inputs = inputs_vector.size();
Michele Di Giorgio7d61ff02021-01-18 21:15:59 +000065 _impl->op = std::make_unique<opencl::ClConcatenate>();
Michele Di Giorgiof932d2c2020-07-06 11:27:21 +010066
67 std::vector<ITensorInfo *> inputs_vector_info;
68 for(unsigned int i = 0; i < inputs_vector.size(); ++i)
69 {
70 ARM_COMPUTE_ERROR_ON_NULLPTR(inputs_vector.at(i));
71 inputs_vector_info.emplace_back(inputs_vector.at(i)->info());
72 }
73 _impl->op->configure(compile_context, inputs_vector_info, _impl->dst->info(), axis);
74}
75
76Status CLConcatenateLayer::validate(const std::vector<const ITensorInfo *> &inputs_vector, const ITensorInfo *output, size_t axis)
77{
Michele Di Giorgio7d61ff02021-01-18 21:15:59 +000078 return opencl::ClConcatenate::validate(inputs_vector, output, axis);
Michele Di Giorgiof932d2c2020-07-06 11:27:21 +010079}
80
Georgios Pinitase29acf12018-07-16 14:40:09 +010081void CLConcatenateLayer::run()
82{
Georgios Pinitas0499dff2020-07-31 22:21:38 +010083 ITensorPack pack;
Michele Di Giorgiof932d2c2020-07-06 11:27:21 +010084 for(unsigned i = 0; i < _impl->num_inputs; ++i)
Pablo Tello6a14adb2019-03-05 17:33:08 +000085 {
Georgios Pinitas0499dff2020-07-31 22:21:38 +010086 pack.add_tensor(TensorType::ACL_SRC_VEC + i, _impl->srcs.at(i));
Pablo Tello6a14adb2019-03-05 17:33:08 +000087 }
Georgios Pinitas0499dff2020-07-31 22:21:38 +010088 pack.add_tensor(TensorType::ACL_DST, _impl->dst);
Michele Di Giorgiof932d2c2020-07-06 11:27:21 +010089
Georgios Pinitas0499dff2020-07-31 22:21:38 +010090 _impl->op->run(pack);
Georgios Pinitase29acf12018-07-16 14:40:09 +010091}
92} // namespace arm_compute