blob: 38481afe8803deb31961f4d053f632f23828db44 [file] [log] [blame]
Gian Marco Iodiceab182122017-10-09 15:05:40 +01001/*
Michalis Spyrou71ac9032019-11-14 14:31:44 +00002 * 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/runtime/NEON/functions/NEGEMMLowpMatrixMultiplyCore.h"
25
26#include "arm_compute/core/Error.h"
27#include "arm_compute/core/Helpers.h"
28#include "arm_compute/core/ITensor.h"
29#include "arm_compute/core/NEON/kernels/NEGEMMInterleave4x4Kernel.h"
Gian Marco Iodiceab182122017-10-09 15:05:40 +010030#include "arm_compute/core/NEON/kernels/NEGEMMLowpMatrixMultiplyKernel.h"
31#include "arm_compute/core/NEON/kernels/NEGEMMTranspose1xWKernel.h"
Gian Marco Iodiceab182122017-10-09 15:05:40 +010032#include "arm_compute/core/TensorInfo.h"
33#include "arm_compute/core/Types.h"
34#include "arm_compute/core/Validate.h"
Isabella Gottardie6630e42018-01-18 15:50:39 +000035#include "arm_compute/core/utils/misc/ShapeCalculator.h"
Gian Marco Iodiceab182122017-10-09 15:05:40 +010036#include "arm_compute/runtime/NEON/NEScheduler.h"
37#include "arm_compute/runtime/TensorAllocator.h"
38#include "support/ToolchainSupport.h"
39
40using namespace arm_compute;
Isabella Gottardie6630e42018-01-18 15:50:39 +000041using namespace arm_compute::misc::shape_calculator;
Gian Marco Iodiceab182122017-10-09 15:05:40 +010042
43NEGEMMLowpMatrixMultiplyCore::NEGEMMLowpMatrixMultiplyCore(std::shared_ptr<IMemoryManager> memory_manager)
Anthony Barbiereaefd002018-07-20 17:49:35 +010044 : _memory_group(memory_manager), _asm_glue(memory_manager), _mm_kernel(nullptr), _mtx_a_reshape_kernel(nullptr), _mtx_b_reshape_kernel(nullptr), _mtx_a_reduction_kernel(), _mtx_b_reduction_kernel(),
Georgios Pinitasdbdea0d2019-10-16 19:21:40 +010045 _offset_contribution_kernel(), _offset_contribution_output_stage_kernel(), _activation_func(), _convert_to_signed_asymm(), _convert_from_signed_asymm(), _vector_sum_col(), _vector_sum_row(), _tmp_a(),
46 _tmp_b(), _mm_result_s32(), _signed_a(), _signed_output(), _original_b(nullptr), _a_offset(0), _b_offset(0), _run_vector_matrix_multiplication(false), _assembly_path(false),
47 _fused_assembly_path(false), _reshape_b_only_on_first_run(false), _is_prepared(false), _fuse_output_stage(false), _run_activation(false), _flip_signedness(false)
Gian Marco Iodiceab182122017-10-09 15:05:40 +010048{
49}
50
Gian Marco Iodice4b908652018-10-18 10:21:02 +010051void NEGEMMLowpMatrixMultiplyCore::configure(const ITensor *a, const ITensor *b, const ITensor *c, ITensor *output, const GEMMInfo &gemm_info)
Gian Marco Iodiceab182122017-10-09 15:05:40 +010052{
Georgios Pinitasa3b1b462017-11-16 19:24:39 +000053 ARM_COMPUTE_ERROR_ON_NULLPTR(a, b, output);
Gian Marco Iodice4b908652018-10-18 10:21:02 +010054 ARM_COMPUTE_UNUSED(c);
55 ARM_COMPUTE_ERROR_THROW_ON(NEGEMMLowpMatrixMultiplyCore::validate(a->info(), b->info(), c != nullptr ? c->info() : nullptr, output->info(), gemm_info));
Gian Marco Iodiceab182122017-10-09 15:05:40 +010056
George Wort2d7e6832019-02-22 16:37:41 +000057 const ITensor *matrix_a = a;
58 const ITensor *matrix_b = b;
Georgios Pinitasdbdea0d2019-10-16 19:21:40 +010059 GEMMInfo info = gemm_info;
George Wort2d7e6832019-02-22 16:37:41 +000060
Georgios Pinitas72219332018-06-05 14:56:06 +010061 // Clear state
Anthony Barbier71d9b572018-07-06 17:05:59 +010062 _mtx_a_reshape_kernel = nullptr;
63 _mtx_b_reshape_kernel = nullptr;
Georgios Pinitas72219332018-06-05 14:56:06 +010064
65 // Set internal variables
Georgios Pinitas4c5469b2019-05-21 13:32:43 +010066 _a_offset = a->info()->quantization_info().uniform().offset;
67 _b_offset = b->info()->quantization_info().uniform().offset;
Gian Marcoc7f9b892017-11-30 14:31:13 +000068 _run_vector_matrix_multiplication = a->info()->dimension(1) < 2;
Georgios Pinitasdbdea0d2019-10-16 19:21:40 +010069 _reshape_b_only_on_first_run = info.reshape_b_only_on_first_run();
Georgios Pinitas72219332018-06-05 14:56:06 +010070 _is_prepared = false;
Georgios Pinitascfa2bba2019-06-27 17:00:52 +010071 _fused_assembly_path = false;
Georgios Pinitasdbdea0d2019-10-16 19:21:40 +010072 _flip_signedness = is_data_type_quantized_per_channel(b->info()->data_type()) && (a->info()->data_type() == DataType::QASYMM8) && _reshape_b_only_on_first_run;
Georgios Pinitas72219332018-06-05 14:56:06 +010073 _original_b = b;
Gian Marcoe75a02b2017-11-08 12:24:09 +000074
Georgios Pinitasdbdea0d2019-10-16 19:21:40 +010075 const ITensor *a_to_use = a;
76
77 // Convert to QASYMM8 -> QASYMM8_SIGNED and back
78 if(_flip_signedness)
79 {
80 const int32_t offset_correction = 128;
81 const DataType dt = DataType::QASYMM8_SIGNED;
82 const UniformQuantizationInfo iqinfo = a_to_use->info()->quantization_info().uniform();
83
84 _signed_a.allocator()->init(a_to_use->info()->clone()->set_data_type(dt).set_quantization_info(QuantizationInfo(iqinfo.scale, iqinfo.offset + offset_correction)));
85 _memory_group.manage(&_signed_a);
86 _convert_to_signed_asymm.configure(a_to_use, &_signed_a);
87 a_to_use = &_signed_a;
88 _a_offset = _signed_a.info()->quantization_info().uniform().offset;
89
90 const UniformQuantizationInfo oqinfo = output->info()->quantization_info().uniform();
91 _memory_group.manage(&_signed_output);
92 _signed_output.allocator()->init(output->info()->clone()->set_data_type(dt).set_quantization_info(QuantizationInfo(oqinfo.scale, oqinfo.offset - offset_correction)));
93
94 // Output stage correction
95 GEMMLowpOutputStageInfo output_stage_corr = info.gemmlowp_output_stage();
96 output_stage_corr.gemmlowp_offset = _signed_output.info()->quantization_info().uniform().offset;
97 output_stage_corr.gemmlowp_min_bound -= offset_correction;
98 output_stage_corr.gemmlowp_max_bound -= offset_correction;
99 info.set_gemmlowp_output_stage(output_stage_corr);
Georgios Pinitas63d4dbd2019-11-08 11:51:56 +0000100
101 // Update matrix a
102 matrix_a = &_signed_a;
Georgios Pinitasdbdea0d2019-10-16 19:21:40 +0100103 }
104
George Wort2d7e6832019-02-22 16:37:41 +0000105 // If GEMMLowpOutputStage != NONE, fuse the offset contribution with the output stage
Georgios Pinitasdbdea0d2019-10-16 19:21:40 +0100106 if(info.gemmlowp_output_stage().type != GEMMLowpOutputStageType::NONE)
George Wort2d7e6832019-02-22 16:37:41 +0000107 {
108 _fuse_output_stage = true;
George Wort2d7e6832019-02-22 16:37:41 +0000109 _memory_group.manage(&_mm_result_s32);
George Wort2d7e6832019-02-22 16:37:41 +0000110 TensorInfo info_mm_result_s32(output->info()->tensor_shape(), 1, DataType::S32);
George Wort2d7e6832019-02-22 16:37:41 +0000111 _mm_result_s32.allocator()->init(info_mm_result_s32);
112 }
113
Pablo Telloeb82fd22018-02-23 13:43:50 +0000114#ifdef __aarch64__
115 switch(a->info()->data_type())
Gian Marco Iodiceab182122017-10-09 15:05:40 +0100116 {
Pablo Tello66c656a2018-03-15 10:34:58 +0000117 case DataType::QASYMM8:
Georgios Pinitasdbdea0d2019-10-16 19:21:40 +0100118 case DataType::QASYMM8_SIGNED:
Pablo Telloeb82fd22018-02-23 13:43:50 +0000119 case DataType::U8:
Anthony Barbiereaefd002018-07-20 17:49:35 +0100120 case DataType::S8:
Pablo Telloeb82fd22018-02-23 13:43:50 +0000121 {
Michalis Spyrou71ac9032019-11-14 14:31:44 +0000122 if(is_data_type_quantized_asymmetric(a_to_use->info()->data_type()) && info.gemmlowp_output_stage().type == GEMMLowpOutputStageType::QUANTIZE_DOWN_FIXEDPOINT)
Georgios Pinitascfa2bba2019-06-27 17:00:52 +0100123 {
Georgios Pinitasdbdea0d2019-10-16 19:21:40 +0100124 _asm_glue.configure(a_to_use, b, c, output, gemm_info);
Georgios Pinitascfa2bba2019-06-27 17:00:52 +0100125 _fused_assembly_path = _asm_glue.is_configured();
126 }
127 else
128 {
Georgios Pinitasdbdea0d2019-10-16 19:21:40 +0100129 _asm_glue.configure(a_to_use, b, nullptr, _fuse_output_stage ? &_mm_result_s32 : output, gemm_info);
Georgios Pinitascfa2bba2019-06-27 17:00:52 +0100130 }
131 _assembly_path = _asm_glue.is_configured();
Pablo Telloeb82fd22018-02-23 13:43:50 +0000132 break;
133 }
134 default:
135 {
136 ARM_COMPUTE_ERROR("Datatype not supported");
137 break;
138 }
Gian Marco Iodiceab182122017-10-09 15:05:40 +0100139 }
Pablo Telloeb82fd22018-02-23 13:43:50 +0000140#endif /* __aarch64__ */
Georgios Pinitascfa2bba2019-06-27 17:00:52 +0100141 if(!(_assembly_path || _run_vector_matrix_multiplication))
Gian Marco Iodiceab182122017-10-09 15:05:40 +0100142 {
George Wort2d7e6832019-02-22 16:37:41 +0000143 matrix_a = &_tmp_a;
144 matrix_b = &_tmp_b;
145
146 // The interleaved output matrix will have the following shape: [ a_height * 4, ceil(a_width / 4.0f) ]
Georgios Pinitasdbdea0d2019-10-16 19:21:40 +0100147 TensorInfo a_info(compute_interleaved_shape(*a_to_use->info()), 1, a_to_use->info()->data_type(), a_to_use->info()->quantization_info());
George Wort2d7e6832019-02-22 16:37:41 +0000148 // The transpose1xW output matrix will have the following shape: [ b_height * 16, ceil(b_width / 16.0f) ]
Georgios Pinitas02acf012019-03-19 10:49:03 +0000149 TensorInfo b_info(compute_transpose1xW_shape(*b->info()), 1, b->info()->data_type(), b->info()->quantization_info());
George Wort2d7e6832019-02-22 16:37:41 +0000150 _tmp_a.allocator()->init(a_info);
151 _tmp_b.allocator()->init(b_info);
152 _memory_group.manage(&_tmp_a);
153 if(!_reshape_b_only_on_first_run)
Gian Marco Iodiceab182122017-10-09 15:05:40 +0100154 {
George Wort2d7e6832019-02-22 16:37:41 +0000155 _memory_group.manage(&_tmp_b);
Gian Marco Iodiceab182122017-10-09 15:05:40 +0100156 }
George Wort2d7e6832019-02-22 16:37:41 +0000157
158 // Configure interleave kernel
Gian Marco Iodiceab182122017-10-09 15:05:40 +0100159 {
George Wort2d7e6832019-02-22 16:37:41 +0000160 auto k = arm_compute::support::cpp14::make_unique<NEGEMMInterleave4x4Kernel>();
Georgios Pinitasdbdea0d2019-10-16 19:21:40 +0100161 k->configure(a_to_use, &_tmp_a);
George Wort2d7e6832019-02-22 16:37:41 +0000162 _mtx_a_reshape_kernel = std::move(k);
163 }
Gian Marcoc7f9b892017-11-30 14:31:13 +0000164
George Wort2d7e6832019-02-22 16:37:41 +0000165 // Configure transpose kernel
166 {
167 auto k = arm_compute::support::cpp14::make_unique<NEGEMMTranspose1xWKernel>();
168 k->configure(b, &_tmp_b);
169 _mtx_b_reshape_kernel = std::move(k);
Gian Marco Iodiceab182122017-10-09 15:05:40 +0100170 }
Gian Marcoe75a02b2017-11-08 12:24:09 +0000171 }
Gian Marco Iodiceab182122017-10-09 15:05:40 +0100172
Georgios Pinitascfa2bba2019-06-27 17:00:52 +0100173 if(!_fused_assembly_path)
Gian Marcoe75a02b2017-11-08 12:24:09 +0000174 {
Georgios Pinitascfa2bba2019-06-27 17:00:52 +0100175 // Initialize matrix B reduction kernel only if _a_offset is not equal to 0
176 if(_a_offset != 0)
Giorgio Arenabb54e4e2018-04-05 17:20:34 +0100177 {
Georgios Pinitascfa2bba2019-06-27 17:00:52 +0100178 TensorInfo info_vector_sum_col(compute_reductionA_shape(*b->info()), 1, DataType::S32);
179
180 _vector_sum_col.allocator()->init(info_vector_sum_col);
181 if(!_reshape_b_only_on_first_run)
182 {
183 _memory_group.manage(&_vector_sum_col);
184 }
185
186 // Configure Matrix B reduction kernel
Georgios Pinitasdbdea0d2019-10-16 19:21:40 +0100187 _mtx_b_reduction_kernel.configure(b, &_vector_sum_col, a_to_use->info()->dimension(0), false);
Giorgio Arenabb54e4e2018-04-05 17:20:34 +0100188 }
Gian Marcoe75a02b2017-11-08 12:24:09 +0000189
Georgios Pinitascfa2bba2019-06-27 17:00:52 +0100190 // Initialize Matrix A reduction kernel only if _b_offset is not equal to 0
191 if(_b_offset != 0)
George Wort2d7e6832019-02-22 16:37:41 +0000192 {
Georgios Pinitasdbdea0d2019-10-16 19:21:40 +0100193 TensorInfo info_vector_sum_row(compute_reductionB_shape(*a_to_use->info()), 1, DataType::S32);
Georgios Pinitascfa2bba2019-06-27 17:00:52 +0100194
195 _vector_sum_row.allocator()->init(info_vector_sum_row);
196 _memory_group.manage(&_vector_sum_row);
197
198 // Configure matrix A reduction kernel
Georgios Pinitasdbdea0d2019-10-16 19:21:40 +0100199 _mtx_a_reduction_kernel.configure(a_to_use, &_vector_sum_row, a_to_use->info()->dimension(0), false);
George Wort2d7e6832019-02-22 16:37:41 +0000200 }
201
Georgios Pinitascfa2bba2019-06-27 17:00:52 +0100202 if(_fuse_output_stage)
George Wort2d7e6832019-02-22 16:37:41 +0000203 {
Georgios Pinitascfa2bba2019-06-27 17:00:52 +0100204 // Configure matrix multiply kernel
205 if(!_assembly_path)
206 {
207 auto k = arm_compute::support::cpp14::make_unique<NEGEMMLowpMatrixMultiplyKernel>();
208 k->configure(matrix_a, matrix_b, &_mm_result_s32);
209 _mm_kernel = std::move(k);
210 }
211
Georgios Pinitasdbdea0d2019-10-16 19:21:40 +0100212 _offset_contribution_output_stage_kernel.configure(&_mm_result_s32,
213 _a_offset == 0 ? nullptr : &_vector_sum_col,
214 _b_offset == 0 ? nullptr : &_vector_sum_row, c,
215 _flip_signedness ? &_signed_output : output,
216 a->info()->dimension(0),
217 _a_offset, _b_offset, info.gemmlowp_output_stage());
218
219 if(_flip_signedness)
220 {
221 _convert_from_signed_asymm.configure(&_signed_output, output);
222 }
George Wort2d7e6832019-02-22 16:37:41 +0000223 }
Georgios Pinitascfa2bba2019-06-27 17:00:52 +0100224 else
225 {
226 // Configure matrix multiply kernel
227 if(!_assembly_path)
228 {
229 auto k = arm_compute::support::cpp14::make_unique<NEGEMMLowpMatrixMultiplyKernel>();
230 k->configure(matrix_a, matrix_b, output);
231 _mm_kernel = std::move(k);
232 }
233 // Configure offset contribution kernel
Georgios Pinitasdbdea0d2019-10-16 19:21:40 +0100234 _offset_contribution_kernel.configure(output, _a_offset == 0 ? nullptr : &_vector_sum_col, _b_offset == 0 ? nullptr : &_vector_sum_row, a_to_use->info()->dimension(0), _a_offset, _b_offset);
Georgios Pinitascfa2bba2019-06-27 17:00:52 +0100235 }
George Wort2d7e6832019-02-22 16:37:41 +0000236 }
Gian Marcoe75a02b2017-11-08 12:24:09 +0000237
Georgios Pinitas48b3ef82019-10-14 19:03:09 +0100238 // Configure activation
239 const ActivationLayerInfo &activation = gemm_info.activation_info();
240 _run_activation = activation.enabled() && (!_assembly_path || (_assembly_path && !NEGEMMAssemblyDispatch::is_activation_supported(activation)));
241 if(_run_activation)
242 {
243 _activation_func.configure(output, nullptr, activation);
244 }
245
Gian Marcoe75a02b2017-11-08 12:24:09 +0000246 // Allocate tensors
Georgios Pinitascfa2bba2019-06-27 17:00:52 +0100247 if(!_assembly_path && !_run_vector_matrix_multiplication)
Gian Marcoe75a02b2017-11-08 12:24:09 +0000248 {
Pablo Tello6ff12a02017-11-02 16:09:35 +0000249 _tmp_a.allocator()->allocate();
Georgios Pinitas72219332018-06-05 14:56:06 +0100250 if(!_reshape_b_only_on_first_run)
251 {
252 _tmp_b.allocator()->allocate();
253 }
Pablo Tello6ff12a02017-11-02 16:09:35 +0000254 }
Gian Marcoe75a02b2017-11-08 12:24:09 +0000255
Georgios Pinitascfa2bba2019-06-27 17:00:52 +0100256 if(!_fused_assembly_path)
Gian Marcoe75a02b2017-11-08 12:24:09 +0000257 {
Georgios Pinitascfa2bba2019-06-27 17:00:52 +0100258 if(_a_offset != 0 && !_reshape_b_only_on_first_run)
259 {
260 _vector_sum_col.allocator()->allocate();
261 }
262
263 if(_b_offset != 0)
264 {
265 _vector_sum_row.allocator()->allocate();
266 }
Gian Marcoe75a02b2017-11-08 12:24:09 +0000267 }
268
Georgios Pinitascfa2bba2019-06-27 17:00:52 +0100269 if(_fuse_output_stage)
Gian Marcoe75a02b2017-11-08 12:24:09 +0000270 {
Georgios Pinitascfa2bba2019-06-27 17:00:52 +0100271 _mm_result_s32.allocator()->allocate();
Gian Marcoe75a02b2017-11-08 12:24:09 +0000272 }
Georgios Pinitasdbdea0d2019-10-16 19:21:40 +0100273
274 if(_flip_signedness)
275 {
276 _signed_a.allocator()->allocate();
277 _signed_output.allocator()->allocate();
278 }
Gian Marco Iodiceab182122017-10-09 15:05:40 +0100279}
280
Gian Marco Iodice4b908652018-10-18 10:21:02 +0100281Status NEGEMMLowpMatrixMultiplyCore::validate(const ITensorInfo *a, const ITensorInfo *b, const ITensorInfo *c, const ITensorInfo *output, const GEMMInfo &gemm_info)
Georgios Pinitasa3b1b462017-11-16 19:24:39 +0000282{
Georgios Pinitas6e1791b2019-12-02 19:01:25 +0000283 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(a, 1, DataType::QASYMM8, DataType::QASYMM8_SIGNED);
284 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(b, 1, DataType::QASYMM8, DataType::QASYMM8_SIGNED, DataType::QSYMM8_PER_CHANNEL);
285 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(output, 1, DataType::S32, DataType::QASYMM8, DataType::QASYMM8_SIGNED);
George Wort2d7e6832019-02-22 16:37:41 +0000286 ARM_COMPUTE_RETURN_ERROR_ON_MSG(c != nullptr && gemm_info.gemmlowp_output_stage().type == GEMMLowpOutputStageType::NONE, "Bias addition not supported in NEGEMMLowpMatrixMultiplyCore for output S32");
Georgios Pinitasa3b1b462017-11-16 19:24:39 +0000287 ARM_COMPUTE_RETURN_ERROR_ON_MSG((a)->dimension(0) != (b)->dimension(1),
288 "The product AB is defined only if the number of columns in A is equal to the number of rows in B");
Chunosov5124be52017-11-22 20:42:13 +0700289 ARM_COMPUTE_RETURN_ERROR_ON_MSG(gemm_info.is_a_reshaped(), "Matrix A already reshaped is not supported");
290 ARM_COMPUTE_RETURN_ERROR_ON_MSG(gemm_info.is_b_reshaped(), "Matrix B already reshaped is not supported");
Georgios Pinitasa3b1b462017-11-16 19:24:39 +0000291
Georgios Pinitasdbdea0d2019-10-16 19:21:40 +0100292 GEMMInfo info = gemm_info;
George Wort2d7e6832019-02-22 16:37:41 +0000293 const ITensorInfo *matrix_a_info = a;
294 const ITensorInfo *matrix_b_info = b;
295
Georgios Pinitasdbdea0d2019-10-16 19:21:40 +0100296 const ITensorInfo *a_to_use = a;
297
George Wort2d7e6832019-02-22 16:37:41 +0000298 TensorInfo tmp_a_info{};
299 TensorInfo tmp_b_info{};
300 TensorInfo mm_result_s32_info{};
301
Georgios Pinitas37d080f2019-06-21 18:43:12 +0100302 int32_t a_offset = a->quantization_info().uniform().offset;
303 int32_t b_offset = b->quantization_info().uniform().offset;
Georgios Pinitasa3b1b462017-11-16 19:24:39 +0000304
Georgios Pinitasdbdea0d2019-10-16 19:21:40 +0100305 bool fuse_output_stage = info.gemmlowp_output_stage().type != GEMMLowpOutputStageType::NONE;
George Wort2d7e6832019-02-22 16:37:41 +0000306 if(fuse_output_stage)
307 {
308 auto_init_if_empty(mm_result_s32_info, a->clone()->set_tensor_shape(output->tensor_shape()).set_data_type(DataType::S32));
309 }
310
Georgios Pinitasdbdea0d2019-10-16 19:21:40 +0100311 // Convert QASYMM8->QASYMM8_SIGNED
312 TensorInfo signed_a{};
313 TensorInfo signed_output{};
314 bool flip_signedness = is_data_type_quantized_per_channel(b->data_type()) && (a->data_type() == DataType::QASYMM8) && info.reshape_b_only_on_first_run();
315 if(flip_signedness)
316 {
317 const int32_t offset_correction = 128;
318 const DataType dt = DataType::QASYMM8_SIGNED;
319 const UniformQuantizationInfo iqinfo = a_to_use->quantization_info().uniform();
320
321 signed_a = a_to_use->clone()->set_data_type(dt).set_quantization_info(QuantizationInfo(iqinfo.scale, iqinfo.offset + offset_correction));
322 ARM_COMPUTE_RETURN_ON_ERROR(NEConvertQuantizedSignednessKernel::validate(a_to_use, &signed_a));
323 a_to_use = &signed_a;
324 a_offset = signed_a.quantization_info().uniform().offset;
325
326 const UniformQuantizationInfo oqinfo = output->quantization_info().uniform();
327 signed_output = output->clone()->set_data_type(dt).set_quantization_info(QuantizationInfo(oqinfo.scale, oqinfo.offset - offset_correction));
328
329 // Output stage correction
330 GEMMLowpOutputStageInfo output_stage_corr = info.gemmlowp_output_stage();
331 output_stage_corr.gemmlowp_offset = signed_output.quantization_info().uniform().offset;
332 output_stage_corr.gemmlowp_min_bound -= offset_correction;
333 output_stage_corr.gemmlowp_max_bound -= offset_correction;
334 info.set_gemmlowp_output_stage(output_stage_corr);
Georgios Pinitas63d4dbd2019-11-08 11:51:56 +0000335
336 // Update matrix a
337 matrix_a_info = &signed_a;
Georgios Pinitasdbdea0d2019-10-16 19:21:40 +0100338 }
339
Georgios Pinitasbb081ca2018-11-08 10:22:01 +0000340 // Check if we need to run the optimized assembly kernel
Georgios Pinitascfa2bba2019-06-27 17:00:52 +0100341 bool run_optimised = false;
342 bool run_optimised_requantized = false;
Georgios Pinitasdbdea0d2019-10-16 19:21:40 +0100343 if(a_to_use->data_type() == DataType::QASYMM8 && info.gemmlowp_output_stage().type == GEMMLowpOutputStageType::QUANTIZE_DOWN_FIXEDPOINT)
Georgios Pinitascfa2bba2019-06-27 17:00:52 +0100344 {
Georgios Pinitasdbdea0d2019-10-16 19:21:40 +0100345 run_optimised = bool(NEGEMMAssemblyDispatch::validate(a_to_use, b, c, output, gemm_info));
Georgios Pinitascfa2bba2019-06-27 17:00:52 +0100346 run_optimised_requantized = run_optimised;
Michele Di Giorgiof29d1b72019-10-29 10:58:13 +0000347
348 const UniformQuantizationInfo a_qinfo = a_to_use->quantization_info().uniform();
349 const QuantizationInfo b_qinfo = b->quantization_info();
350 const UniformQuantizationInfo output_qinfo = output->quantization_info().uniform();
351 for(auto const s : b_qinfo.scale())
352 {
353 const float fmultipler = a_qinfo.scale * s / output_qinfo.scale;
354 if(fmultipler > 1.f)
355 {
356 run_optimised_requantized = false;
357 break;
358 }
359 }
Georgios Pinitascfa2bba2019-06-27 17:00:52 +0100360 }
361 else
362 {
Georgios Pinitasdbdea0d2019-10-16 19:21:40 +0100363 run_optimised = bool(NEGEMMAssemblyDispatch::validate(a_to_use, b, nullptr, fuse_output_stage ? &mm_result_s32_info : output, gemm_info));
Georgios Pinitascfa2bba2019-06-27 17:00:52 +0100364 }
Georgios Pinitasbb081ca2018-11-08 10:22:01 +0000365
366 if(run_optimised)
Georgios Pinitasa3b1b462017-11-16 19:24:39 +0000367 {
George Wort2d7e6832019-02-22 16:37:41 +0000368 ARM_COMPUTE_RETURN_ERROR_ON(b->dimension(0) != output->dimension(0));
Georgios Pinitasdbdea0d2019-10-16 19:21:40 +0100369 if(info.depth_output_gemm3d() != 0)
Georgios Pinitasbb081ca2018-11-08 10:22:01 +0000370 {
Georgios Pinitasdbdea0d2019-10-16 19:21:40 +0100371 if(info.reinterpret_input_as_3d())
Georgios Pinitasbb081ca2018-11-08 10:22:01 +0000372 {
George Wort2d7e6832019-02-22 16:37:41 +0000373 ARM_COMPUTE_RETURN_ERROR_ON(a->dimension(1) != output->dimension(1));
374 ARM_COMPUTE_RETURN_ERROR_ON(a->dimension(2) != output->dimension(2));
Georgios Pinitasbb081ca2018-11-08 10:22:01 +0000375 }
376 else
377 {
George Wort2d7e6832019-02-22 16:37:41 +0000378 ARM_COMPUTE_RETURN_ERROR_ON(a->dimension(1) != output->dimension(1) * output->dimension(2));
Georgios Pinitasbb081ca2018-11-08 10:22:01 +0000379 }
380 }
George Wort2d7e6832019-02-22 16:37:41 +0000381 else
382 {
383 ARM_COMPUTE_RETURN_ERROR_ON(a->dimension(1) != output->dimension(1));
384 }
Georgios Pinitasa3b1b462017-11-16 19:24:39 +0000385 }
386 else
Georgios Pinitasa3b1b462017-11-16 19:24:39 +0000387 {
Georgios Pinitasdbdea0d2019-10-16 19:21:40 +0100388 ARM_COMPUTE_RETURN_ERROR_ON_MSG(info.reinterpret_input_as_3d(), "NEGEMM cannot reinterpret the input tensor as 3D");
389 ARM_COMPUTE_RETURN_ERROR_ON_MSG(info.depth_output_gemm3d() != 0, "NEGEMM cannot reinterpret the output tensor as 3D");
Georgios Pinitasbb081ca2018-11-08 10:22:01 +0000390
391 const bool run_vector_matrix_multiplication = a->dimension(1) < 2;
392 if(!run_vector_matrix_multiplication)
393 {
George Wort2d7e6832019-02-22 16:37:41 +0000394 matrix_a_info = &tmp_a_info;
395 matrix_b_info = &tmp_b_info;
396
Georgios Pinitasbb081ca2018-11-08 10:22:01 +0000397 // The interleaved output matrix will have the following shape: [ a_height * 4, ceil(a_width / 4.0f) ]
398 TensorShape shape_tmp_a = a->tensor_shape();
399 shape_tmp_a.set(0, a->dimension(0) * 4);
400 shape_tmp_a.set(1, std::ceil(a->dimension(1) / 4.f));
401
402 // The transpose1xW output matrix will have the following shape: [ b_height * 16, ceil(b_width / 16.0f) ]
403 TensorShape shape_tmp_b = b->tensor_shape();
404 shape_tmp_b.set(0, b->dimension(1) * 16);
405 shape_tmp_b.set(1, std::ceil(b->dimension(0) / 16.f));
406
George Wort2d7e6832019-02-22 16:37:41 +0000407 // Validate interleave kernel
Georgios Pinitasdbdea0d2019-10-16 19:21:40 +0100408 auto_init_if_empty(tmp_a_info, a_to_use->clone()->set_tensor_shape(shape_tmp_a));
George Wort2d7e6832019-02-22 16:37:41 +0000409 auto_init_if_empty(tmp_b_info, b->clone()->set_tensor_shape(shape_tmp_b));
Georgios Pinitasbb081ca2018-11-08 10:22:01 +0000410
Georgios Pinitasdbdea0d2019-10-16 19:21:40 +0100411 ARM_COMPUTE_RETURN_ON_ERROR(NEGEMMInterleave4x4Kernel::validate(a_to_use, &tmp_a_info));
George Wort2d7e6832019-02-22 16:37:41 +0000412 ARM_COMPUTE_RETURN_ON_ERROR(NEGEMMTranspose1xWKernel::validate(b, &tmp_b_info));
Georgios Pinitasbb081ca2018-11-08 10:22:01 +0000413 }
Georgios Pinitasa3b1b462017-11-16 19:24:39 +0000414 }
415
Georgios Pinitascfa2bba2019-06-27 17:00:52 +0100416 if(!run_optimised_requantized)
Georgios Pinitasa3b1b462017-11-16 19:24:39 +0000417 {
Georgios Pinitascfa2bba2019-06-27 17:00:52 +0100418 TensorInfo info_vector_sum_col{};
419 TensorInfo info_vector_sum_row{};
Georgios Pinitasa3b1b462017-11-16 19:24:39 +0000420
Georgios Pinitascfa2bba2019-06-27 17:00:52 +0100421 // Validate matrix B reduction kernel only if _a_offset is not equal to 0
422 if(a_offset != 0)
George Wort2d7e6832019-02-22 16:37:41 +0000423 {
Georgios Pinitascfa2bba2019-06-27 17:00:52 +0100424 info_vector_sum_col = TensorInfo(compute_reductionA_shape(*b), 1, DataType::S32);
425
426 // Configure Matrix B reduction kernel
427 ARM_COMPUTE_RETURN_ON_ERROR(NEGEMMLowpMatrixBReductionKernel::validate(b, &info_vector_sum_col, a->dimension(0), false));
George Wort2d7e6832019-02-22 16:37:41 +0000428 }
Georgios Pinitasa3b1b462017-11-16 19:24:39 +0000429
Georgios Pinitascfa2bba2019-06-27 17:00:52 +0100430 // Validate Matrix A reduction kernel only if _b_offset is not equal to 0
431 if(b_offset != 0)
George Wort2d7e6832019-02-22 16:37:41 +0000432 {
Georgios Pinitascfa2bba2019-06-27 17:00:52 +0100433 info_vector_sum_row = TensorInfo(compute_reductionB_shape(*a), 1, DataType::S32);
434
435 // Configure matrix A reduction kernel
Georgios Pinitasdbdea0d2019-10-16 19:21:40 +0100436 ARM_COMPUTE_RETURN_ON_ERROR(NEGEMMLowpMatrixAReductionKernel::validate(a_to_use, &info_vector_sum_row, a->dimension(0), false));
George Wort2d7e6832019-02-22 16:37:41 +0000437 }
Georgios Pinitascfa2bba2019-06-27 17:00:52 +0100438
439 if(fuse_output_stage)
440 {
441 if(!run_optimised)
442 {
443 ARM_COMPUTE_RETURN_ON_ERROR(NEGEMMLowpMatrixMultiplyKernel::validate(matrix_a_info, matrix_b_info, &mm_result_s32_info));
444 }
445
446 // Validate offset contribution kernel
447 ARM_COMPUTE_RETURN_ON_ERROR(NEGEMMLowpOffsetContributionOutputStageKernel::validate(&mm_result_s32_info,
448 a_offset == 0 ? nullptr : &info_vector_sum_col,
449 b_offset == 0 ? nullptr : &info_vector_sum_row,
Georgios Pinitasdbdea0d2019-10-16 19:21:40 +0100450 c,
451 flip_signedness ? &signed_output : output,
452 a_offset, b_offset,
453 info.gemmlowp_output_stage()));
Georgios Pinitascfa2bba2019-06-27 17:00:52 +0100454 }
455 else
456 {
457 if(!run_optimised)
458 {
459 ARM_COMPUTE_RETURN_ON_ERROR(NEGEMMLowpMatrixMultiplyKernel::validate(matrix_a_info, matrix_b_info, output));
460 }
461 // Validate offset contribution kernel
462 ARM_COMPUTE_RETURN_ON_ERROR(NEGEMMLowpOffsetContributionKernel::validate(output,
463 a_offset == 0 ? nullptr : &info_vector_sum_col,
464 b_offset == 0 ? nullptr : &info_vector_sum_row,
465 a_offset, b_offset));
466 }
George Wort2d7e6832019-02-22 16:37:41 +0000467 }
Georgios Pinitas48b3ef82019-10-14 19:03:09 +0100468
469 // Validate activation
470 const ActivationLayerInfo &activation = gemm_info.activation_info();
471 if(activation.enabled())
472 {
473 ARM_COMPUTE_RETURN_ON_ERROR(NEActivationLayer::validate(output, nullptr, activation));
474 }
475
Georgios Pinitas631c41a2017-12-06 11:53:03 +0000476 return Status{};
Georgios Pinitasa3b1b462017-11-16 19:24:39 +0000477}
478
Gian Marco Iodiceab182122017-10-09 15:05:40 +0100479void NEGEMMLowpMatrixMultiplyCore::run()
480{
Georgios Pinitas72219332018-06-05 14:56:06 +0100481 prepare();
482
Georgios Pinitasda953f22019-04-02 17:27:03 +0100483 MemoryGroupResourceScope scope_mg(_memory_group);
Gian Marco Iodiceab182122017-10-09 15:05:40 +0100484
Georgios Pinitas63d4dbd2019-11-08 11:51:56 +0000485 // Convert QASYMM8->QASYMM8_SIGNED
486 if(_flip_signedness)
487 {
488 NEScheduler::get().schedule(&_convert_to_signed_asymm, Window::DimY);
489 }
490
Georgios Pinitas72219332018-06-05 14:56:06 +0100491 // Reshape inputs
492 if(_mtx_a_reshape_kernel)
Pablo Tello6ff12a02017-11-02 16:09:35 +0000493 {
Georgios Pinitas72219332018-06-05 14:56:06 +0100494 NEScheduler::get().schedule(_mtx_a_reshape_kernel.get(), Window::DimY);
495 }
496 if(_mtx_b_reshape_kernel && !_reshape_b_only_on_first_run)
497 {
498 NEScheduler::get().schedule(_mtx_b_reshape_kernel.get(), Window::DimY);
Pablo Tello6ff12a02017-11-02 16:09:35 +0000499 }
Gian Marco Iodiceab182122017-10-09 15:05:40 +0100500
Georgios Pinitas72219332018-06-05 14:56:06 +0100501 // Run GEMM
Anthony Barbiereaefd002018-07-20 17:49:35 +0100502 if(_asm_glue.is_configured())
Pablo Telloeb82fd22018-02-23 13:43:50 +0000503 {
Anthony Barbiereaefd002018-07-20 17:49:35 +0100504 _asm_glue.run();
Pablo Telloeb82fd22018-02-23 13:43:50 +0000505 }
506 else
507 {
508 NEScheduler::get().schedule(_mm_kernel.get(), Window::DimY);
509 }
Gian Marco Iodiceab182122017-10-09 15:05:40 +0100510
Georgios Pinitascfa2bba2019-06-27 17:00:52 +0100511 if(!_fused_assembly_path)
Gian Marcoe75a02b2017-11-08 12:24:09 +0000512 {
Georgios Pinitascfa2bba2019-06-27 17:00:52 +0100513 // Run matrix A reduction kernel only if _b_offset is not equal to 0
514 if(_b_offset != 0)
515 {
516 NEScheduler::get().schedule(&_mtx_a_reduction_kernel, Window::DimX);
517 }
Gian Marcoe75a02b2017-11-08 12:24:09 +0000518
Georgios Pinitascfa2bba2019-06-27 17:00:52 +0100519 // Run matrix B reduction kernel only if _a_offset is not equal to 0
520 if(_a_offset != 0 && !_reshape_b_only_on_first_run)
521 {
522 NEScheduler::get().schedule(&_mtx_b_reduction_kernel, Window::DimX);
523 }
Gian Marcoe75a02b2017-11-08 12:24:09 +0000524
Georgios Pinitascfa2bba2019-06-27 17:00:52 +0100525 if(_fuse_output_stage)
526 {
527 // Run offset contribution kernel
528 NEScheduler::get().schedule(&_offset_contribution_output_stage_kernel, Window::DimY);
529 }
530 else
531 {
532 // Run offset contribution kernel
533 NEScheduler::get().schedule(&_offset_contribution_kernel, Window::DimY);
534 }
George Wort2d7e6832019-02-22 16:37:41 +0000535 }
Georgios Pinitas48b3ef82019-10-14 19:03:09 +0100536
Georgios Pinitasdbdea0d2019-10-16 19:21:40 +0100537 // Convert QASYMM8_SIGNED->QASYMM8
538 if(_flip_signedness)
539 {
540 NEScheduler::get().schedule(&_convert_from_signed_asymm, Window::DimY);
541 }
542
Georgios Pinitas48b3ef82019-10-14 19:03:09 +0100543 // Run fused activation
544 if(_run_activation)
545 {
546 _activation_func.run();
547 }
Georgios Pinitas72219332018-06-05 14:56:06 +0100548}
Giorgio Arenabb54e4e2018-04-05 17:20:34 +0100549
Georgios Pinitas72219332018-06-05 14:56:06 +0100550void NEGEMMLowpMatrixMultiplyCore::prepare()
551{
552 if(!_is_prepared)
553 {
554 // Run assembly reshape
Anthony Barbiereaefd002018-07-20 17:49:35 +0100555 if(_asm_glue.is_configured() && _reshape_b_only_on_first_run)
Georgios Pinitas72219332018-06-05 14:56:06 +0100556 {
557 ARM_COMPUTE_ERROR_ON(!_original_b->is_used());
558
Anthony Barbiereaefd002018-07-20 17:49:35 +0100559 _asm_glue.prepare();
Georgios Pinitas72219332018-06-05 14:56:06 +0100560 _original_b->mark_as_unused();
561 }
562 // Run non-assembly reshape
563 else if(_mtx_b_reshape_kernel && _reshape_b_only_on_first_run)
564 {
565 ARM_COMPUTE_ERROR_ON(!_original_b->is_used());
566
567 // Run reshape kernel and mark original weights tensor as unused
568 _tmp_b.allocator()->allocate();
569 NEScheduler::get().schedule(_mtx_b_reshape_kernel.get(), Window::DimY);
570 _original_b->mark_as_unused();
571 }
572
573 // Run matrix B reduction kernel only if _a_offset is not equal to 0
574 if(_a_offset != 0 && _reshape_b_only_on_first_run)
575 {
576 _vector_sum_col.allocator()->allocate();
577 NEScheduler::get().schedule(&_mtx_b_reduction_kernel, Window::DimX);
578 }
579
580 _is_prepared = true;
581 }
Pablo Tello6ff12a02017-11-02 16:09:35 +0000582}