blob: b6c11d948b055a6d19d92b166a3d191f7daf3024 [file] [log] [blame]
Georgios Pinitas61ba0692021-01-10 04:07:39 +00001/*
2 * Copyright (c) 2019-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/kernels/CpuConcatenateHeightKernel.h"
Georgios Pinitas61ba0692021-01-10 04:07:39 +000025
26#include "arm_compute/core/Error.h"
27#include "arm_compute/core/Helpers.h"
Georgios Pinitas61ba0692021-01-10 04:07:39 +000028#include "arm_compute/core/ITensor.h"
29#include "arm_compute/core/TensorInfo.h"
30#include "arm_compute/core/Utils.h"
31#include "arm_compute/core/Validate.h"
32#include "arm_compute/core/Window.h"
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010033
Georgios Pinitas61ba0692021-01-10 04:07:39 +000034#include "src/core/helpers/AutoConfiguration.h"
35#include "src/core/helpers/WindowHelpers.h"
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010036#include "src/core/NEON/NEAsymm.h"
37#include "src/core/NEON/wrapper/wrapper.h"
Georgios Pinitas61ba0692021-01-10 04:07:39 +000038
39#include <cstdint>
40
41namespace arm_compute
42{
43namespace cpu
44{
45namespace kernels
46{
47namespace
48{
49Status validate_arguments(const ITensorInfo *src, unsigned int height_offset, const ITensorInfo *dst)
50{
51 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(src, dst);
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +000052 // Note: ARM_COMPUTE_RETURN_ERROR_ON_CPU_F16_UNSUPPORTED(src) is not needed here as this kernel doesn't use CPU FP16 instructions.
Georgios Pinitas61ba0692021-01-10 04:07:39 +000053 ARM_COMPUTE_RETURN_ERROR_ON(src->data_type() == DataType::UNKNOWN);
54 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(src, dst);
55 ARM_COMPUTE_RETURN_ERROR_ON(src->dimension(Window::DimX) != dst->dimension(Window::DimX));
56 ARM_COMPUTE_RETURN_ERROR_ON(src->dimension(Window::DimY) + height_offset > dst->dimension(Window::DimY));
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010057 for (size_t i = 2; i < Coordinates::num_max_dimensions; ++i)
Georgios Pinitas61ba0692021-01-10 04:07:39 +000058 {
59 ARM_COMPUTE_RETURN_ERROR_ON(src->dimension(i) != dst->dimension(i));
60 }
61
62 return Status{};
63}
64} // namespace
65
Georgios Pinitas61ba0692021-01-10 04:07:39 +000066void CpuConcatenateHeightKernel::configure(const ITensorInfo *src, unsigned int height_offset, ITensorInfo *dst)
67{
68 ARM_COMPUTE_UNUSED(src);
69 ARM_COMPUTE_ERROR_ON_NULLPTR(src, dst);
70 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(src, height_offset, dst));
71
72 _height_offset = height_offset;
73
74 // Configure kernel window
SiCongLib88272e2021-02-24 15:40:57 +000075 Window win = calculate_max_window(*dst, Steps());
Georgios Pinitas61ba0692021-01-10 04:07:39 +000076 ICpuKernel::configure(win);
77}
78
79Status CpuConcatenateHeightKernel::validate(const ITensorInfo *src, unsigned int height_offset, const ITensorInfo *dst)
80{
81 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(src, height_offset, dst));
82 return Status{};
83}
84
85void CpuConcatenateHeightKernel::run_op(ITensorPack &tensors, const Window &window, const ThreadInfo &info)
86{
87 ARM_COMPUTE_UNUSED(info);
88 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
89 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(ICpuKernel::window(), window);
90
91 const auto src = tensors.get_const_tensor(TensorType::ACL_SRC);
92 auto dst = tensors.get_tensor(TensorType::ACL_DST);
93
94 // Offset destination pointer to the correct position
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010095 uint8_t *dst_ptr = dst->buffer() + dst->info()->offset_first_element_in_bytes() +
96 _height_offset * dst->info()->strides_in_bytes()[Window::DimY];
Georgios Pinitas61ba0692021-01-10 04:07:39 +000097
98 const auto window_start_x = static_cast<int>(window.x().start());
99 const auto window_end_x = static_cast<int>(window.x().end()) * static_cast<int>(dst->info()->element_size());
100 const int window_step_x = 16;
101
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100102 Window win{window};
Georgios Pinitas61ba0692021-01-10 04:07:39 +0000103 win.set(Window::DimX, Window::Dimension(0, 1, 1));
104 win.set(Window::DimY, Window::Dimension(0, src->info()->tensor_shape().y(), 1));
105
106 // Create iterators
107 Iterator src_it(src, win);
108 Iterator dst_it(dst, win);
109
110 const DataType dt = src->info()->data_type();
111 const UniformQuantizationInfo &src_qinfo = src->info()->quantization_info().uniform();
112 const UniformQuantizationInfo &dst_qinfo = dst->info()->quantization_info().uniform();
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100113 if (dt == DataType::QASYMM8 && src_qinfo != dst_qinfo)
Georgios Pinitas61ba0692021-01-10 04:07:39 +0000114 {
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100115 execute_window_loop(
116 win,
117 [&](const Coordinates &)
Georgios Pinitas61ba0692021-01-10 04:07:39 +0000118 {
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100119 int x = window_start_x;
120 for (; x <= (window_end_x - window_step_x); x += window_step_x)
121 {
122 vst1q_u8(dst_ptr + dst_it.offset() + x,
123 vquantize(vdequantize(vld1q_u8(src_it.ptr() + x), src_qinfo), dst_qinfo));
124 }
Georgios Pinitas61ba0692021-01-10 04:07:39 +0000125
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100126 // Compute left-over elements
127 for (; x < window_end_x; ++x)
128 {
129 *(dst_ptr + dst_it.offset() + x) =
130 quantize_qasymm8(dequantize_qasymm8(*(src_it.ptr() + x), src_qinfo), dst_qinfo);
131 }
132 },
133 src_it, dst_it);
Georgios Pinitas61ba0692021-01-10 04:07:39 +0000134 }
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100135 else if (dt == DataType::QASYMM8_SIGNED && src_qinfo != dst_qinfo)
Georgios Pinitas61ba0692021-01-10 04:07:39 +0000136 {
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100137 execute_window_loop(
138 win,
139 [&](const Coordinates &)
Georgios Pinitas61ba0692021-01-10 04:07:39 +0000140 {
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100141 int x = window_start_x;
142 for (; x <= (window_end_x - window_step_x); x += window_step_x)
143 {
144 vst1q_s8(
145 reinterpret_cast<int8_t *>(dst_ptr + dst_it.offset() + x),
146 vquantize_signed(vdequantize(vld1q_s8(reinterpret_cast<int8_t *>(src_it.ptr()) + x), src_qinfo),
147 dst_qinfo));
148 }
Georgios Pinitas61ba0692021-01-10 04:07:39 +0000149
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100150 // Compute left-over elements
151 for (; x < window_end_x; ++x)
152 {
153 *(dst_ptr + dst_it.offset() + x) =
154 quantize_qasymm8_signed(dequantize_qasymm8_signed(*(src_it.ptr() + x), src_qinfo), dst_qinfo);
155 }
156 },
157 src_it, dst_it);
Georgios Pinitas61ba0692021-01-10 04:07:39 +0000158 }
159 else
160 {
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100161 execute_window_loop(
162 win,
163 [&](const Coordinates &)
Georgios Pinitas61ba0692021-01-10 04:07:39 +0000164 {
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100165 const auto in_ptr = src_it.ptr();
166 const auto out_ptr = dst_ptr + dst_it.offset();
Georgios Pinitas61ba0692021-01-10 04:07:39 +0000167
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100168 int x = window_start_x;
169 for (; x <= (window_end_x - window_step_x); x += window_step_x)
170 {
171 wrapper::vstore(out_ptr + x, wrapper::vloadq(in_ptr + x));
172 }
173
174 // Compute left-over elements
175 for (; x < window_end_x; ++x)
176 {
177 *(out_ptr + x) = *(in_ptr + x);
178 }
179 },
180 src_it, dst_it);
Georgios Pinitas61ba0692021-01-10 04:07:39 +0000181 }
182}
183
184const char *CpuConcatenateHeightKernel::name() const
185{
186 return "CpuConcatenateHeightKernel";
187}
188} // namespace kernels
189} // namespace cpu
190} // namespace arm_compute