blob: ceb697aad6b3182ddeb0dc909f684cb62956cf45 [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 Pinitas7891a732021-08-20 21:39:25 +010026#include "src/cpu/operators/CpuConcatenate.h"
Georgios Pinitasae54e022018-07-16 15:41:27 +010027
Pablo Tello3dd5b682019-03-04 14:14:02 +000028#include "arm_compute/core/utils/misc/ShapeCalculator.h"
29#include "arm_compute/runtime/NEON/NEScheduler.h"
30
Georgios Pinitasae54e022018-07-16 15:41:27 +010031#include "arm_compute/core/Error.h"
32#include "arm_compute/core/ITensor.h"
33#include "arm_compute/core/TensorInfo.h"
34#include "arm_compute/core/Types.h"
Sang-Hoon Park68dd25f2020-10-19 16:00:11 +010035#include "src/core/helpers/AutoConfiguration.h"
Georgios Pinitasae54e022018-07-16 15:41:27 +010036
37namespace arm_compute
38{
Georgios Pinitas4667ddd2020-07-13 21:21:33 +010039struct NEConcatenateLayer::Impl
40{
Georgios Pinitas61ba0692021-01-10 04:07:39 +000041 std::vector<const ITensor *> srcs{};
42 ITensor *dst{ nullptr };
43 unsigned int num_inputs{ 0 };
44 unsigned int axis{ 0 };
45 std::unique_ptr<cpu::CpuConcatenate> op{ nullptr };
Georgios Pinitas4667ddd2020-07-13 21:21:33 +010046};
47
48NEConcatenateLayer::NEConcatenateLayer()
Georgios Pinitas40f51a62020-11-21 03:04:18 +000049 : _impl(std::make_unique<Impl>())
Georgios Pinitas4667ddd2020-07-13 21:21:33 +010050{
51}
Georgios Pinitas4667ddd2020-07-13 21:21:33 +010052NEConcatenateLayer::NEConcatenateLayer(NEConcatenateLayer &&) = default;
Georgios Pinitas4667ddd2020-07-13 21:21:33 +010053NEConcatenateLayer &NEConcatenateLayer::operator=(NEConcatenateLayer &&) = default;
Georgios Pinitas61ba0692021-01-10 04:07:39 +000054NEConcatenateLayer::~NEConcatenateLayer() = default;
Georgios Pinitas4667ddd2020-07-13 21:21:33 +010055
56void NEConcatenateLayer::configure(std::vector<const ITensor *> inputs_vector, ITensor *output, size_t axis)
57{
58 ARM_COMPUTE_ERROR_ON(output == nullptr);
59
60 _impl->srcs = inputs_vector;
61 _impl->dst = output;
62 _impl->axis = axis;
63 _impl->num_inputs = inputs_vector.size();
Georgios Pinitas61ba0692021-01-10 04:07:39 +000064 _impl->op = std::make_unique<cpu::CpuConcatenate>();
Georgios Pinitas4667ddd2020-07-13 21:21:33 +010065
66 std::vector<const ITensorInfo *> inputs_vector_info;
67 for(unsigned int i = 0; i < inputs_vector.size(); ++i)
68 {
69 ARM_COMPUTE_ERROR_ON_NULLPTR(inputs_vector.at(i));
70 inputs_vector_info.emplace_back(inputs_vector.at(i)->info());
71 }
72 _impl->op->configure(inputs_vector_info, _impl->dst->info(), axis);
73}
74
75Status NEConcatenateLayer::validate(const std::vector<const ITensorInfo *> &inputs_vector, const ITensorInfo *output, size_t axis)
76{
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;
Georgios Pinitas4667ddd2020-07-13 21:21:33 +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