blob: f00b37a01bfd6ce7ed72666ad08dc6213452efa2 [file] [log] [blame]
Georgios Pinitas61ba0692021-01-10 04:07:39 +00001/*
Matthew Benthamf1aeab92023-05-30 13:35:34 +00002 * Copyright (c) 2018-2021, 2023 Arm Limited.
Georgios Pinitas61ba0692021-01-10 04:07:39 +00003 *
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/CpuConcatenateWidthKernel.h"
Georgios Pinitas61ba0692021-01-10 04:07:39 +000025
26#include "arm_compute/core/Error.h"
Matthew Benthamf1aeab92023-05-30 13:35:34 +000027#include "arm_compute/core/Steps.h"
Georgios Pinitas61ba0692021-01-10 04:07:39 +000028#include "arm_compute/core/Helpers.h"
Georgios Pinitas61ba0692021-01-10 04:07:39 +000029#include "arm_compute/core/Validate.h"
Georgios Pinitas61ba0692021-01-10 04:07:39 +000030#include "src/core/NEON/NEAsymm.h"
Georgios Pinitas61ba0692021-01-10 04:07:39 +000031#include "src/core/helpers/WindowHelpers.h"
32
Georgios Pinitas61ba0692021-01-10 04:07:39 +000033
34namespace arm_compute
35{
36namespace cpu
37{
38namespace kernels
39{
40namespace
41{
42Status validate_arguments(const ITensorInfo *src, unsigned int width_offset, const ITensorInfo *dst)
43{
44 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(src, dst);
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +000045 // 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 +000046 ARM_COMPUTE_RETURN_ERROR_ON(src->data_type() == DataType::UNKNOWN);
47 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(src, dst);
48 ARM_COMPUTE_RETURN_ERROR_ON(src->dimension(0) + width_offset > dst->dimension(0));
49
50 for(size_t i = 1; i < Coordinates::num_max_dimensions; ++i)
51 {
52 ARM_COMPUTE_RETURN_ERROR_ON(src->dimension(i) != dst->dimension(i));
53 }
54
55 return Status{};
56}
57} // namespace
58
Georgios Pinitas61ba0692021-01-10 04:07:39 +000059void CpuConcatenateWidthKernel::configure(const ITensorInfo *src, unsigned int width_offset, ITensorInfo *dst)
60{
61 ARM_COMPUTE_ERROR_ON_NULLPTR(src, dst);
62 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(src, width_offset, dst));
SiCongLib88272e2021-02-24 15:40:57 +000063 ARM_COMPUTE_UNUSED(dst);
Georgios Pinitas61ba0692021-01-10 04:07:39 +000064
65 _width_offset = width_offset;
66
67 // Configure kernel window
SiCongLib88272e2021-02-24 15:40:57 +000068 Window win = calculate_max_window(*src, Steps());
Georgios Pinitas61ba0692021-01-10 04:07:39 +000069
70 ICpuKernel::configure(win);
71}
72
73Status CpuConcatenateWidthKernel::validate(const ITensorInfo *src, unsigned int width_offset, const ITensorInfo *dst)
74{
75 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(src, width_offset, dst));
76 return Status{};
77}
78
79void CpuConcatenateWidthKernel::run_op(ITensorPack &tensors, const Window &window, const ThreadInfo &info)
80{
81 ARM_COMPUTE_UNUSED(info);
82 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
83 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(ICpuKernel::window(), window);
84
85 const auto src = tensors.get_const_tensor(TensorType::ACL_SRC);
86 auto dst = tensors.get_tensor(TensorType::ACL_DST);
87
88 // Offset output pointer to the correct position
89 uint8_t *dst_ptr = dst->buffer() + dst->info()->offset_first_element_in_bytes() + _width_offset * dst->info()->strides_in_bytes()[0];
90
91 const auto window_start_x = static_cast<int>(window.x().start());
92 const auto window_end_x = static_cast<int>(window.x().end()) * static_cast<int>(dst->info()->element_size());
93 constexpr int window_step_x = 16;
94
95 Window win{ window };
96 win.set(Window::DimX, Window::Dimension(0, 1, 1));
97
98 // Create iterators
99 Iterator src_it(src, win);
100 Iterator dst_it(dst, win);
101 const DataType dt = src->info()->data_type();
102 const UniformQuantizationInfo &src_qinfo = src->info()->quantization_info().uniform();
103 const UniformQuantizationInfo &dst_qinfo = dst->info()->quantization_info().uniform();
104 if(dt == DataType::QASYMM8 && src_qinfo != dst_qinfo)
105 {
106 execute_window_loop(win, [&](const Coordinates &)
107 {
108 int x = window_start_x;
109 for(; x <= (window_end_x - window_step_x); x += window_step_x)
110 {
111 vst1q_u8(dst_ptr + dst_it.offset() + x, vquantize(vdequantize(vld1q_u8(src_it.ptr() + x), src_qinfo), dst_qinfo));
112 }
113
114 // Compute left-over elements
115 for(; x < window_end_x; ++x)
116 {
117 *(dst_ptr + dst_it.offset() + x) = quantize_qasymm8(dequantize_qasymm8(*(src_it.ptr() + x), src_qinfo), dst_qinfo);
118 }
119 },
120 src_it, dst_it);
121 }
122 else if(dt == DataType::QASYMM8_SIGNED && src_qinfo != dst_qinfo)
123 {
124 execute_window_loop(win, [&](const Coordinates &)
125 {
126 int x = window_start_x;
127 for(; x <= (window_end_x - window_step_x); x += window_step_x)
128 {
129 vst1q_s8(reinterpret_cast<int8_t *>(dst_ptr + dst_it.offset() + x),
130 vquantize_signed(vdequantize(vld1q_s8(reinterpret_cast<int8_t *>(src_it.ptr() + x)), src_qinfo), dst_qinfo));
131 }
132
133 // Compute left-over elements
134 for(; x < window_end_x; ++x)
135 {
136 *(dst_ptr + dst_it.offset() + x) = quantize_qasymm8_signed(dequantize_qasymm8_signed(*(src_it.ptr() + x), src_qinfo), dst_qinfo);
137 }
138 },
139 src_it, dst_it);
140 }
141 else
142 {
143 execute_window_loop(win, [&](const Coordinates &)
144 {
145 const auto in_ptr = src_it.ptr();
146 const auto out_ptr = dst_ptr + dst_it.offset();
147 int x = window_start_x;
148 for(; x <= (window_end_x - window_step_x); x += window_step_x)
149 {
150 wrapper::vstore(out_ptr + x, wrapper::vloadq(in_ptr + x));
151 }
152
153 // Compute left-over elements
154 for(; x < window_end_x; ++x)
155 {
156 *(out_ptr + x) = *(in_ptr + x);
157 }
158 },
159 src_it, dst_it);
160 }
161}
162
163const char *CpuConcatenateWidthKernel::name() const
164{
165 return "CpuConcatenateWidthKernel";
166}
167} // namespace kernels
168} // namespace cpu
169} // namespace arm_compute