blob: 5f517a8fcbe0070b7ee08a21d4ecc36e92041c41 [file] [log] [blame]
Georgios Pinitas61ba0692021-01-10 04:07:39 +00001/*
2 * Copyright (c) 2018-2021 Arm Limited.
3 *
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 */
Georgios Pinitas7891a732021-08-20 21:39:25 +010024#include "src/cpu/operators/CpuConcatenate.h"
Georgios Pinitas61ba0692021-01-10 04:07:39 +000025
Georgios Pinitas61ba0692021-01-10 04:07:39 +000026#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"
Georgios Pinitas61ba0692021-01-10 04:07:39 +000031#include "arm_compute/core/Validate.h"
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010032#include "arm_compute/runtime/NEON/NEScheduler.h"
33
ramelg013ae3d882021-09-12 23:07:47 +010034#include "src/common/utils/Log.h"
Georgios Pinitas61ba0692021-01-10 04:07:39 +000035#include "src/core/helpers/AutoConfiguration.h"
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010036#include "src/cpu/kernels/CpuConcatenateBatchKernel.h"
37#include "src/cpu/kernels/CpuConcatenateDepthKernel.h"
38#include "src/cpu/kernels/CpuConcatenateHeightKernel.h"
39#include "src/cpu/kernels/CpuConcatenateWidthKernel.h"
Georgios Pinitas61ba0692021-01-10 04:07:39 +000040
41namespace arm_compute
42{
43namespace cpu
44{
Georgios Pinitas61ba0692021-01-10 04:07:39 +000045void CpuConcatenate::configure(const std::vector<const ITensorInfo *> &srcs_vector, ITensorInfo *dst, size_t axis)
46{
47 ARM_COMPUTE_ERROR_ON(dst == nullptr);
ramelg013ae3d882021-09-12 23:07:47 +010048 ARM_COMPUTE_LOG_PARAMS(srcs_vector, dst, axis);
Georgios Pinitas61ba0692021-01-10 04:07:39 +000049
50 _axis = axis;
51 _num_srcs = srcs_vector.size();
52
53 TensorShape dst_shape = arm_compute::misc::shape_calculator::calculate_concatenate_shape(srcs_vector, axis);
54
55 // Output auto inizialitation if not yet initialized
56 auto_init_if_empty(*dst, dst_shape, 1, srcs_vector[0]->data_type());
57 ARM_COMPUTE_ERROR_THROW_ON(CpuConcatenate::validate(srcs_vector, dst, axis));
58
59 unsigned int offset = 0;
60
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010061 for (unsigned int i = 0; i < _num_srcs; ++i)
Georgios Pinitas61ba0692021-01-10 04:07:39 +000062 {
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010063 switch (axis)
Georgios Pinitas61ba0692021-01-10 04:07:39 +000064 {
65 case Window::DimX:
66 {
67 auto kernel = std::make_unique<kernels::CpuConcatenateWidthKernel>();
68 kernel->configure(srcs_vector.at(i), offset, dst);
69 _concat_kernels.emplace_back(std::move(kernel));
70 break;
71 }
72 case Window::DimY:
73 {
74 auto kernel = std::make_unique<kernels::CpuConcatenateHeightKernel>();
75 kernel->configure(srcs_vector.at(i), offset, dst);
76 _concat_kernels.emplace_back(std::move(kernel));
77 break;
78 }
79 case Window::DimZ:
80 {
81 auto kernel = std::make_unique<kernels::CpuConcatenateDepthKernel>();
82 kernel->configure(srcs_vector.at(i), offset, dst);
83 _concat_kernels.emplace_back(std::move(kernel));
84 break;
85 }
86 case 3:
87 {
88 auto kernel = std::make_unique<kernels::CpuConcatenateBatchKernel>();
89 kernel->configure(srcs_vector.at(i), offset, dst);
90 _concat_kernels.emplace_back(std::move(kernel));
91 break;
92 }
93 default:
94 ARM_COMPUTE_ERROR("Axis not supported");
95 }
96 offset += srcs_vector.at(i)->dimension(axis);
97 }
98}
99
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100100Status
101CpuConcatenate::validate(const std::vector<const ITensorInfo *> &srcs_vector, const ITensorInfo *dst, size_t axis)
Georgios Pinitas61ba0692021-01-10 04:07:39 +0000102{
103 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(dst);
104 ARM_COMPUTE_RETURN_ERROR_ON(srcs_vector.size() < 2);
105
106 unsigned int offset = 0;
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100107 for (const auto &src : srcs_vector)
Georgios Pinitas61ba0692021-01-10 04:07:39 +0000108 {
109 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(src);
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100110 switch (axis)
Georgios Pinitas61ba0692021-01-10 04:07:39 +0000111 {
112 case Window::DimX:
113 {
114 ARM_COMPUTE_RETURN_ON_ERROR(kernels::CpuConcatenateWidthKernel::validate(src, offset, dst));
115 break;
116 }
117 case Window::DimY:
118 {
119 ARM_COMPUTE_RETURN_ON_ERROR(kernels::CpuConcatenateHeightKernel::validate(src, offset, dst));
120 break;
121 }
122 case Window::DimZ:
123 {
124 ARM_COMPUTE_RETURN_ON_ERROR(kernels::CpuConcatenateDepthKernel::validate(src, offset, dst));
125 break;
126 }
127 case 3:
128 {
129 ARM_COMPUTE_RETURN_ON_ERROR(kernels::CpuConcatenateBatchKernel::validate(src, offset, dst));
130 break;
131 }
132 default:
133 ARM_COMPUTE_ERROR("Axis not supported");
134 }
135 offset += src->dimension(axis);
136 }
137
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100138 if (dst->total_size() != 0)
Georgios Pinitas61ba0692021-01-10 04:07:39 +0000139 {
140 TensorShape dst_shape = arm_compute::misc::shape_calculator::calculate_concatenate_shape(srcs_vector, axis);
141 ARM_COMPUTE_RETURN_ERROR_ON(dst_shape.total_size() != dst->tensor_shape().total_size());
142 }
143
144 return Status{};
145}
146
147void CpuConcatenate::run(ITensorPack &tensors)
148{
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100149 if (tensors.empty())
Georgios Pinitas61ba0692021-01-10 04:07:39 +0000150 {
151 ARM_COMPUTE_ERROR("No inputs provided");
152 }
153
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100154 if (static_cast<int>(tensors.size() - 1) != static_cast<int>(_num_srcs))
Georgios Pinitas61ba0692021-01-10 04:07:39 +0000155 {
156 ARM_COMPUTE_ERROR("Configured with different number of inputs");
157 }
158
159 int i = 0;
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100160 for (auto &k : _concat_kernels)
Georgios Pinitas61ba0692021-01-10 04:07:39 +0000161 {
162 ITensorPack pack;
163 pack.add_tensor(TensorType::ACL_SRC, tensors.get_const_tensor(ACL_SRC_VEC + i));
164 pack.add_tensor(TensorType::ACL_DST, tensors.get_tensor(ACL_DST));
Sang-Hoon Park0094c022021-01-20 18:16:47 +0000165 NEScheduler::get().schedule_op(k.get(), Window::DimY, k->window(), pack);
Georgios Pinitas61ba0692021-01-10 04:07:39 +0000166 ++i;
167 }
168}
169} // namespace cpu
170} // namespace arm_compute