blob: 5b9d0551e24fc11fe8b257e582cf6a3a830bed67 [file] [log] [blame]
Gian Marco Iodiceab182122017-10-09 15:05:40 +01001/*
Georgios Pinitase46a7be2019-02-18 15:16:14 +00002 * Copyright (c) 2017-2019 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 {
Georgios Pinitasdbdea0d2019-10-16 19:21:40 +0100122 if(a_to_use->info()->data_type() == DataType::QASYMM8 && 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{
283 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(a, 1, DataType::QASYMM8);
Georgios Pinitasdbdea0d2019-10-16 19:21:40 +0100284 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(b, 1, DataType::QASYMM8, DataType::QSYMM8_PER_CHANNEL);
George Wort2d7e6832019-02-22 16:37:41 +0000285 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(output, 1, DataType::S32, DataType::QASYMM8);
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;
347 }
348 else
349 {
Georgios Pinitasdbdea0d2019-10-16 19:21:40 +0100350 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 +0100351 }
Georgios Pinitasbb081ca2018-11-08 10:22:01 +0000352
353 if(run_optimised)
Georgios Pinitasa3b1b462017-11-16 19:24:39 +0000354 {
George Wort2d7e6832019-02-22 16:37:41 +0000355 ARM_COMPUTE_RETURN_ERROR_ON(b->dimension(0) != output->dimension(0));
Georgios Pinitasdbdea0d2019-10-16 19:21:40 +0100356 if(info.depth_output_gemm3d() != 0)
Georgios Pinitasbb081ca2018-11-08 10:22:01 +0000357 {
Georgios Pinitasdbdea0d2019-10-16 19:21:40 +0100358 if(info.reinterpret_input_as_3d())
Georgios Pinitasbb081ca2018-11-08 10:22:01 +0000359 {
George Wort2d7e6832019-02-22 16:37:41 +0000360 ARM_COMPUTE_RETURN_ERROR_ON(a->dimension(1) != output->dimension(1));
361 ARM_COMPUTE_RETURN_ERROR_ON(a->dimension(2) != output->dimension(2));
Georgios Pinitasbb081ca2018-11-08 10:22:01 +0000362 }
363 else
364 {
George Wort2d7e6832019-02-22 16:37:41 +0000365 ARM_COMPUTE_RETURN_ERROR_ON(a->dimension(1) != output->dimension(1) * output->dimension(2));
Georgios Pinitasbb081ca2018-11-08 10:22:01 +0000366 }
367 }
George Wort2d7e6832019-02-22 16:37:41 +0000368 else
369 {
370 ARM_COMPUTE_RETURN_ERROR_ON(a->dimension(1) != output->dimension(1));
371 }
Georgios Pinitasa3b1b462017-11-16 19:24:39 +0000372 }
373 else
Georgios Pinitasa3b1b462017-11-16 19:24:39 +0000374 {
Georgios Pinitasdbdea0d2019-10-16 19:21:40 +0100375 ARM_COMPUTE_RETURN_ERROR_ON_MSG(info.reinterpret_input_as_3d(), "NEGEMM cannot reinterpret the input tensor as 3D");
376 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 +0000377
378 const bool run_vector_matrix_multiplication = a->dimension(1) < 2;
379 if(!run_vector_matrix_multiplication)
380 {
George Wort2d7e6832019-02-22 16:37:41 +0000381 matrix_a_info = &tmp_a_info;
382 matrix_b_info = &tmp_b_info;
383
Georgios Pinitasbb081ca2018-11-08 10:22:01 +0000384 // The interleaved output matrix will have the following shape: [ a_height * 4, ceil(a_width / 4.0f) ]
385 TensorShape shape_tmp_a = a->tensor_shape();
386 shape_tmp_a.set(0, a->dimension(0) * 4);
387 shape_tmp_a.set(1, std::ceil(a->dimension(1) / 4.f));
388
389 // The transpose1xW output matrix will have the following shape: [ b_height * 16, ceil(b_width / 16.0f) ]
390 TensorShape shape_tmp_b = b->tensor_shape();
391 shape_tmp_b.set(0, b->dimension(1) * 16);
392 shape_tmp_b.set(1, std::ceil(b->dimension(0) / 16.f));
393
George Wort2d7e6832019-02-22 16:37:41 +0000394 // Validate interleave kernel
Georgios Pinitasdbdea0d2019-10-16 19:21:40 +0100395 auto_init_if_empty(tmp_a_info, a_to_use->clone()->set_tensor_shape(shape_tmp_a));
George Wort2d7e6832019-02-22 16:37:41 +0000396 auto_init_if_empty(tmp_b_info, b->clone()->set_tensor_shape(shape_tmp_b));
Georgios Pinitasbb081ca2018-11-08 10:22:01 +0000397
Georgios Pinitasdbdea0d2019-10-16 19:21:40 +0100398 ARM_COMPUTE_RETURN_ON_ERROR(NEGEMMInterleave4x4Kernel::validate(a_to_use, &tmp_a_info));
George Wort2d7e6832019-02-22 16:37:41 +0000399 ARM_COMPUTE_RETURN_ON_ERROR(NEGEMMTranspose1xWKernel::validate(b, &tmp_b_info));
Georgios Pinitasbb081ca2018-11-08 10:22:01 +0000400 }
Georgios Pinitasa3b1b462017-11-16 19:24:39 +0000401 }
402
Georgios Pinitascfa2bba2019-06-27 17:00:52 +0100403 if(!run_optimised_requantized)
Georgios Pinitasa3b1b462017-11-16 19:24:39 +0000404 {
Georgios Pinitascfa2bba2019-06-27 17:00:52 +0100405 TensorInfo info_vector_sum_col{};
406 TensorInfo info_vector_sum_row{};
Georgios Pinitasa3b1b462017-11-16 19:24:39 +0000407
Georgios Pinitascfa2bba2019-06-27 17:00:52 +0100408 // Validate matrix B reduction kernel only if _a_offset is not equal to 0
409 if(a_offset != 0)
George Wort2d7e6832019-02-22 16:37:41 +0000410 {
Georgios Pinitascfa2bba2019-06-27 17:00:52 +0100411 info_vector_sum_col = TensorInfo(compute_reductionA_shape(*b), 1, DataType::S32);
412
413 // Configure Matrix B reduction kernel
414 ARM_COMPUTE_RETURN_ON_ERROR(NEGEMMLowpMatrixBReductionKernel::validate(b, &info_vector_sum_col, a->dimension(0), false));
George Wort2d7e6832019-02-22 16:37:41 +0000415 }
Georgios Pinitasa3b1b462017-11-16 19:24:39 +0000416
Georgios Pinitascfa2bba2019-06-27 17:00:52 +0100417 // Validate Matrix A reduction kernel only if _b_offset is not equal to 0
418 if(b_offset != 0)
George Wort2d7e6832019-02-22 16:37:41 +0000419 {
Georgios Pinitascfa2bba2019-06-27 17:00:52 +0100420 info_vector_sum_row = TensorInfo(compute_reductionB_shape(*a), 1, DataType::S32);
421
422 // Configure matrix A reduction kernel
Georgios Pinitasdbdea0d2019-10-16 19:21:40 +0100423 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 +0000424 }
Georgios Pinitascfa2bba2019-06-27 17:00:52 +0100425
426 if(fuse_output_stage)
427 {
428 if(!run_optimised)
429 {
430 ARM_COMPUTE_RETURN_ON_ERROR(NEGEMMLowpMatrixMultiplyKernel::validate(matrix_a_info, matrix_b_info, &mm_result_s32_info));
431 }
432
433 // Validate offset contribution kernel
434 ARM_COMPUTE_RETURN_ON_ERROR(NEGEMMLowpOffsetContributionOutputStageKernel::validate(&mm_result_s32_info,
435 a_offset == 0 ? nullptr : &info_vector_sum_col,
436 b_offset == 0 ? nullptr : &info_vector_sum_row,
Georgios Pinitasdbdea0d2019-10-16 19:21:40 +0100437 c,
438 flip_signedness ? &signed_output : output,
439 a_offset, b_offset,
440 info.gemmlowp_output_stage()));
Georgios Pinitascfa2bba2019-06-27 17:00:52 +0100441 }
442 else
443 {
444 if(!run_optimised)
445 {
446 ARM_COMPUTE_RETURN_ON_ERROR(NEGEMMLowpMatrixMultiplyKernel::validate(matrix_a_info, matrix_b_info, output));
447 }
448 // Validate offset contribution kernel
449 ARM_COMPUTE_RETURN_ON_ERROR(NEGEMMLowpOffsetContributionKernel::validate(output,
450 a_offset == 0 ? nullptr : &info_vector_sum_col,
451 b_offset == 0 ? nullptr : &info_vector_sum_row,
452 a_offset, b_offset));
453 }
George Wort2d7e6832019-02-22 16:37:41 +0000454 }
Georgios Pinitas48b3ef82019-10-14 19:03:09 +0100455
456 // Validate activation
457 const ActivationLayerInfo &activation = gemm_info.activation_info();
458 if(activation.enabled())
459 {
460 ARM_COMPUTE_RETURN_ON_ERROR(NEActivationLayer::validate(output, nullptr, activation));
461 }
462
Georgios Pinitas631c41a2017-12-06 11:53:03 +0000463 return Status{};
Georgios Pinitasa3b1b462017-11-16 19:24:39 +0000464}
465
Gian Marco Iodiceab182122017-10-09 15:05:40 +0100466void NEGEMMLowpMatrixMultiplyCore::run()
467{
Georgios Pinitas72219332018-06-05 14:56:06 +0100468 prepare();
469
Georgios Pinitasda953f22019-04-02 17:27:03 +0100470 MemoryGroupResourceScope scope_mg(_memory_group);
Gian Marco Iodiceab182122017-10-09 15:05:40 +0100471
Georgios Pinitas63d4dbd2019-11-08 11:51:56 +0000472 // Convert QASYMM8->QASYMM8_SIGNED
473 if(_flip_signedness)
474 {
475 NEScheduler::get().schedule(&_convert_to_signed_asymm, Window::DimY);
476 }
477
Georgios Pinitas72219332018-06-05 14:56:06 +0100478 // Reshape inputs
479 if(_mtx_a_reshape_kernel)
Pablo Tello6ff12a02017-11-02 16:09:35 +0000480 {
Georgios Pinitas72219332018-06-05 14:56:06 +0100481 NEScheduler::get().schedule(_mtx_a_reshape_kernel.get(), Window::DimY);
482 }
483 if(_mtx_b_reshape_kernel && !_reshape_b_only_on_first_run)
484 {
485 NEScheduler::get().schedule(_mtx_b_reshape_kernel.get(), Window::DimY);
Pablo Tello6ff12a02017-11-02 16:09:35 +0000486 }
Gian Marco Iodiceab182122017-10-09 15:05:40 +0100487
Georgios Pinitas72219332018-06-05 14:56:06 +0100488 // Run GEMM
Anthony Barbiereaefd002018-07-20 17:49:35 +0100489 if(_asm_glue.is_configured())
Pablo Telloeb82fd22018-02-23 13:43:50 +0000490 {
Anthony Barbiereaefd002018-07-20 17:49:35 +0100491 _asm_glue.run();
Pablo Telloeb82fd22018-02-23 13:43:50 +0000492 }
493 else
494 {
495 NEScheduler::get().schedule(_mm_kernel.get(), Window::DimY);
496 }
Gian Marco Iodiceab182122017-10-09 15:05:40 +0100497
Georgios Pinitascfa2bba2019-06-27 17:00:52 +0100498 if(!_fused_assembly_path)
Gian Marcoe75a02b2017-11-08 12:24:09 +0000499 {
Georgios Pinitascfa2bba2019-06-27 17:00:52 +0100500 // Run matrix A reduction kernel only if _b_offset is not equal to 0
501 if(_b_offset != 0)
502 {
503 NEScheduler::get().schedule(&_mtx_a_reduction_kernel, Window::DimX);
504 }
Gian Marcoe75a02b2017-11-08 12:24:09 +0000505
Georgios Pinitascfa2bba2019-06-27 17:00:52 +0100506 // Run matrix B reduction kernel only if _a_offset is not equal to 0
507 if(_a_offset != 0 && !_reshape_b_only_on_first_run)
508 {
509 NEScheduler::get().schedule(&_mtx_b_reduction_kernel, Window::DimX);
510 }
Gian Marcoe75a02b2017-11-08 12:24:09 +0000511
Georgios Pinitascfa2bba2019-06-27 17:00:52 +0100512 if(_fuse_output_stage)
513 {
514 // Run offset contribution kernel
515 NEScheduler::get().schedule(&_offset_contribution_output_stage_kernel, Window::DimY);
516 }
517 else
518 {
519 // Run offset contribution kernel
520 NEScheduler::get().schedule(&_offset_contribution_kernel, Window::DimY);
521 }
George Wort2d7e6832019-02-22 16:37:41 +0000522 }
Georgios Pinitas48b3ef82019-10-14 19:03:09 +0100523
Georgios Pinitasdbdea0d2019-10-16 19:21:40 +0100524 // Convert QASYMM8_SIGNED->QASYMM8
525 if(_flip_signedness)
526 {
527 NEScheduler::get().schedule(&_convert_from_signed_asymm, Window::DimY);
528 }
529
Georgios Pinitas48b3ef82019-10-14 19:03:09 +0100530 // Run fused activation
531 if(_run_activation)
532 {
533 _activation_func.run();
534 }
Georgios Pinitas72219332018-06-05 14:56:06 +0100535}
Giorgio Arenabb54e4e2018-04-05 17:20:34 +0100536
Georgios Pinitas72219332018-06-05 14:56:06 +0100537void NEGEMMLowpMatrixMultiplyCore::prepare()
538{
539 if(!_is_prepared)
540 {
541 // Run assembly reshape
Anthony Barbiereaefd002018-07-20 17:49:35 +0100542 if(_asm_glue.is_configured() && _reshape_b_only_on_first_run)
Georgios Pinitas72219332018-06-05 14:56:06 +0100543 {
544 ARM_COMPUTE_ERROR_ON(!_original_b->is_used());
545
Anthony Barbiereaefd002018-07-20 17:49:35 +0100546 _asm_glue.prepare();
Georgios Pinitas72219332018-06-05 14:56:06 +0100547 _original_b->mark_as_unused();
548 }
549 // Run non-assembly reshape
550 else if(_mtx_b_reshape_kernel && _reshape_b_only_on_first_run)
551 {
552 ARM_COMPUTE_ERROR_ON(!_original_b->is_used());
553
554 // Run reshape kernel and mark original weights tensor as unused
555 _tmp_b.allocator()->allocate();
556 NEScheduler::get().schedule(_mtx_b_reshape_kernel.get(), Window::DimY);
557 _original_b->mark_as_unused();
558 }
559
560 // Run matrix B reduction kernel only if _a_offset is not equal to 0
561 if(_a_offset != 0 && _reshape_b_only_on_first_run)
562 {
563 _vector_sum_col.allocator()->allocate();
564 NEScheduler::get().schedule(&_mtx_b_reduction_kernel, Window::DimX);
565 }
566
567 _is_prepared = true;
568 }
Pablo Tello6ff12a02017-11-02 16:09:35 +0000569}