blob: 59a0892f1f11f93eba11496678b045afc769cc8b [file] [log] [blame]
Georgios Pinitasae54e022018-07-16 15:41:27 +01001/*
Georgios Pinitas61ba0692021-01-10 04:07:39 +00002 * Copyright (c) 2018-2021 Arm Limited.
Georgios Pinitasae54e022018-07-16 15:41:27 +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/NEON/functions/NEConcatenateLayer.h"
25
Georgios Pinitasae54e022018-07-16 15:41:27 +010026#include "arm_compute/core/Error.h"
27#include "arm_compute/core/ITensor.h"
28#include "arm_compute/core/TensorInfo.h"
29#include "arm_compute/core/Types.h"
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010030#include "arm_compute/core/utils/misc/ShapeCalculator.h"
31#include "arm_compute/runtime/NEON/NEScheduler.h"
32
Sang-Hoon Park68dd25f2020-10-19 16:00:11 +010033#include "src/core/helpers/AutoConfiguration.h"
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010034#include "src/cpu/operators/CpuConcatenate.h"
Georgios Pinitasae54e022018-07-16 15:41:27 +010035
36namespace arm_compute
37{
Georgios Pinitas4667ddd2020-07-13 21:21:33 +010038struct NEConcatenateLayer::Impl
39{
Georgios Pinitas61ba0692021-01-10 04:07:39 +000040 std::vector<const ITensor *> srcs{};
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010041 ITensor *dst{nullptr};
42 unsigned int num_inputs{0};
43 unsigned int axis{0};
44 std::unique_ptr<cpu::CpuConcatenate> op{nullptr};
Georgios Pinitas4667ddd2020-07-13 21:21:33 +010045};
46
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010047NEConcatenateLayer::NEConcatenateLayer() : _impl(std::make_unique<Impl>())
Georgios Pinitas4667ddd2020-07-13 21:21:33 +010048{
49}
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010050NEConcatenateLayer::NEConcatenateLayer(NEConcatenateLayer &&) = default;
Georgios Pinitas4667ddd2020-07-13 21:21:33 +010051NEConcatenateLayer &NEConcatenateLayer::operator=(NEConcatenateLayer &&) = default;
Georgios Pinitas61ba0692021-01-10 04:07:39 +000052NEConcatenateLayer::~NEConcatenateLayer() = default;
Georgios Pinitas4667ddd2020-07-13 21:21:33 +010053
54void NEConcatenateLayer::configure(std::vector<const ITensor *> inputs_vector, ITensor *output, size_t axis)
55{
56 ARM_COMPUTE_ERROR_ON(output == nullptr);
57
58 _impl->srcs = inputs_vector;
59 _impl->dst = output;
60 _impl->axis = axis;
61 _impl->num_inputs = inputs_vector.size();
Georgios Pinitas61ba0692021-01-10 04:07:39 +000062 _impl->op = std::make_unique<cpu::CpuConcatenate>();
Georgios Pinitas4667ddd2020-07-13 21:21:33 +010063
64 std::vector<const ITensorInfo *> inputs_vector_info;
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010065 for (unsigned int i = 0; i < inputs_vector.size(); ++i)
Georgios Pinitas4667ddd2020-07-13 21:21:33 +010066 {
67 ARM_COMPUTE_ERROR_ON_NULLPTR(inputs_vector.at(i));
68 inputs_vector_info.emplace_back(inputs_vector.at(i)->info());
69 }
70 _impl->op->configure(inputs_vector_info, _impl->dst->info(), axis);
71}
72
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010073Status NEConcatenateLayer::validate(const std::vector<const ITensorInfo *> &inputs_vector,
74 const ITensorInfo *output,
75 size_t axis)
Georgios Pinitas4667ddd2020-07-13 21:21:33 +010076{
Georgios Pinitas61ba0692021-01-10 04:07:39 +000077 return cpu::CpuConcatenate::validate(inputs_vector, output, axis);
Georgios Pinitas4667ddd2020-07-13 21:21:33 +010078}
79
Georgios Pinitasae54e022018-07-16 15:41:27 +010080void NEConcatenateLayer::run()
81{
Georgios Pinitas0499dff2020-07-31 22:21:38 +010082 ITensorPack pack;
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010083 for (unsigned i = 0; i < _impl->num_inputs; ++i)
Pablo Tello3dd5b682019-03-04 14:14:02 +000084 {
Georgios Pinitas0499dff2020-07-31 22:21:38 +010085 pack.add_tensor(TensorType::ACL_SRC_VEC + i, _impl->srcs.at(i));
Pablo Tello3dd5b682019-03-04 14:14:02 +000086 }
Georgios Pinitas0499dff2020-07-31 22:21:38 +010087 pack.add_tensor(TensorType::ACL_DST, _impl->dst);
Georgios Pinitas4667ddd2020-07-13 21:21:33 +010088
Georgios Pinitas0499dff2020-07-31 22:21:38 +010089 _impl->op->run(pack);
Georgios Pinitasae54e022018-07-16 15:41:27 +010090}
91} // namespace arm_compute