blob: 566872f02cd90f4c7f23a1f0f4969ee0e9e845a1 [file] [log] [blame]
Gian Marco Iodiceab182122017-10-09 15:05:40 +01001/*
Michele Di Giorgiod9eaf612020-07-08 11:12:57 +01002 * Copyright (c) 2017-2020 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 */
24#include "arm_compute/core/NEON/kernels/NEGEMMLowpReductionKernel.h"
25
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"
Sang-Hoon Park68dd25f2020-10-19 16:00:11 +010029#include "src/core/AccessWindowStatic.h"
Georgios Pinitasddb93bb2020-10-02 16:38:59 +010030#include "src/core/NEON/wrapper/wrapper.h"
Sang-Hoon Park68dd25f2020-10-19 16:00:11 +010031#include "src/core/helpers/AutoConfiguration.h"
32#include "src/core/helpers/WindowHelpers.h"
Gian Marco Iodiceab182122017-10-09 15:05:40 +010033
Gian Marco Iodiceab182122017-10-09 15:05:40 +010034namespace arm_compute
35{
Georgios Pinitasa3b1b462017-11-16 19:24:39 +000036namespace
37{
Georgios Pinitas631c41a2017-12-06 11:53:03 +000038Status validate_arguments_matrix_a_reduction(const ITensorInfo *input, const ITensorInfo *output)
Georgios Pinitasa3b1b462017-11-16 19:24:39 +000039{
Michele Di Giorgioa602f032020-03-12 19:34:33 +000040 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(input, output);
Michele Di Giorgiof9b595a2020-07-03 13:34:52 +010041 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input, 1, DataType::QASYMM8, DataType::QASYMM8_SIGNED, DataType::QSYMM8, DataType::QSYMM8_PER_CHANNEL);
Georgios Pinitasa3b1b462017-11-16 19:24:39 +000042
Michele Di Giorgioa602f032020-03-12 19:34:33 +000043 if(output->total_size() > 0)
44 {
45 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(output, 1, DataType::S32);
46 ARM_COMPUTE_RETURN_ERROR_ON_MSG(output->dimension(0) != input->dimension(1), "Output vector must have length equal to the number of rows of the input matrix");
47 }
Georgios Pinitas631c41a2017-12-06 11:53:03 +000048 return Status{};
Georgios Pinitasa3b1b462017-11-16 19:24:39 +000049}
Georgios Pinitas631c41a2017-12-06 11:53:03 +000050Status validate_arguments_matrix_b_reduction(const ITensorInfo *input, const ITensorInfo *output)
Georgios Pinitasa3b1b462017-11-16 19:24:39 +000051{
Michele Di Giorgioa602f032020-03-12 19:34:33 +000052 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(input, output);
Michele Di Giorgio47a89902020-03-09 19:32:33 +000053 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input, 1, DataType::QASYMM8, DataType::QASYMM8_SIGNED, DataType::QSYMM8, DataType::QSYMM8_PER_CHANNEL);
Georgios Pinitasa3b1b462017-11-16 19:24:39 +000054
Michele Di Giorgioa602f032020-03-12 19:34:33 +000055 if(output->total_size() > 0)
56 {
57 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(output, 1, DataType::S32);
58 ARM_COMPUTE_RETURN_ERROR_ON_MSG(output->dimension(0) != input->dimension(0), "Output vector must have length equal to the number of columns of the input matrix");
59 }
Georgios Pinitas631c41a2017-12-06 11:53:03 +000060 return Status{};
Georgios Pinitasa3b1b462017-11-16 19:24:39 +000061}
Georgios Pinitasa3b1b462017-11-16 19:24:39 +000062} // namespace
63
Gian Marco Iodiceab182122017-10-09 15:05:40 +010064INEGEMMLowpReductionKernel::INEGEMMLowpReductionKernel()
morgolockc229e8c2020-09-25 12:03:21 +010065 : _input(), _output(), _k(0), _scalar(0), _mul_by_scalar(false)
Gian Marco Iodiceab182122017-10-09 15:05:40 +010066{
67}
68
Michele Di Giorgioa602f032020-03-12 19:34:33 +000069void NEGEMMLowpMatrixAReductionKernel::configure(const ITensor *mtx_a, ITensor *vector_sum_row, const GEMMLowpReductionKernelInfo &info)
Gian Marco Iodiceab182122017-10-09 15:05:40 +010070{
Georgios Pinitasa3b1b462017-11-16 19:24:39 +000071 // Perform validate step
72 ARM_COMPUTE_ERROR_ON_NULLPTR(mtx_a, vector_sum_row);
morgolockc229e8c2020-09-25 12:03:21 +010073 ARM_COMPUTE_ERROR_ON_MSG(info.is_reshaped == true, "Not supported");
Georgios Pinitasa3b1b462017-11-16 19:24:39 +000074 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments_matrix_a_reduction(mtx_a->info(), vector_sum_row->info()));
Michele Di Giorgioa602f032020-03-12 19:34:33 +000075 _input = mtx_a;
76 _output = vector_sum_row;
77 _k = info.k;
Michele Di Giorgioa602f032020-03-12 19:34:33 +000078 _scalar = info.scalar;
79 _mul_by_scalar = info.mul_by_scalar;
Gian Marco Iodiceab182122017-10-09 15:05:40 +010080
morgolockc229e8c2020-09-25 12:03:21 +010081 // Output auto initialization if not yet initialized
82 auto_init_if_empty(*_output->info(), TensorShape(_input->info()->dimension(1)), 1, DataType::S32);
83
84 Window win = calculate_max_window(*_output->info(), Steps(1));
85 _output->info()->set_valid_region(ValidRegion(Coordinates(), _output->info()->tensor_shape()));
86
87 INEKernel::configure(win);
Georgios Pinitasa3b1b462017-11-16 19:24:39 +000088}
Gian Marco Iodiceab182122017-10-09 15:05:40 +010089
Michele Di Giorgioa602f032020-03-12 19:34:33 +000090Status NEGEMMLowpMatrixAReductionKernel::validate(const ITensorInfo *mtx_a, const ITensorInfo *vector_sum_row, const GEMMLowpReductionKernelInfo &info)
Georgios Pinitasa3b1b462017-11-16 19:24:39 +000091{
morgolockc229e8c2020-09-25 12:03:21 +010092 ARM_COMPUTE_UNUSED(info);
Georgios Pinitasa3b1b462017-11-16 19:24:39 +000093 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments_matrix_a_reduction(mtx_a, vector_sum_row));
Georgios Pinitas631c41a2017-12-06 11:53:03 +000094 return Status{};
Gian Marco Iodiceab182122017-10-09 15:05:40 +010095}
96
Georgios Pinitasdbdea0d2019-10-16 19:21:40 +010097template <typename T>
98void NEGEMMLowpMatrixAReductionKernel::run_internal(const arm_compute::Window &window)
Gian Marco Iodiceab182122017-10-09 15:05:40 +010099{
Georgios Pinitasdbdea0d2019-10-16 19:21:40 +0100100 // Intermediate and final accumulator types
101 using TIAcc = wrapper::traits::promote_t<T>;
102 using TAcc = wrapper::traits::promote_t<TIAcc>;
Gian Marco Iodiceab182122017-10-09 15:05:40 +0100103
104 Window collapsed_window = window.collapse_if_possible(IKernel::window(), Window::DimY);
105
106 Window win_input(collapsed_window);
107 win_input.set(Window::DimX, Window::Dimension(0, 0, 0));
108 win_input.set(Window::DimY, Window::Dimension(0, 0, 0));
109 win_input.set(Window::DimZ, Window::Dimension(0, 0, 0));
110
111 Iterator in(_input, win_input);
112 Iterator out(_output, collapsed_window);
113
morgolockc229e8c2020-09-25 12:03:21 +0100114 execute_window_loop(collapsed_window, [&](const Coordinates & id)
Gian Marco Iodiceab182122017-10-09 15:05:40 +0100115 {
morgolockc229e8c2020-09-25 12:03:21 +0100116 auto vsum_row = wrapper::vdup_n(static_cast<TAcc>(0), wrapper::traits::vector_128_tag{});
117 TAcc sum_row = 0;
Gian Marco Iodiceab182122017-10-09 15:05:40 +0100118
morgolockc229e8c2020-09-25 12:03:21 +0100119 const T *matrix_a = reinterpret_cast<const T *>((in.ptr() + id.x() * _input->info()->strides_in_bytes()[1] + id.y() * _input->info()->strides_in_bytes()[2]));
Gian Marco Iodiceab182122017-10-09 15:05:40 +0100120
121#if __arm__
morgolockc229e8c2020-09-25 12:03:21 +0100122 asm volatile("PLD [%0, #128*4]" ::"r"(matrix_a));
Gian Marco Iodiceab182122017-10-09 15:05:40 +0100123#endif /* __arm__ */
124
morgolockc229e8c2020-09-25 12:03:21 +0100125 int i = 0;
126 // This for loop performs 16 accumulations
127 for(; i <= (_k - 16); i += 16)
Gian Marco Iodiceab182122017-10-09 15:05:40 +0100128 {
morgolockc229e8c2020-09-25 12:03:21 +0100129 const auto a0_d8 = wrapper::vloadq(matrix_a + i);
Gian Marco Iodiceab182122017-10-09 15:05:40 +0100130
morgolockc229e8c2020-09-25 12:03:21 +0100131 // Partial accumulations in U16
132 const auto tmp_sum0 = wrapper::vaddl(wrapper::vgetlow(a0_d8), wrapper::vgethigh(a0_d8));
Gian Marco Iodiceab182122017-10-09 15:05:40 +0100133
morgolockc229e8c2020-09-25 12:03:21 +0100134 // Accumulate to U32
135 vsum_row = wrapper::vadd(vsum_row, wrapper::vpaddl(tmp_sum0));
136 }
Gian Marco Iodiceab182122017-10-09 15:05:40 +0100137
morgolockc229e8c2020-09-25 12:03:21 +0100138 // This for loop performs the leftover accumulations
139 for(; i < _k; ++i)
140 {
141 sum_row += static_cast<TAcc>(matrix_a[i]);
142 }
Gian Marco Iodiceab182122017-10-09 15:05:40 +0100143
144#if defined(__aarch64__)
morgolockc229e8c2020-09-25 12:03:21 +0100145 // Reduction operation available on 64 bit architectures only
146 sum_row += wrapper::vaddv(vsum_row);
Gian Marco Iodiceab182122017-10-09 15:05:40 +0100147#else // __aarch64__
morgolockc229e8c2020-09-25 12:03:21 +0100148 auto tmp = wrapper::vpadd(wrapper::vgethigh(vsum_row), wrapper::vgetlow(vsum_row));
149 tmp = wrapper::vpadd(tmp, tmp);
Gian Marco Iodiceab182122017-10-09 15:05:40 +0100150
morgolockc229e8c2020-09-25 12:03:21 +0100151 sum_row += wrapper::vgetlane(tmp, 0);
Gian Marco Iodiceab182122017-10-09 15:05:40 +0100152#endif // __aarch64__
153
morgolockc229e8c2020-09-25 12:03:21 +0100154 // Multiply by scalar if necessary
155 if(_mul_by_scalar)
156 {
157 sum_row *= _scalar;
158 }
Michele Di Giorgioa602f032020-03-12 19:34:33 +0000159
morgolockc229e8c2020-09-25 12:03:21 +0100160 *(reinterpret_cast<int *>(out.ptr())) = static_cast<int32_t>(sum_row);
161 },
162 in, out);
Gian Marco Iodiceab182122017-10-09 15:05:40 +0100163}
164
Georgios Pinitasdbdea0d2019-10-16 19:21:40 +0100165void NEGEMMLowpMatrixAReductionKernel::run(const Window &window, const ThreadInfo &info)
166{
167 ARM_COMPUTE_UNUSED(info);
168 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
169 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(INEKernel::window(), window);
170
171 switch(_input->info()->data_type())
172 {
173 case DataType::QASYMM8:
174 run_internal<uint8_t>(window);
175 break;
176 case DataType::QASYMM8_SIGNED:
Michele Di Giorgio47a89902020-03-09 19:32:33 +0000177 case DataType::QSYMM8:
Georgios Pinitasdbdea0d2019-10-16 19:21:40 +0100178 case DataType::QSYMM8_PER_CHANNEL:
179 run_internal<int8_t>(window);
180 break;
181 default:
182 ARM_COMPUTE_ERROR("Unsupported data type");
183 }
184}
185
Michele Di Giorgioa602f032020-03-12 19:34:33 +0000186void NEGEMMLowpMatrixBReductionKernel::configure(const ITensor *mtx_b, ITensor *vector_sum_col, const GEMMLowpReductionKernelInfo &info)
Gian Marco Iodiceab182122017-10-09 15:05:40 +0100187{
Georgios Pinitasa3b1b462017-11-16 19:24:39 +0000188 ARM_COMPUTE_ERROR_ON_NULLPTR(mtx_b, vector_sum_col);
morgolockc229e8c2020-09-25 12:03:21 +0100189 ARM_COMPUTE_ERROR_ON_MSG(info.is_reshaped == true, "Not supported");
190
Georgios Pinitasa3b1b462017-11-16 19:24:39 +0000191 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments_matrix_b_reduction(mtx_b->info(), vector_sum_col->info()));
Gian Marco Iodiceab182122017-10-09 15:05:40 +0100192
Michele Di Giorgioa602f032020-03-12 19:34:33 +0000193 _input = mtx_b;
194 _output = vector_sum_col;
195 _k = info.k;
Michele Di Giorgioa602f032020-03-12 19:34:33 +0000196 _scalar = info.scalar;
197 _mul_by_scalar = info.mul_by_scalar;
Gian Marco Iodiceab182122017-10-09 15:05:40 +0100198
Gian Marco Iodiceab182122017-10-09 15:05:40 +0100199 // Configure kernel window
morgolockc229e8c2020-09-25 12:03:21 +0100200 constexpr unsigned int num_elems_processed_per_iteration = 16;
201
202 // Output auto initialization if not yet initialized
203 auto_init_if_empty(*_output->info(), TensorShape(_input->info()->dimension(0)), 1, DataType::S32);
204
205 // Configure kernel window
206 Window win = calculate_max_window_horizontal(*_output->info(), Steps(num_elems_processed_per_iteration));
207 _output->info()->set_valid_region(ValidRegion(Coordinates(), _output->info()->tensor_shape()));
208 INEKernel::configure(win);
Georgios Pinitasa3b1b462017-11-16 19:24:39 +0000209}
Gian Marco Iodiceab182122017-10-09 15:05:40 +0100210
Michele Di Giorgioa602f032020-03-12 19:34:33 +0000211Status NEGEMMLowpMatrixBReductionKernel::validate(const ITensorInfo *mtx_b, const ITensorInfo *vector_sum_col, const GEMMLowpReductionKernelInfo &info)
Georgios Pinitasa3b1b462017-11-16 19:24:39 +0000212{
Michele Di Giorgioa602f032020-03-12 19:34:33 +0000213 ARM_COMPUTE_UNUSED(info);
Georgios Pinitasa3b1b462017-11-16 19:24:39 +0000214 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments_matrix_b_reduction(mtx_b, vector_sum_col));
Gian Marco Iodiceab182122017-10-09 15:05:40 +0100215
Georgios Pinitas631c41a2017-12-06 11:53:03 +0000216 return Status{};
Gian Marco Iodiceab182122017-10-09 15:05:40 +0100217}
218
Georgios Pinitasdbdea0d2019-10-16 19:21:40 +0100219template <typename T>
220void NEGEMMLowpMatrixBReductionKernel::run_internal(const Window &window, const ThreadInfo &info)
Gian Marco Iodiceab182122017-10-09 15:05:40 +0100221{
Georgios Pinitasdbdea0d2019-10-16 19:21:40 +0100222 // Intermediate and final accumulator types
223 using TIAcc = wrapper::traits::promote_t<T>;
224 using TAcc = wrapper::traits::promote_t<TIAcc>;
Gian Marco Iodiceab182122017-10-09 15:05:40 +0100225
morgolockc229e8c2020-09-25 12:03:21 +0100226 Window collapsed_window = window.collapse_if_possible(IKernel::window(), Window::DimY);
227 const auto vec_scalar = wrapper::vdup_n(static_cast<TAcc>(_scalar), wrapper::traits::vector_128_tag{});
Gian Marco Iodiceab182122017-10-09 15:05:40 +0100228
morgolockc229e8c2020-09-25 12:03:21 +0100229 const auto width_matrix_b = static_cast<int>(_input->info()->dimension(0));
230 const auto in_b_stride = static_cast<int>(_input->info()->strides_in_bytes()[1]);
Michele Di Giorgioa602f032020-03-12 19:34:33 +0000231
morgolockc229e8c2020-09-25 12:03:21 +0100232 // The implementation computes 16 elements per iteration
233 const int window_start_x = 16 * info.thread_id;
234 const int window_step_x = 16 * info.num_threads;
235 // Make sure (window_end_x - window_start_x) is a multiple of window_step_x
236 const int window_end_x = ceil_to_multiple(width_matrix_b - window_start_x, window_step_x) + window_start_x;
237
238 Window win_out(collapsed_window);
239 win_out.set(Window::DimX, Window::Dimension(window_start_x, window_end_x, window_step_x));
240
241 Window win_in(win_out);
242 win_in.set(Window::DimY, Window::Dimension(0, 0, 0));
243 win_in.set(Window::DimZ, Window::Dimension(0, 0, 0));
244
245 Iterator inb(_input, win_in);
246 Iterator out(_output, win_out);
247
248 execute_window_loop(win_out, [&](const Coordinates & id)
Gian Marco Iodiceab182122017-10-09 15:05:40 +0100249 {
morgolockc229e8c2020-09-25 12:03:21 +0100250 if(id.x() > width_matrix_b)
Gian Marco Iodiceab182122017-10-09 15:05:40 +0100251 {
morgolockc229e8c2020-09-25 12:03:21 +0100252 return;
253 }
Gian Marco Iodiceab182122017-10-09 15:05:40 +0100254
morgolockc229e8c2020-09-25 12:03:21 +0100255 // Note: Since the input is unsigned char, we can safely use unsigned int for the accumulation
256 typename wrapper::traits::neon_bitvector<TAcc, wrapper::traits::BitWidth::W128>::type sum_col[4] =
257 {
258 wrapper::vdup_n(static_cast<TAcc>(0), wrapper::traits::vector_128_tag{}),
259 wrapper::vdup_n(static_cast<TAcc>(0), wrapper::traits::vector_128_tag{}),
260 wrapper::vdup_n(static_cast<TAcc>(0), wrapper::traits::vector_128_tag{}),
261 wrapper::vdup_n(static_cast<TAcc>(0), wrapper::traits::vector_128_tag{})
262 };
263
264 const auto *matrix_b = reinterpret_cast<const T *>(inb.ptr() + id.y() * _input->info()->strides_in_bytes()[2]);
Gian Marco Iodiceab182122017-10-09 15:05:40 +0100265
266#if __arm__
morgolockc229e8c2020-09-25 12:03:21 +0100267 asm volatile("PLD [%0, #128*4]" ::"r"(matrix_b));
268 asm volatile("PLD [%0, #128*4]" ::"r"(matrix_b + in_b_stride));
Gian Marco Iodiceab182122017-10-09 15:05:40 +0100269#endif /* __arm__ */
270
morgolockc229e8c2020-09-25 12:03:21 +0100271 int i = 0;
272 // This for loop performs 4 accumulations
273 for(; i <= (_k - 4); i += 4)
274 {
275 const auto b0_u8 = wrapper::vloadq(matrix_b + 0 * in_b_stride);
276 const auto b1_u8 = wrapper::vloadq(matrix_b + 1 * in_b_stride);
277 const auto b2_u8 = wrapper::vloadq(matrix_b + 2 * in_b_stride);
278 const auto b3_u8 = wrapper::vloadq(matrix_b + 3 * in_b_stride);
279
280#if __arm__
281 asm volatile("PLD [%0, #128*1]" ::"r"(matrix_b + 1 * in_b_stride));
282 asm volatile("PLD [%0, #128*1]" ::"r"(matrix_b + 2 * in_b_stride));
283 asm volatile("PLD [%0, #128*1]" ::"r"(matrix_b + 3 * in_b_stride));
284 asm volatile("PLD [%0, #128*1]" ::"r"(matrix_b + 4 * in_b_stride));
285#endif /* __arm__ */
286
287 // Partial accumulation in 16bit
288 typename wrapper::traits::neon_bitvector<TIAcc, wrapper::traits::BitWidth::W128>::type tmp_sum[2] =
Gian Marco Iodiceab182122017-10-09 15:05:40 +0100289 {
morgolockc229e8c2020-09-25 12:03:21 +0100290 wrapper::vdup_n(static_cast<TIAcc>(0), wrapper::traits::vector_128_tag{}),
291 wrapper::vdup_n(static_cast<TIAcc>(0), wrapper::traits::vector_128_tag{})
292 };
Gian Marco Iodiceab182122017-10-09 15:05:40 +0100293
morgolockc229e8c2020-09-25 12:03:21 +0100294 tmp_sum[0] = wrapper::vaddw(tmp_sum[0], wrapper::vgetlow(b1_u8));
295 tmp_sum[0] = wrapper::vaddw(tmp_sum[0], wrapper::vgetlow(b0_u8));
296 tmp_sum[0] = wrapper::vaddw(tmp_sum[0], wrapper::vgetlow(b2_u8));
297 tmp_sum[0] = wrapper::vaddw(tmp_sum[0], wrapper::vgetlow(b3_u8));
298 tmp_sum[1] = wrapper::vaddw(tmp_sum[1], wrapper::vgethigh(b0_u8));
299 tmp_sum[1] = wrapper::vaddw(tmp_sum[1], wrapper::vgethigh(b1_u8));
300 tmp_sum[1] = wrapper::vaddw(tmp_sum[1], wrapper::vgethigh(b2_u8));
301 tmp_sum[1] = wrapper::vaddw(tmp_sum[1], wrapper::vgethigh(b3_u8));
Gian Marco Iodiceab182122017-10-09 15:05:40 +0100302
morgolockc229e8c2020-09-25 12:03:21 +0100303 // Accumulate to 32bit
304 sum_col[0] = wrapper::vaddw(sum_col[0], wrapper::vgetlow(tmp_sum[0]));
305 sum_col[1] = wrapper::vaddw(sum_col[1], wrapper::vgethigh(tmp_sum[0]));
306 sum_col[2] = wrapper::vaddw(sum_col[2], wrapper::vgetlow(tmp_sum[1]));
307 sum_col[3] = wrapper::vaddw(sum_col[3], wrapper::vgethigh(tmp_sum[1]));
Gian Marco Iodiceab182122017-10-09 15:05:40 +0100308
morgolockc229e8c2020-09-25 12:03:21 +0100309 matrix_b += 4 * in_b_stride;
310 }
311
312 // This for loop perfoms the leftover accumulations
313 for(; i < _k; ++i)
314 {
315 const auto b0_b8 = wrapper::vloadq(matrix_b + 0 * in_b_stride);
316
317 // Convert S8 to S16
318 const typename wrapper::traits::neon_bitvector<TIAcc, wrapper::traits::BitWidth::W128>::type b0_b16[2]
Michele Di Giorgioa602f032020-03-12 19:34:33 +0000319 {
morgolockc229e8c2020-09-25 12:03:21 +0100320 wrapper::vmovl(wrapper::vgetlow(b0_b8)),
321 wrapper::vmovl(wrapper::vgethigh(b0_b8))
322 };
Michele Di Giorgioa602f032020-03-12 19:34:33 +0000323
morgolockc229e8c2020-09-25 12:03:21 +0100324 // Accumulate to 32bit
325 sum_col[0] = wrapper::vaddw(sum_col[0], wrapper::vgetlow(b0_b16[0]));
326 sum_col[1] = wrapper::vaddw(sum_col[1], wrapper::vgethigh(b0_b16[0]));
327 sum_col[2] = wrapper::vaddw(sum_col[2], wrapper::vgetlow(b0_b16[1]));
328 sum_col[3] = wrapper::vaddw(sum_col[3], wrapper::vgethigh(b0_b16[1]));
Gian Marco Iodiceab182122017-10-09 15:05:40 +0100329
morgolockc229e8c2020-09-25 12:03:21 +0100330 matrix_b += in_b_stride;
331 }
332
333 // Multiply by scalar if necessary
334 if(_mul_by_scalar)
335 {
336 sum_col[0] = wrapper::vmul(sum_col[0], vec_scalar);
337 sum_col[1] = wrapper::vmul(sum_col[1], vec_scalar);
338 sum_col[2] = wrapper::vmul(sum_col[2], vec_scalar);
339 sum_col[3] = wrapper::vmul(sum_col[3], vec_scalar);
340 }
341
342 auto vector_sum_col = reinterpret_cast<int32_t *>(out.ptr());
343 if(id.x() + 16 < width_matrix_b)
344 {
Michele Di Giorgio13ec5f02020-01-02 12:11:13 +0000345 wrapper::vstore(vector_sum_col + 0, wrapper::vreinterpret(sum_col[0]));
346 wrapper::vstore(vector_sum_col + 4, wrapper::vreinterpret(sum_col[1]));
347 wrapper::vstore(vector_sum_col + 8, wrapper::vreinterpret(sum_col[2]));
348 wrapper::vstore(vector_sum_col + 12, wrapper::vreinterpret(sum_col[3]));
morgolockc229e8c2020-09-25 12:03:21 +0100349 }
350 else
Gian Marco Iodiceab182122017-10-09 15:05:40 +0100351 {
morgolockc229e8c2020-09-25 12:03:21 +0100352 auto left_over = width_matrix_b - id.x();
353 for(auto k = 0; k < 4 && left_over; ++k)
Gian Marco Iodiceab182122017-10-09 15:05:40 +0100354 {
morgolockc229e8c2020-09-25 12:03:21 +0100355 for(auto j = 0; j < 4 && left_over; ++j, --left_over)
Gian Marco Iodiceab182122017-10-09 15:05:40 +0100356 {
morgolockc229e8c2020-09-25 12:03:21 +0100357 *(vector_sum_col + k * 4 + j) = sum_col[k][j];
358 }
Gian Marco Iodiceab182122017-10-09 15:05:40 +0100359 }
morgolockc229e8c2020-09-25 12:03:21 +0100360 }
361 },
362 inb, out);
Pablo Tello6ff12a02017-11-02 16:09:35 +0000363}
Georgios Pinitasdbdea0d2019-10-16 19:21:40 +0100364
365void NEGEMMLowpMatrixBReductionKernel::run(const Window &window, const ThreadInfo &info)
366{
367 ARM_COMPUTE_UNUSED(info);
368 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
369 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(INEKernel::window(), window);
370
371 switch(_input->info()->data_type())
372 {
373 case DataType::QASYMM8:
374 run_internal<uint8_t>(window, info);
375 break;
376 case DataType::QASYMM8_SIGNED:
Michele Di Giorgio47a89902020-03-09 19:32:33 +0000377 case DataType::QSYMM8:
Georgios Pinitasdbdea0d2019-10-16 19:21:40 +0100378 case DataType::QSYMM8_PER_CHANNEL:
379 run_internal<int8_t>(window, info);
380 break;
381 default:
382 ARM_COMPUTE_ERROR("Unsupported data type");
383 }
384}
Michele Di Giorgioa602f032020-03-12 19:34:33 +0000385} // namespace arm_compute