blob: 534076b97c4f059e4aaf999414a5f2cb925fdea6 [file] [log] [blame]
Gian Marco Iodiceab182122017-10-09 15:05:40 +01001/*
SiCongLib88272e2021-02-24 15:40:57 +00002 * Copyright (c) 2017-2021 Arm Limited.
Gian Marco Iodiceab182122017-10-09 15:05:40 +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 */
Georgios Pinitas7891a732021-08-20 21:39:25 +010024#include "src/cpu/kernels/CpuGemmLowpMatrixReductionKernel.h"
Gian Marco Iodiceab182122017-10-09 15:05:40 +010025
Gian Marco Iodiceab182122017-10-09 15:05:40 +010026#include "arm_compute/core/ITensor.h"
Michele Di Giorgioa602f032020-03-12 19:34:33 +000027#include "arm_compute/core/KernelDescriptors.h"
Gian Marco Iodiceab182122017-10-09 15:05:40 +010028#include "arm_compute/core/TensorInfo.h"
Georgios Pinitasddb93bb2020-10-02 16:38:59 +010029#include "src/core/NEON/wrapper/wrapper.h"
Sang-Hoon Park68dd25f2020-10-19 16:00:11 +010030#include "src/core/helpers/AutoConfiguration.h"
31#include "src/core/helpers/WindowHelpers.h"
Gian Marco Iodiceab182122017-10-09 15:05:40 +010032
Gian Marco Iodiceab182122017-10-09 15:05:40 +010033namespace arm_compute
34{
Manuel Bottinicfac51c2021-06-18 15:47:28 +010035namespace cpu
36{
37namespace kernels
38{
Georgios Pinitasa3b1b462017-11-16 19:24:39 +000039namespace
40{
Manuel Bottinicfac51c2021-06-18 15:47:28 +010041Status validate_arguments_matrix_a_reduction(const ITensorInfo *src, const ITensorInfo *dst, const GEMMLowpReductionKernelInfo &info)
Georgios Pinitasa3b1b462017-11-16 19:24:39 +000042{
Manuel Bottinicfac51c2021-06-18 15:47:28 +010043 ARM_COMPUTE_UNUSED(info);
44 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(src, dst);
45 ARM_COMPUTE_ERROR_ON_MSG(info.is_reshaped == true, "Not supported");
46 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(src, 1, DataType::QASYMM8, DataType::QASYMM8_SIGNED, DataType::QSYMM8, DataType::QSYMM8_PER_CHANNEL);
Georgios Pinitasa3b1b462017-11-16 19:24:39 +000047
Manuel Bottinicfac51c2021-06-18 15:47:28 +010048 if(dst->total_size() > 0)
Michele Di Giorgioa602f032020-03-12 19:34:33 +000049 {
Manuel Bottinicfac51c2021-06-18 15:47:28 +010050 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(dst, 1, DataType::S32);
51 ARM_COMPUTE_RETURN_ERROR_ON_MSG(dst->dimension(0) != src->dimension(1), "Output vector must have length equal to the number of rows of the input matrix");
Michele Di Giorgioa602f032020-03-12 19:34:33 +000052 }
Georgios Pinitas631c41a2017-12-06 11:53:03 +000053 return Status{};
Georgios Pinitasa3b1b462017-11-16 19:24:39 +000054}
Manuel Bottinicfac51c2021-06-18 15:47:28 +010055Status validate_arguments_matrix_b_reduction(const ITensorInfo *src, const ITensorInfo *dst, const GEMMLowpReductionKernelInfo &info)
Georgios Pinitasa3b1b462017-11-16 19:24:39 +000056{
Manuel Bottinicfac51c2021-06-18 15:47:28 +010057 ARM_COMPUTE_UNUSED(info);
58 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(src, dst);
59 ARM_COMPUTE_ERROR_ON_MSG(info.is_reshaped == true, "Not supported");
60 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(src, 1, DataType::QASYMM8, DataType::QASYMM8_SIGNED, DataType::QSYMM8, DataType::QSYMM8_PER_CHANNEL);
Georgios Pinitasa3b1b462017-11-16 19:24:39 +000061
Manuel Bottinicfac51c2021-06-18 15:47:28 +010062 if(dst->total_size() > 0)
Michele Di Giorgioa602f032020-03-12 19:34:33 +000063 {
Manuel Bottinicfac51c2021-06-18 15:47:28 +010064 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(dst, 1, DataType::S32);
65 ARM_COMPUTE_RETURN_ERROR_ON_MSG(dst->dimension(0) != src->dimension(0), "Output vector must have length equal to the number of columns of the input matrix");
Michele Di Giorgioa602f032020-03-12 19:34:33 +000066 }
Georgios Pinitas631c41a2017-12-06 11:53:03 +000067 return Status{};
Georgios Pinitasa3b1b462017-11-16 19:24:39 +000068}
Georgios Pinitasa3b1b462017-11-16 19:24:39 +000069} // namespace
70
Manuel Bottinicfac51c2021-06-18 15:47:28 +010071void CpuGemmLowpMatrixAReductionKernel::configure(const ITensorInfo *src, ITensorInfo *dst, const GEMMLowpReductionKernelInfo &info)
Gian Marco Iodiceab182122017-10-09 15:05:40 +010072{
Georgios Pinitasa3b1b462017-11-16 19:24:39 +000073 // Perform validate step
Manuel Bottinicfac51c2021-06-18 15:47:28 +010074 ARM_COMPUTE_ERROR_ON_NULLPTR(src, dst);
75 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments_matrix_a_reduction(src, dst, info));
Michele Di Giorgioa602f032020-03-12 19:34:33 +000076 _k = info.k;
Michele Di Giorgioa602f032020-03-12 19:34:33 +000077 _scalar = info.scalar;
78 _mul_by_scalar = info.mul_by_scalar;
Gian Marco Iodiceab182122017-10-09 15:05:40 +010079
Manuel Bottinicfac51c2021-06-18 15:47:28 +010080 switch(src->data_type())
81 {
82 case DataType::QASYMM8:
83 _func = &CpuGemmLowpMatrixAReductionKernel::run_internal<uint8_t>;
84 break;
85 case DataType::QASYMM8_SIGNED:
86 case DataType::QSYMM8:
87 case DataType::QSYMM8_PER_CHANNEL:
88 _func = &CpuGemmLowpMatrixAReductionKernel::run_internal<int8_t>;
89 break;
90 default:
91 ARM_COMPUTE_ERROR("Unsupported data type");
92 }
93
morgolockc229e8c2020-09-25 12:03:21 +010094 // Output auto initialization if not yet initialized
Manuel Bottinicfac51c2021-06-18 15:47:28 +010095 auto_init_if_empty(*dst, TensorShape(src->dimension(1)), 1, DataType::S32);
morgolockc229e8c2020-09-25 12:03:21 +010096
Manuel Bottinicfac51c2021-06-18 15:47:28 +010097 Window win = calculate_max_window(*dst, Steps(1));
98 ICpuKernel::configure(win);
Georgios Pinitasa3b1b462017-11-16 19:24:39 +000099}
Gian Marco Iodiceab182122017-10-09 15:05:40 +0100100
Manuel Bottinicfac51c2021-06-18 15:47:28 +0100101Status CpuGemmLowpMatrixAReductionKernel::validate(const ITensorInfo *src, const ITensorInfo *dst, const GEMMLowpReductionKernelInfo &info)
Georgios Pinitasa3b1b462017-11-16 19:24:39 +0000102{
Manuel Bottinicfac51c2021-06-18 15:47:28 +0100103 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments_matrix_a_reduction(src, dst, info));
Georgios Pinitas631c41a2017-12-06 11:53:03 +0000104 return Status{};
Gian Marco Iodiceab182122017-10-09 15:05:40 +0100105}
106
Georgios Pinitasdbdea0d2019-10-16 19:21:40 +0100107template <typename T>
Manuel Bottinicfac51c2021-06-18 15:47:28 +0100108void CpuGemmLowpMatrixAReductionKernel::run_internal(const ITensor *src, ITensor *dst, const arm_compute::Window &window)
Gian Marco Iodiceab182122017-10-09 15:05:40 +0100109{
Georgios Pinitasdbdea0d2019-10-16 19:21:40 +0100110 // Intermediate and final accumulator types
111 using TIAcc = wrapper::traits::promote_t<T>;
112 using TAcc = wrapper::traits::promote_t<TIAcc>;
Gian Marco Iodiceab182122017-10-09 15:05:40 +0100113
114 Window collapsed_window = window.collapse_if_possible(IKernel::window(), Window::DimY);
115
116 Window win_input(collapsed_window);
117 win_input.set(Window::DimX, Window::Dimension(0, 0, 0));
118 win_input.set(Window::DimY, Window::Dimension(0, 0, 0));
119 win_input.set(Window::DimZ, Window::Dimension(0, 0, 0));
120
Manuel Bottinicfac51c2021-06-18 15:47:28 +0100121 Iterator in(src, win_input);
122 Iterator out(dst, collapsed_window);
Gian Marco Iodiceab182122017-10-09 15:05:40 +0100123
morgolockc229e8c2020-09-25 12:03:21 +0100124 execute_window_loop(collapsed_window, [&](const Coordinates & id)
Gian Marco Iodiceab182122017-10-09 15:05:40 +0100125 {
morgolockc229e8c2020-09-25 12:03:21 +0100126 auto vsum_row = wrapper::vdup_n(static_cast<TAcc>(0), wrapper::traits::vector_128_tag{});
127 TAcc sum_row = 0;
Gian Marco Iodiceab182122017-10-09 15:05:40 +0100128
Manuel Bottinicfac51c2021-06-18 15:47:28 +0100129 const T *matrix_a = reinterpret_cast<const T *>((in.ptr() + id.x() * src->info()->strides_in_bytes()[1] + id.y() * src->info()->strides_in_bytes()[2]));
Gian Marco Iodiceab182122017-10-09 15:05:40 +0100130
131#if __arm__
morgolockc229e8c2020-09-25 12:03:21 +0100132 asm volatile("PLD [%0, #128*4]" ::"r"(matrix_a));
Gian Marco Iodiceab182122017-10-09 15:05:40 +0100133#endif /* __arm__ */
134
morgolockc229e8c2020-09-25 12:03:21 +0100135 int i = 0;
136 // This for loop performs 16 accumulations
137 for(; i <= (_k - 16); i += 16)
Gian Marco Iodiceab182122017-10-09 15:05:40 +0100138 {
morgolockc229e8c2020-09-25 12:03:21 +0100139 const auto a0_d8 = wrapper::vloadq(matrix_a + i);
Gian Marco Iodiceab182122017-10-09 15:05:40 +0100140
morgolockc229e8c2020-09-25 12:03:21 +0100141 // Partial accumulations in U16
142 const auto tmp_sum0 = wrapper::vaddl(wrapper::vgetlow(a0_d8), wrapper::vgethigh(a0_d8));
Gian Marco Iodiceab182122017-10-09 15:05:40 +0100143
morgolockc229e8c2020-09-25 12:03:21 +0100144 // Accumulate to U32
145 vsum_row = wrapper::vadd(vsum_row, wrapper::vpaddl(tmp_sum0));
146 }
Gian Marco Iodiceab182122017-10-09 15:05:40 +0100147
morgolockc229e8c2020-09-25 12:03:21 +0100148 // This for loop performs the leftover accumulations
149 for(; i < _k; ++i)
150 {
151 sum_row += static_cast<TAcc>(matrix_a[i]);
152 }
Gian Marco Iodiceab182122017-10-09 15:05:40 +0100153
154#if defined(__aarch64__)
morgolockc229e8c2020-09-25 12:03:21 +0100155 // Reduction operation available on 64 bit architectures only
156 sum_row += wrapper::vaddv(vsum_row);
Gian Marco Iodiceab182122017-10-09 15:05:40 +0100157#else // __aarch64__
morgolockc229e8c2020-09-25 12:03:21 +0100158 auto tmp = wrapper::vpadd(wrapper::vgethigh(vsum_row), wrapper::vgetlow(vsum_row));
159 tmp = wrapper::vpadd(tmp, tmp);
Gian Marco Iodiceab182122017-10-09 15:05:40 +0100160
morgolockc229e8c2020-09-25 12:03:21 +0100161 sum_row += wrapper::vgetlane(tmp, 0);
Gian Marco Iodiceab182122017-10-09 15:05:40 +0100162#endif // __aarch64__
163
morgolockc229e8c2020-09-25 12:03:21 +0100164 // Multiply by scalar if necessary
165 if(_mul_by_scalar)
166 {
167 sum_row *= _scalar;
168 }
Michele Di Giorgioa602f032020-03-12 19:34:33 +0000169
morgolockc229e8c2020-09-25 12:03:21 +0100170 *(reinterpret_cast<int *>(out.ptr())) = static_cast<int32_t>(sum_row);
171 },
172 in, out);
Gian Marco Iodiceab182122017-10-09 15:05:40 +0100173}
174
Manuel Bottinicfac51c2021-06-18 15:47:28 +0100175void CpuGemmLowpMatrixAReductionKernel::run_op(ITensorPack &tensors, const Window &window, const ThreadInfo &info)
Georgios Pinitasdbdea0d2019-10-16 19:21:40 +0100176{
177 ARM_COMPUTE_UNUSED(info);
178 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
Manuel Bottinicfac51c2021-06-18 15:47:28 +0100179 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(ICpuKernel::window(), window);
Georgios Pinitasdbdea0d2019-10-16 19:21:40 +0100180
Manuel Bottinicfac51c2021-06-18 15:47:28 +0100181 auto src = tensors.get_const_tensor(TensorType::ACL_SRC);
182 auto dst = tensors.get_tensor(TensorType::ACL_DST);
183
184 (this->*_func)(src, dst, window);
Georgios Pinitasdbdea0d2019-10-16 19:21:40 +0100185}
186
Manuel Bottinicfac51c2021-06-18 15:47:28 +0100187const char *CpuGemmLowpMatrixAReductionKernel::name() const
Gian Marco Iodiceab182122017-10-09 15:05:40 +0100188{
Manuel Bottinicfac51c2021-06-18 15:47:28 +0100189 return "CpuGemmLowpMatrixAReductionKernel";
190}
morgolockc229e8c2020-09-25 12:03:21 +0100191
Manuel Bottinicfac51c2021-06-18 15:47:28 +0100192void CpuGemmLowpMatrixBReductionKernel::configure(const ITensorInfo *src, ITensorInfo *dst, const GEMMLowpReductionKernelInfo &info)
193{
194 ARM_COMPUTE_ERROR_ON_NULLPTR(src, dst);
195 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments_matrix_b_reduction(src, dst, info));
Gian Marco Iodiceab182122017-10-09 15:05:40 +0100196
Michele Di Giorgioa602f032020-03-12 19:34:33 +0000197 _k = info.k;
Michele Di Giorgioa602f032020-03-12 19:34:33 +0000198 _scalar = info.scalar;
199 _mul_by_scalar = info.mul_by_scalar;
Gian Marco Iodiceab182122017-10-09 15:05:40 +0100200
Gian Marco Iodiceab182122017-10-09 15:05:40 +0100201 // Configure kernel window
morgolockc229e8c2020-09-25 12:03:21 +0100202 constexpr unsigned int num_elems_processed_per_iteration = 16;
203
Manuel Bottinicfac51c2021-06-18 15:47:28 +0100204 switch(src->data_type())
205 {
206 case DataType::QASYMM8:
207 _func = &CpuGemmLowpMatrixBReductionKernel::run_internal<uint8_t>;
208 break;
209 case DataType::QASYMM8_SIGNED:
210 case DataType::QSYMM8:
211 case DataType::QSYMM8_PER_CHANNEL:
212 _func = &CpuGemmLowpMatrixBReductionKernel::run_internal<int8_t>;
213 break;
214 default:
215 ARM_COMPUTE_ERROR("Unsupported data type");
216 }
217
morgolockc229e8c2020-09-25 12:03:21 +0100218 // Output auto initialization if not yet initialized
Manuel Bottinicfac51c2021-06-18 15:47:28 +0100219 auto_init_if_empty(*dst, TensorShape(src->dimension(0)), 1, DataType::S32);
morgolockc229e8c2020-09-25 12:03:21 +0100220
221 // Configure kernel window
Manuel Bottinicfac51c2021-06-18 15:47:28 +0100222 Window win = calculate_max_window_horizontal(*dst, Steps(num_elems_processed_per_iteration));
223 ICpuKernel::configure(win);
Georgios Pinitasa3b1b462017-11-16 19:24:39 +0000224}
Gian Marco Iodiceab182122017-10-09 15:05:40 +0100225
Manuel Bottinicfac51c2021-06-18 15:47:28 +0100226Status CpuGemmLowpMatrixBReductionKernel::validate(const ITensorInfo *src, const ITensorInfo *dst, const GEMMLowpReductionKernelInfo &info)
Georgios Pinitasa3b1b462017-11-16 19:24:39 +0000227{
Manuel Bottinicfac51c2021-06-18 15:47:28 +0100228 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments_matrix_b_reduction(src, dst, info));
Georgios Pinitas631c41a2017-12-06 11:53:03 +0000229 return Status{};
Gian Marco Iodiceab182122017-10-09 15:05:40 +0100230}
231
Georgios Pinitasdbdea0d2019-10-16 19:21:40 +0100232template <typename T>
Manuel Bottinicfac51c2021-06-18 15:47:28 +0100233void CpuGemmLowpMatrixBReductionKernel::run_internal(const ITensor *src, ITensor *dst, const Window &window, const ThreadInfo &info)
Gian Marco Iodiceab182122017-10-09 15:05:40 +0100234{
Georgios Pinitasdbdea0d2019-10-16 19:21:40 +0100235 // Intermediate and final accumulator types
236 using TIAcc = wrapper::traits::promote_t<T>;
237 using TAcc = wrapper::traits::promote_t<TIAcc>;
Gian Marco Iodiceab182122017-10-09 15:05:40 +0100238
morgolockc229e8c2020-09-25 12:03:21 +0100239 Window collapsed_window = window.collapse_if_possible(IKernel::window(), Window::DimY);
240 const auto vec_scalar = wrapper::vdup_n(static_cast<TAcc>(_scalar), wrapper::traits::vector_128_tag{});
Gian Marco Iodiceab182122017-10-09 15:05:40 +0100241
Manuel Bottinicfac51c2021-06-18 15:47:28 +0100242 const auto width_matrix_b = static_cast<int>(src->info()->dimension(0));
243 const auto in_b_stride = static_cast<int>(src->info()->strides_in_bytes()[1]);
Michele Di Giorgioa602f032020-03-12 19:34:33 +0000244
morgolockc229e8c2020-09-25 12:03:21 +0100245 // The implementation computes 16 elements per iteration
246 const int window_start_x = 16 * info.thread_id;
247 const int window_step_x = 16 * info.num_threads;
248 // Make sure (window_end_x - window_start_x) is a multiple of window_step_x
249 const int window_end_x = ceil_to_multiple(width_matrix_b - window_start_x, window_step_x) + window_start_x;
250
251 Window win_out(collapsed_window);
252 win_out.set(Window::DimX, Window::Dimension(window_start_x, window_end_x, window_step_x));
253
254 Window win_in(win_out);
255 win_in.set(Window::DimY, Window::Dimension(0, 0, 0));
256 win_in.set(Window::DimZ, Window::Dimension(0, 0, 0));
257
Manuel Bottinicfac51c2021-06-18 15:47:28 +0100258 Iterator inb(src, win_in);
259 Iterator out(dst, win_out);
morgolockc229e8c2020-09-25 12:03:21 +0100260
261 execute_window_loop(win_out, [&](const Coordinates & id)
Gian Marco Iodiceab182122017-10-09 15:05:40 +0100262 {
morgolockc229e8c2020-09-25 12:03:21 +0100263 if(id.x() > width_matrix_b)
Gian Marco Iodiceab182122017-10-09 15:05:40 +0100264 {
morgolockc229e8c2020-09-25 12:03:21 +0100265 return;
266 }
Gian Marco Iodiceab182122017-10-09 15:05:40 +0100267
morgolockc229e8c2020-09-25 12:03:21 +0100268 // Note: Since the input is unsigned char, we can safely use unsigned int for the accumulation
269 typename wrapper::traits::neon_bitvector<TAcc, wrapper::traits::BitWidth::W128>::type sum_col[4] =
270 {
271 wrapper::vdup_n(static_cast<TAcc>(0), wrapper::traits::vector_128_tag{}),
272 wrapper::vdup_n(static_cast<TAcc>(0), wrapper::traits::vector_128_tag{}),
273 wrapper::vdup_n(static_cast<TAcc>(0), wrapper::traits::vector_128_tag{}),
274 wrapper::vdup_n(static_cast<TAcc>(0), wrapper::traits::vector_128_tag{})
275 };
276
Manuel Bottinicfac51c2021-06-18 15:47:28 +0100277 const auto *matrix_b = reinterpret_cast<const T *>(inb.ptr() + id.y() * src->info()->strides_in_bytes()[2]);
Gian Marco Iodiceab182122017-10-09 15:05:40 +0100278
279#if __arm__
morgolockc229e8c2020-09-25 12:03:21 +0100280 asm volatile("PLD [%0, #128*4]" ::"r"(matrix_b));
281 asm volatile("PLD [%0, #128*4]" ::"r"(matrix_b + in_b_stride));
Gian Marco Iodiceab182122017-10-09 15:05:40 +0100282#endif /* __arm__ */
283
morgolockc229e8c2020-09-25 12:03:21 +0100284 int i = 0;
285 // This for loop performs 4 accumulations
286 for(; i <= (_k - 4); i += 4)
287 {
288 const auto b0_u8 = wrapper::vloadq(matrix_b + 0 * in_b_stride);
289 const auto b1_u8 = wrapper::vloadq(matrix_b + 1 * in_b_stride);
290 const auto b2_u8 = wrapper::vloadq(matrix_b + 2 * in_b_stride);
291 const auto b3_u8 = wrapper::vloadq(matrix_b + 3 * in_b_stride);
292
293#if __arm__
294 asm volatile("PLD [%0, #128*1]" ::"r"(matrix_b + 1 * in_b_stride));
295 asm volatile("PLD [%0, #128*1]" ::"r"(matrix_b + 2 * in_b_stride));
296 asm volatile("PLD [%0, #128*1]" ::"r"(matrix_b + 3 * in_b_stride));
297 asm volatile("PLD [%0, #128*1]" ::"r"(matrix_b + 4 * in_b_stride));
298#endif /* __arm__ */
299
300 // Partial accumulation in 16bit
301 typename wrapper::traits::neon_bitvector<TIAcc, wrapper::traits::BitWidth::W128>::type tmp_sum[2] =
Gian Marco Iodiceab182122017-10-09 15:05:40 +0100302 {
morgolockc229e8c2020-09-25 12:03:21 +0100303 wrapper::vdup_n(static_cast<TIAcc>(0), wrapper::traits::vector_128_tag{}),
304 wrapper::vdup_n(static_cast<TIAcc>(0), wrapper::traits::vector_128_tag{})
305 };
Gian Marco Iodiceab182122017-10-09 15:05:40 +0100306
morgolockc229e8c2020-09-25 12:03:21 +0100307 tmp_sum[0] = wrapper::vaddw(tmp_sum[0], wrapper::vgetlow(b1_u8));
308 tmp_sum[0] = wrapper::vaddw(tmp_sum[0], wrapper::vgetlow(b0_u8));
309 tmp_sum[0] = wrapper::vaddw(tmp_sum[0], wrapper::vgetlow(b2_u8));
310 tmp_sum[0] = wrapper::vaddw(tmp_sum[0], wrapper::vgetlow(b3_u8));
311 tmp_sum[1] = wrapper::vaddw(tmp_sum[1], wrapper::vgethigh(b0_u8));
312 tmp_sum[1] = wrapper::vaddw(tmp_sum[1], wrapper::vgethigh(b1_u8));
313 tmp_sum[1] = wrapper::vaddw(tmp_sum[1], wrapper::vgethigh(b2_u8));
314 tmp_sum[1] = wrapper::vaddw(tmp_sum[1], wrapper::vgethigh(b3_u8));
Gian Marco Iodiceab182122017-10-09 15:05:40 +0100315
morgolockc229e8c2020-09-25 12:03:21 +0100316 // Accumulate to 32bit
317 sum_col[0] = wrapper::vaddw(sum_col[0], wrapper::vgetlow(tmp_sum[0]));
318 sum_col[1] = wrapper::vaddw(sum_col[1], wrapper::vgethigh(tmp_sum[0]));
319 sum_col[2] = wrapper::vaddw(sum_col[2], wrapper::vgetlow(tmp_sum[1]));
320 sum_col[3] = wrapper::vaddw(sum_col[3], wrapper::vgethigh(tmp_sum[1]));
Gian Marco Iodiceab182122017-10-09 15:05:40 +0100321
morgolockc229e8c2020-09-25 12:03:21 +0100322 matrix_b += 4 * in_b_stride;
323 }
324
325 // This for loop perfoms the leftover accumulations
326 for(; i < _k; ++i)
327 {
328 const auto b0_b8 = wrapper::vloadq(matrix_b + 0 * in_b_stride);
329
330 // Convert S8 to S16
331 const typename wrapper::traits::neon_bitvector<TIAcc, wrapper::traits::BitWidth::W128>::type b0_b16[2]
Michele Di Giorgioa602f032020-03-12 19:34:33 +0000332 {
morgolockc229e8c2020-09-25 12:03:21 +0100333 wrapper::vmovl(wrapper::vgetlow(b0_b8)),
334 wrapper::vmovl(wrapper::vgethigh(b0_b8))
335 };
Michele Di Giorgioa602f032020-03-12 19:34:33 +0000336
morgolockc229e8c2020-09-25 12:03:21 +0100337 // Accumulate to 32bit
338 sum_col[0] = wrapper::vaddw(sum_col[0], wrapper::vgetlow(b0_b16[0]));
339 sum_col[1] = wrapper::vaddw(sum_col[1], wrapper::vgethigh(b0_b16[0]));
340 sum_col[2] = wrapper::vaddw(sum_col[2], wrapper::vgetlow(b0_b16[1]));
341 sum_col[3] = wrapper::vaddw(sum_col[3], wrapper::vgethigh(b0_b16[1]));
Gian Marco Iodiceab182122017-10-09 15:05:40 +0100342
morgolockc229e8c2020-09-25 12:03:21 +0100343 matrix_b += in_b_stride;
344 }
345
346 // Multiply by scalar if necessary
347 if(_mul_by_scalar)
348 {
349 sum_col[0] = wrapper::vmul(sum_col[0], vec_scalar);
350 sum_col[1] = wrapper::vmul(sum_col[1], vec_scalar);
351 sum_col[2] = wrapper::vmul(sum_col[2], vec_scalar);
352 sum_col[3] = wrapper::vmul(sum_col[3], vec_scalar);
353 }
354
355 auto vector_sum_col = reinterpret_cast<int32_t *>(out.ptr());
356 if(id.x() + 16 < width_matrix_b)
357 {
Michele Di Giorgio13ec5f02020-01-02 12:11:13 +0000358 wrapper::vstore(vector_sum_col + 0, wrapper::vreinterpret(sum_col[0]));
359 wrapper::vstore(vector_sum_col + 4, wrapper::vreinterpret(sum_col[1]));
360 wrapper::vstore(vector_sum_col + 8, wrapper::vreinterpret(sum_col[2]));
361 wrapper::vstore(vector_sum_col + 12, wrapper::vreinterpret(sum_col[3]));
morgolockc229e8c2020-09-25 12:03:21 +0100362 }
363 else
Gian Marco Iodiceab182122017-10-09 15:05:40 +0100364 {
morgolockc229e8c2020-09-25 12:03:21 +0100365 auto left_over = width_matrix_b - id.x();
366 for(auto k = 0; k < 4 && left_over; ++k)
Gian Marco Iodiceab182122017-10-09 15:05:40 +0100367 {
morgolockc229e8c2020-09-25 12:03:21 +0100368 for(auto j = 0; j < 4 && left_over; ++j, --left_over)
Gian Marco Iodiceab182122017-10-09 15:05:40 +0100369 {
morgolockc229e8c2020-09-25 12:03:21 +0100370 *(vector_sum_col + k * 4 + j) = sum_col[k][j];
371 }
Gian Marco Iodiceab182122017-10-09 15:05:40 +0100372 }
morgolockc229e8c2020-09-25 12:03:21 +0100373 }
374 },
375 inb, out);
Pablo Tello6ff12a02017-11-02 16:09:35 +0000376}
Georgios Pinitasdbdea0d2019-10-16 19:21:40 +0100377
Manuel Bottinicfac51c2021-06-18 15:47:28 +0100378void CpuGemmLowpMatrixBReductionKernel::run_op(ITensorPack &tensors, const Window &window, const ThreadInfo &info)
Georgios Pinitasdbdea0d2019-10-16 19:21:40 +0100379{
380 ARM_COMPUTE_UNUSED(info);
381 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
Manuel Bottinicfac51c2021-06-18 15:47:28 +0100382 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(ICpuKernel::window(), window);
Georgios Pinitasdbdea0d2019-10-16 19:21:40 +0100383
Manuel Bottinicfac51c2021-06-18 15:47:28 +0100384 auto src = tensors.get_const_tensor(TensorType::ACL_SRC);
385 auto dst = tensors.get_tensor(TensorType::ACL_DST);
386
387 (this->*_func)(src, dst, window, info);
Georgios Pinitasdbdea0d2019-10-16 19:21:40 +0100388}
Manuel Bottinicfac51c2021-06-18 15:47:28 +0100389
390const char *CpuGemmLowpMatrixBReductionKernel::name() const
391{
392 return "CpuGemmLowpMatrixBReductionKernel";
393}
394} // namespace kernels
395} // namespace cpu
396} // namespace arm_compute