blob: 9fce13cbd7aee3127c750e847b8ec6922db0889b [file] [log] [blame]
Georgios Pinitasae54e022018-07-16 15:41:27 +01001/*
Pablo Tello54e98d92019-02-05 16:16:19 +00002 * Copyright (c) 2018-2019 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/NEWidthConcatenateLayer.h"
25
26#include "arm_compute/core/Error.h"
27#include "arm_compute/core/Helpers.h"
28#include "arm_compute/core/TensorInfo.h"
29#include "arm_compute/core/Types.h"
30#include "arm_compute/core/utils/misc/ShapeCalculator.h"
31#include "arm_compute/runtime/NEON/NEScheduler.h"
32#include "arm_compute/runtime/Tensor.h"
33#include "support/ToolchainSupport.h"
34
35using namespace arm_compute;
36
37NEWidthConcatenateLayer::NEWidthConcatenateLayer()
38 : _concat_kernels_vector(),
39 _num_inputs(0)
40{
41}
42
John Kesapides917959c2019-02-04 12:37:29 +000043template <typename TensorInfoType, typename>
44inline Status NEWidthConcatenateLayer::validate_internal(const std::vector<TensorInfoType *> &inputs_vector, const ITensorInfo *output)
Georgios Pinitasae54e022018-07-16 15:41:27 +010045{
46 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(output);
47 ARM_COMPUTE_RETURN_ERROR_ON(inputs_vector.size() < 2);
48
49 // Output auto inizialitation if not yet initialized
50 TensorInfo tmp_output_info = *output->clone();
Pablo Tello3dd5b682019-03-04 14:14:02 +000051 TensorShape output_shape = arm_compute::misc::shape_calculator::calculate_concatenate_shape(inputs_vector, Window::DimX);
Georgios Pinitasae54e022018-07-16 15:41:27 +010052 auto_init_if_empty(tmp_output_info, output_shape, 1, inputs_vector[0]->data_type());
53
54 unsigned int width_offset = 0;
55 for(const auto &input : inputs_vector)
56 {
57 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(input);
58 ARM_COMPUTE_RETURN_ON_ERROR(NEWidthConcatenateLayerKernel::validate(input, width_offset, &tmp_output_info));
59 width_offset += input->dimension(0);
60 }
61
62 return Status{};
63}
John Kesapides917959c2019-02-04 12:37:29 +000064template <typename TensorType, typename>
65inline void NEWidthConcatenateLayer::configure_internal(std::vector<TensorType *> &&inputs_vector, ITensor *output)
Georgios Pinitasae54e022018-07-16 15:41:27 +010066{
67 _num_inputs = inputs_vector.size();
68
69 std::vector<ITensorInfo *> inputs_vector_info;
Pablo Tello54e98d92019-02-05 16:16:19 +000070 for(unsigned int i = 0; i < _num_inputs; ++i)
Georgios Pinitasae54e022018-07-16 15:41:27 +010071 {
72 inputs_vector_info.emplace_back(inputs_vector.at(i)->info());
73 }
Pablo Tello3dd5b682019-03-04 14:14:02 +000074 TensorShape output_shape = arm_compute::misc::shape_calculator::calculate_concatenate_shape(inputs_vector, Window::DimX);
Georgios Pinitasae54e022018-07-16 15:41:27 +010075
76 // Output auto inizialitation if not yet initialized
77 auto_init_if_empty(*output->info(), output_shape, 1, inputs_vector[0]->info()->data_type());
78 ARM_COMPUTE_ERROR_THROW_ON(NEWidthConcatenateLayer::validate(inputs_vector_info, output->info()));
79
80 unsigned int width_offset = 0;
81
82 _concat_kernels_vector = arm_compute::support::cpp14::make_unique<NEWidthConcatenateLayerKernel[]>(_num_inputs);
83
Pablo Tello54e98d92019-02-05 16:16:19 +000084 for(unsigned int i = 0; i < _num_inputs; ++i)
Georgios Pinitasae54e022018-07-16 15:41:27 +010085 {
86 _concat_kernels_vector[i].configure(inputs_vector.at(i), width_offset, output);
87 width_offset += inputs_vector.at(i)->info()->dimension(0);
88 }
89}
90
John Kesapides917959c2019-02-04 12:37:29 +000091void NEWidthConcatenateLayer::configure(std::vector<ITensor *> inputs_vector, ITensor *output)
92{
93 configure_internal(std::move(inputs_vector), output);
94}
95
96void NEWidthConcatenateLayer::configure(std::vector<const ITensor *> inputs_vector, ITensor *output)
97{
98 configure_internal(std::move(inputs_vector), output);
99}
100
101Status NEWidthConcatenateLayer::validate(const std::vector<ITensorInfo *> &inputs_vector, const ITensorInfo *output)
102{
103 return validate_internal(inputs_vector, output);
104}
105
106Status NEWidthConcatenateLayer::validate(const std::vector<const ITensorInfo *> &inputs_vector, const ITensorInfo *output)
107{
108 return validate_internal(inputs_vector, output);
109}
110
Georgios Pinitasae54e022018-07-16 15:41:27 +0100111void NEWidthConcatenateLayer::run()
112{
Pablo Tello54e98d92019-02-05 16:16:19 +0000113 for(unsigned i = 0; i < _num_inputs; ++i)
Georgios Pinitasae54e022018-07-16 15:41:27 +0100114 {
115 NEScheduler::get().schedule(_concat_kernels_vector.get() + i, Window::DimY);
116 }
117}