blob: dada6d16da7a759ed2e6d746b1a3ee89206d4100 [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/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"
Michele Di Giorgioa602f032020-03-12 19:34:33 +000029#include "arm_compute/core/KernelDescriptors.h"
Gian Marco Iodiceab182122017-10-09 15:05:40 +010030#include "arm_compute/core/TensorInfo.h"
31#include "arm_compute/core/Types.h"
32#include "arm_compute/core/Validate.h"
Isabella Gottardie6630e42018-01-18 15:50:39 +000033#include "arm_compute/core/utils/misc/ShapeCalculator.h"
Gian Marco Iodiceab182122017-10-09 15:05:40 +010034#include "arm_compute/runtime/NEON/NEScheduler.h"
35#include "arm_compute/runtime/TensorAllocator.h"
Matthew Bentham92046462020-03-07 22:15:55 +000036#include "support/MemorySupport.h"
Gian Marco Iodiceab182122017-10-09 15:05:40 +010037
Michele Di Giorgioa602f032020-03-12 19:34:33 +000038namespace arm_compute
39{
Isabella Gottardie6630e42018-01-18 15:50:39 +000040using namespace arm_compute::misc::shape_calculator;
Gian Marco Iodiceab182122017-10-09 15:05:40 +010041
SiCongLi2e5fd632020-03-02 15:39:15 +000042NEGEMMLowpMatrixMultiplyCore::NEGEMMLowpMatrixMultiplyCore(std::shared_ptr<IMemoryManager> memory_manager, IWeightsManager *weights_manager)
43 : _memory_group(memory_manager), _weights_manager(weights_manager), _asm_glue(memory_manager, weights_manager), _mm_kernel(), _mtx_a_reshape_kernel(), _mtx_b_reshape_kernel(),
44 _mtx_a_reduction_kernel(), _mtx_b_reduction_kernel(), _offset_contribution_kernel(), _offset_contribution_output_stage_kernel(), _activation_func(), _convert_to_signed_asymm(),
45 _convert_from_signed_asymm(), _vector_sum_col(), _vector_sum_row(), _tmp_a(), _tmp_b(), _mm_result_s32(), _signed_a(), _signed_output(), _original_b(nullptr), _a_offset(0), _b_offset(0),
46 _run_vector_matrix_multiplication(false), _assembly_path(false), _fused_assembly_path(false), _reshape_b_only_on_first_run(false), _is_prepared(false), _fuse_output_stage(false),
47 _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 // Set internal variables
Georgios Pinitas4c5469b2019-05-21 13:32:43 +010062 _a_offset = a->info()->quantization_info().uniform().offset;
63 _b_offset = b->info()->quantization_info().uniform().offset;
Gian Marcoc7f9b892017-11-30 14:31:13 +000064 _run_vector_matrix_multiplication = a->info()->dimension(1) < 2;
Georgios Pinitasdbdea0d2019-10-16 19:21:40 +010065 _reshape_b_only_on_first_run = info.reshape_b_only_on_first_run();
Georgios Pinitas72219332018-06-05 14:56:06 +010066 _is_prepared = false;
Georgios Pinitascfa2bba2019-06-27 17:00:52 +010067 _fused_assembly_path = false;
Georgios Pinitasdbdea0d2019-10-16 19:21:40 +010068 _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 +010069 _original_b = b;
Gian Marcoe75a02b2017-11-08 12:24:09 +000070
Georgios Pinitasdbdea0d2019-10-16 19:21:40 +010071 const ITensor *a_to_use = a;
72
73 // Convert to QASYMM8 -> QASYMM8_SIGNED and back
74 if(_flip_signedness)
75 {
76 const int32_t offset_correction = 128;
77 const DataType dt = DataType::QASYMM8_SIGNED;
78 const UniformQuantizationInfo iqinfo = a_to_use->info()->quantization_info().uniform();
79
80 _signed_a.allocator()->init(a_to_use->info()->clone()->set_data_type(dt).set_quantization_info(QuantizationInfo(iqinfo.scale, iqinfo.offset + offset_correction)));
81 _memory_group.manage(&_signed_a);
82 _convert_to_signed_asymm.configure(a_to_use, &_signed_a);
83 a_to_use = &_signed_a;
84 _a_offset = _signed_a.info()->quantization_info().uniform().offset;
85
86 const UniformQuantizationInfo oqinfo = output->info()->quantization_info().uniform();
87 _memory_group.manage(&_signed_output);
88 _signed_output.allocator()->init(output->info()->clone()->set_data_type(dt).set_quantization_info(QuantizationInfo(oqinfo.scale, oqinfo.offset - offset_correction)));
89
90 // Output stage correction
91 GEMMLowpOutputStageInfo output_stage_corr = info.gemmlowp_output_stage();
92 output_stage_corr.gemmlowp_offset = _signed_output.info()->quantization_info().uniform().offset;
93 output_stage_corr.gemmlowp_min_bound -= offset_correction;
94 output_stage_corr.gemmlowp_max_bound -= offset_correction;
95 info.set_gemmlowp_output_stage(output_stage_corr);
Georgios Pinitas63d4dbd2019-11-08 11:51:56 +000096
97 // Update matrix a
98 matrix_a = &_signed_a;
Georgios Pinitasdbdea0d2019-10-16 19:21:40 +010099 }
100
George Wort2d7e6832019-02-22 16:37:41 +0000101 // If GEMMLowpOutputStage != NONE, fuse the offset contribution with the output stage
Georgios Pinitasdbdea0d2019-10-16 19:21:40 +0100102 if(info.gemmlowp_output_stage().type != GEMMLowpOutputStageType::NONE)
George Wort2d7e6832019-02-22 16:37:41 +0000103 {
104 _fuse_output_stage = true;
George Wort2d7e6832019-02-22 16:37:41 +0000105 _memory_group.manage(&_mm_result_s32);
George Wort2d7e6832019-02-22 16:37:41 +0000106 TensorInfo info_mm_result_s32(output->info()->tensor_shape(), 1, DataType::S32);
George Wort2d7e6832019-02-22 16:37:41 +0000107 _mm_result_s32.allocator()->init(info_mm_result_s32);
108 }
109
Pablo Telloeb82fd22018-02-23 13:43:50 +0000110#ifdef __aarch64__
111 switch(a->info()->data_type())
Gian Marco Iodiceab182122017-10-09 15:05:40 +0100112 {
Pablo Tello66c656a2018-03-15 10:34:58 +0000113 case DataType::QASYMM8:
Georgios Pinitasdbdea0d2019-10-16 19:21:40 +0100114 case DataType::QASYMM8_SIGNED:
Pablo Telloeb82fd22018-02-23 13:43:50 +0000115 case DataType::U8:
Anthony Barbiereaefd002018-07-20 17:49:35 +0100116 case DataType::S8:
Pablo Telloeb82fd22018-02-23 13:43:50 +0000117 {
Michalis Spyrou71ac9032019-11-14 14:31:44 +0000118 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 +0100119 {
Michele Di Giorgioa1797982020-07-28 16:59:48 +0100120 // Result shifts < 0 are not supported by asm kernels
121 const std::vector<int32_t> &shifts = info.gemmlowp_output_stage().gemmlowp_shifts;
122 const bool is_asm_supported = info.gemmlowp_output_stage().gemmlowp_shift >= 0
123 && std::all_of(shifts.cbegin(), shifts.cend(), [](int32_t val)
124 {
125 return val >= 0;
126 });
127 if(is_asm_supported)
128 {
129 _asm_glue.configure(a_to_use, b, c, output, gemm_info);
130 _fused_assembly_path = _asm_glue.is_configured();
131 }
Georgios Pinitascfa2bba2019-06-27 17:00:52 +0100132 }
133 else
134 {
Georgios Pinitasdbdea0d2019-10-16 19:21:40 +0100135 _asm_glue.configure(a_to_use, b, nullptr, _fuse_output_stage ? &_mm_result_s32 : output, gemm_info);
Georgios Pinitascfa2bba2019-06-27 17:00:52 +0100136 }
137 _assembly_path = _asm_glue.is_configured();
Pablo Telloeb82fd22018-02-23 13:43:50 +0000138 break;
139 }
140 default:
141 {
142 ARM_COMPUTE_ERROR("Datatype not supported");
143 break;
144 }
Gian Marco Iodiceab182122017-10-09 15:05:40 +0100145 }
Pablo Telloeb82fd22018-02-23 13:43:50 +0000146#endif /* __aarch64__ */
Georgios Pinitascfa2bba2019-06-27 17:00:52 +0100147 if(!(_assembly_path || _run_vector_matrix_multiplication))
Gian Marco Iodiceab182122017-10-09 15:05:40 +0100148 {
George Wort2d7e6832019-02-22 16:37:41 +0000149 matrix_a = &_tmp_a;
150 matrix_b = &_tmp_b;
151
152 // The interleaved output matrix will have the following shape: [ a_height * 4, ceil(a_width / 4.0f) ]
Georgios Pinitasdbdea0d2019-10-16 19:21:40 +0100153 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 +0000154 // The transpose1xW output matrix will have the following shape: [ b_height * 16, ceil(b_width / 16.0f) ]
Georgios Pinitas02acf012019-03-19 10:49:03 +0000155 TensorInfo b_info(compute_transpose1xW_shape(*b->info()), 1, b->info()->data_type(), b->info()->quantization_info());
George Wort2d7e6832019-02-22 16:37:41 +0000156 _tmp_a.allocator()->init(a_info);
157 _tmp_b.allocator()->init(b_info);
158 _memory_group.manage(&_tmp_a);
159 if(!_reshape_b_only_on_first_run)
Gian Marco Iodiceab182122017-10-09 15:05:40 +0100160 {
George Wort2d7e6832019-02-22 16:37:41 +0000161 _memory_group.manage(&_tmp_b);
Gian Marco Iodiceab182122017-10-09 15:05:40 +0100162 }
George Wort2d7e6832019-02-22 16:37:41 +0000163
164 // Configure interleave kernel
SiCongLi2e5fd632020-03-02 15:39:15 +0000165 _mtx_a_reshape_kernel.configure(a_to_use, &_tmp_a);
Gian Marcoc7f9b892017-11-30 14:31:13 +0000166
George Wort2d7e6832019-02-22 16:37:41 +0000167 // Configure transpose kernel
SiCongLi2e5fd632020-03-02 15:39:15 +0000168 _mtx_b_reshape_kernel.configure(b, &_tmp_b);
Gian Marcoe75a02b2017-11-08 12:24:09 +0000169 }
Gian Marco Iodiceab182122017-10-09 15:05:40 +0100170
Georgios Pinitascfa2bba2019-06-27 17:00:52 +0100171 if(!_fused_assembly_path)
Gian Marcoe75a02b2017-11-08 12:24:09 +0000172 {
Michele Di Giorgioa602f032020-03-12 19:34:33 +0000173 // Build reduction info
174 const GEMMLowpReductionKernelInfo reduction_info(a_to_use->info()->dimension(0), false, 0, false);
175
Georgios Pinitascfa2bba2019-06-27 17:00:52 +0100176 // Initialize matrix B reduction kernel only if _a_offset is not equal to 0
177 if(_a_offset != 0)
Giorgio Arenabb54e4e2018-04-05 17:20:34 +0100178 {
Georgios Pinitascfa2bba2019-06-27 17:00:52 +0100179 TensorInfo info_vector_sum_col(compute_reductionA_shape(*b->info()), 1, DataType::S32);
180
181 _vector_sum_col.allocator()->init(info_vector_sum_col);
182 if(!_reshape_b_only_on_first_run)
183 {
184 _memory_group.manage(&_vector_sum_col);
185 }
186
187 // Configure Matrix B reduction kernel
Michele Di Giorgioa602f032020-03-12 19:34:33 +0000188 _mtx_b_reduction_kernel.configure(b, &_vector_sum_col, reduction_info);
Giorgio Arenabb54e4e2018-04-05 17:20:34 +0100189 }
Gian Marcoe75a02b2017-11-08 12:24:09 +0000190
Georgios Pinitascfa2bba2019-06-27 17:00:52 +0100191 // Initialize Matrix A reduction kernel only if _b_offset is not equal to 0
192 if(_b_offset != 0)
George Wort2d7e6832019-02-22 16:37:41 +0000193 {
Georgios Pinitasdbdea0d2019-10-16 19:21:40 +0100194 TensorInfo info_vector_sum_row(compute_reductionB_shape(*a_to_use->info()), 1, DataType::S32);
Georgios Pinitascfa2bba2019-06-27 17:00:52 +0100195
196 _vector_sum_row.allocator()->init(info_vector_sum_row);
197 _memory_group.manage(&_vector_sum_row);
198
199 // Configure matrix A reduction kernel
Michele Di Giorgioa602f032020-03-12 19:34:33 +0000200 _mtx_a_reduction_kernel.configure(a_to_use, &_vector_sum_row, reduction_info);
George Wort2d7e6832019-02-22 16:37:41 +0000201 }
202
Georgios Pinitascfa2bba2019-06-27 17:00:52 +0100203 if(_fuse_output_stage)
George Wort2d7e6832019-02-22 16:37:41 +0000204 {
Georgios Pinitascfa2bba2019-06-27 17:00:52 +0100205 // Configure matrix multiply kernel
206 if(!_assembly_path)
207 {
SiCongLi2e5fd632020-03-02 15:39:15 +0000208 _mm_kernel.configure(matrix_a, matrix_b, &_mm_result_s32);
Georgios Pinitascfa2bba2019-06-27 17:00:52 +0100209 }
210
Georgios Pinitasdbdea0d2019-10-16 19:21:40 +0100211 _offset_contribution_output_stage_kernel.configure(&_mm_result_s32,
212 _a_offset == 0 ? nullptr : &_vector_sum_col,
213 _b_offset == 0 ? nullptr : &_vector_sum_row, c,
214 _flip_signedness ? &_signed_output : output,
215 a->info()->dimension(0),
216 _a_offset, _b_offset, info.gemmlowp_output_stage());
217
218 if(_flip_signedness)
219 {
220 _convert_from_signed_asymm.configure(&_signed_output, output);
221 }
George Wort2d7e6832019-02-22 16:37:41 +0000222 }
Georgios Pinitascfa2bba2019-06-27 17:00:52 +0100223 else
224 {
225 // Configure matrix multiply kernel
226 if(!_assembly_path)
227 {
SiCongLi2e5fd632020-03-02 15:39:15 +0000228 _mm_kernel.configure(matrix_a, matrix_b, output);
Georgios Pinitascfa2bba2019-06-27 17:00:52 +0100229 }
230 // Configure offset contribution kernel
Georgios Pinitasdbdea0d2019-10-16 19:21:40 +0100231 _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 +0100232 }
Gian Marcoe75a02b2017-11-08 12:24:09 +0000233
SiCongLi2e5fd632020-03-02 15:39:15 +0000234 // Configure activation
235 const ActivationLayerInfo &activation = gemm_info.activation_info();
236 _run_activation = activation.enabled() && (!_assembly_path || (_assembly_path && !NEGEMMAssemblyDispatch::is_activation_supported(activation)));
237 if(_run_activation)
238 {
239 _activation_func.configure(output, nullptr, activation);
240 }
Georgios Pinitas48b3ef82019-10-14 19:03:09 +0100241 }
242
Gian Marcoe75a02b2017-11-08 12:24:09 +0000243 // Allocate tensors
Georgios Pinitascfa2bba2019-06-27 17:00:52 +0100244 if(!_assembly_path && !_run_vector_matrix_multiplication)
Gian Marcoe75a02b2017-11-08 12:24:09 +0000245 {
Pablo Tello6ff12a02017-11-02 16:09:35 +0000246 _tmp_a.allocator()->allocate();
Georgios Pinitas72219332018-06-05 14:56:06 +0100247 if(!_reshape_b_only_on_first_run)
248 {
249 _tmp_b.allocator()->allocate();
250 }
Pablo Tello6ff12a02017-11-02 16:09:35 +0000251 }
Gian Marcoe75a02b2017-11-08 12:24:09 +0000252
Georgios Pinitascfa2bba2019-06-27 17:00:52 +0100253 if(!_fused_assembly_path)
Gian Marcoe75a02b2017-11-08 12:24:09 +0000254 {
Georgios Pinitascfa2bba2019-06-27 17:00:52 +0100255 if(_a_offset != 0 && !_reshape_b_only_on_first_run)
256 {
257 _vector_sum_col.allocator()->allocate();
258 }
259
260 if(_b_offset != 0)
261 {
262 _vector_sum_row.allocator()->allocate();
263 }
Gian Marcoe75a02b2017-11-08 12:24:09 +0000264 }
265
Georgios Pinitascfa2bba2019-06-27 17:00:52 +0100266 if(_fuse_output_stage)
Gian Marcoe75a02b2017-11-08 12:24:09 +0000267 {
Georgios Pinitascfa2bba2019-06-27 17:00:52 +0100268 _mm_result_s32.allocator()->allocate();
Gian Marcoe75a02b2017-11-08 12:24:09 +0000269 }
Georgios Pinitasdbdea0d2019-10-16 19:21:40 +0100270
271 if(_flip_signedness)
272 {
273 _signed_a.allocator()->allocate();
274 _signed_output.allocator()->allocate();
275 }
Gian Marco Iodiceab182122017-10-09 15:05:40 +0100276}
277
Gian Marco Iodice4b908652018-10-18 10:21:02 +0100278Status 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 +0000279{
Georgios Pinitas6e1791b2019-12-02 19:01:25 +0000280 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(a, 1, DataType::QASYMM8, DataType::QASYMM8_SIGNED);
Michele Di Giorgio47a89902020-03-09 19:32:33 +0000281 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(b, 1, DataType::QASYMM8, DataType::QASYMM8_SIGNED, DataType::QSYMM8, DataType::QSYMM8_PER_CHANNEL);
Georgios Pinitas6e1791b2019-12-02 19:01:25 +0000282 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 +0000283 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 +0000284 ARM_COMPUTE_RETURN_ERROR_ON_MSG((a)->dimension(0) != (b)->dimension(1),
285 "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 +0700286 ARM_COMPUTE_RETURN_ERROR_ON_MSG(gemm_info.is_a_reshaped(), "Matrix A already reshaped is not supported");
287 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 +0000288
Georgios Pinitasdbdea0d2019-10-16 19:21:40 +0100289 GEMMInfo info = gemm_info;
George Wort2d7e6832019-02-22 16:37:41 +0000290 const ITensorInfo *matrix_a_info = a;
291 const ITensorInfo *matrix_b_info = b;
292
Georgios Pinitasdbdea0d2019-10-16 19:21:40 +0100293 const ITensorInfo *a_to_use = a;
294
George Wort2d7e6832019-02-22 16:37:41 +0000295 TensorInfo tmp_a_info{};
296 TensorInfo tmp_b_info{};
297 TensorInfo mm_result_s32_info{};
298
Georgios Pinitas37d080f2019-06-21 18:43:12 +0100299 int32_t a_offset = a->quantization_info().uniform().offset;
300 int32_t b_offset = b->quantization_info().uniform().offset;
Georgios Pinitasa3b1b462017-11-16 19:24:39 +0000301
Georgios Pinitasdbdea0d2019-10-16 19:21:40 +0100302 bool fuse_output_stage = info.gemmlowp_output_stage().type != GEMMLowpOutputStageType::NONE;
George Wort2d7e6832019-02-22 16:37:41 +0000303 if(fuse_output_stage)
304 {
305 auto_init_if_empty(mm_result_s32_info, a->clone()->set_tensor_shape(output->tensor_shape()).set_data_type(DataType::S32));
306 }
307
Georgios Pinitasdbdea0d2019-10-16 19:21:40 +0100308 // Convert QASYMM8->QASYMM8_SIGNED
309 TensorInfo signed_a{};
310 TensorInfo signed_output{};
311 bool flip_signedness = is_data_type_quantized_per_channel(b->data_type()) && (a->data_type() == DataType::QASYMM8) && info.reshape_b_only_on_first_run();
312 if(flip_signedness)
313 {
314 const int32_t offset_correction = 128;
315 const DataType dt = DataType::QASYMM8_SIGNED;
316 const UniformQuantizationInfo iqinfo = a_to_use->quantization_info().uniform();
317
318 signed_a = a_to_use->clone()->set_data_type(dt).set_quantization_info(QuantizationInfo(iqinfo.scale, iqinfo.offset + offset_correction));
319 ARM_COMPUTE_RETURN_ON_ERROR(NEConvertQuantizedSignednessKernel::validate(a_to_use, &signed_a));
320 a_to_use = &signed_a;
321 a_offset = signed_a.quantization_info().uniform().offset;
322
323 const UniformQuantizationInfo oqinfo = output->quantization_info().uniform();
324 signed_output = output->clone()->set_data_type(dt).set_quantization_info(QuantizationInfo(oqinfo.scale, oqinfo.offset - offset_correction));
325
326 // Output stage correction
327 GEMMLowpOutputStageInfo output_stage_corr = info.gemmlowp_output_stage();
328 output_stage_corr.gemmlowp_offset = signed_output.quantization_info().uniform().offset;
329 output_stage_corr.gemmlowp_min_bound -= offset_correction;
330 output_stage_corr.gemmlowp_max_bound -= offset_correction;
331 info.set_gemmlowp_output_stage(output_stage_corr);
Georgios Pinitas63d4dbd2019-11-08 11:51:56 +0000332
333 // Update matrix a
334 matrix_a_info = &signed_a;
Georgios Pinitasdbdea0d2019-10-16 19:21:40 +0100335 }
336
Georgios Pinitasbb081ca2018-11-08 10:22:01 +0000337 // Check if we need to run the optimized assembly kernel
Georgios Pinitascfa2bba2019-06-27 17:00:52 +0100338 bool run_optimised = false;
339 bool run_optimised_requantized = false;
Michele Di Giorgioa1797982020-07-28 16:59:48 +0100340 if(is_data_type_quantized_asymmetric(a_to_use->data_type()) && info.gemmlowp_output_stage().type == GEMMLowpOutputStageType::QUANTIZE_DOWN_FIXEDPOINT)
Georgios Pinitascfa2bba2019-06-27 17:00:52 +0100341 {
Michele Di Giorgioa1797982020-07-28 16:59:48 +0100342 // Result shifts < 0 are not supported by asm kernels
343 const std::vector<int32_t> &shifts = info.gemmlowp_output_stage().gemmlowp_shifts;
344 const bool is_asm_supported = info.gemmlowp_output_stage().gemmlowp_shift >= 0
345 && std::all_of(shifts.cbegin(), shifts.cend(), [](int32_t val)
Michele Di Giorgiof29d1b72019-10-29 10:58:13 +0000346 {
Michele Di Giorgioa1797982020-07-28 16:59:48 +0100347 return val >= 0;
348 });
349
350 if(is_asm_supported)
351 {
352 run_optimised = bool(NEGEMMAssemblyDispatch::validate(a_to_use, b, c, output, gemm_info));
353 run_optimised_requantized = run_optimised;
Michele Di Giorgiof29d1b72019-10-29 10:58:13 +0000354 }
Georgios Pinitascfa2bba2019-06-27 17:00:52 +0100355 }
356 else
357 {
Georgios Pinitasdbdea0d2019-10-16 19:21:40 +0100358 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 +0100359 }
Georgios Pinitasbb081ca2018-11-08 10:22:01 +0000360
361 if(run_optimised)
Georgios Pinitasa3b1b462017-11-16 19:24:39 +0000362 {
George Wort2d7e6832019-02-22 16:37:41 +0000363 ARM_COMPUTE_RETURN_ERROR_ON(b->dimension(0) != output->dimension(0));
Georgios Pinitasdbdea0d2019-10-16 19:21:40 +0100364 if(info.depth_output_gemm3d() != 0)
Georgios Pinitasbb081ca2018-11-08 10:22:01 +0000365 {
Georgios Pinitasdbdea0d2019-10-16 19:21:40 +0100366 if(info.reinterpret_input_as_3d())
Georgios Pinitasbb081ca2018-11-08 10:22:01 +0000367 {
George Wort2d7e6832019-02-22 16:37:41 +0000368 ARM_COMPUTE_RETURN_ERROR_ON(a->dimension(1) != output->dimension(1));
369 ARM_COMPUTE_RETURN_ERROR_ON(a->dimension(2) != output->dimension(2));
Georgios Pinitasbb081ca2018-11-08 10:22:01 +0000370 }
371 else
372 {
George Wort2d7e6832019-02-22 16:37:41 +0000373 ARM_COMPUTE_RETURN_ERROR_ON(a->dimension(1) != output->dimension(1) * output->dimension(2));
Georgios Pinitasbb081ca2018-11-08 10:22:01 +0000374 }
375 }
George Wort2d7e6832019-02-22 16:37:41 +0000376 else
377 {
378 ARM_COMPUTE_RETURN_ERROR_ON(a->dimension(1) != output->dimension(1));
379 }
Georgios Pinitasa3b1b462017-11-16 19:24:39 +0000380 }
381 else
Georgios Pinitasa3b1b462017-11-16 19:24:39 +0000382 {
Georgios Pinitasdbdea0d2019-10-16 19:21:40 +0100383 ARM_COMPUTE_RETURN_ERROR_ON_MSG(info.reinterpret_input_as_3d(), "NEGEMM cannot reinterpret the input tensor as 3D");
384 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 +0000385
386 const bool run_vector_matrix_multiplication = a->dimension(1) < 2;
387 if(!run_vector_matrix_multiplication)
388 {
George Wort2d7e6832019-02-22 16:37:41 +0000389 matrix_a_info = &tmp_a_info;
390 matrix_b_info = &tmp_b_info;
391
Georgios Pinitasbb081ca2018-11-08 10:22:01 +0000392 // The interleaved output matrix will have the following shape: [ a_height * 4, ceil(a_width / 4.0f) ]
393 TensorShape shape_tmp_a = a->tensor_shape();
394 shape_tmp_a.set(0, a->dimension(0) * 4);
395 shape_tmp_a.set(1, std::ceil(a->dimension(1) / 4.f));
396
397 // The transpose1xW output matrix will have the following shape: [ b_height * 16, ceil(b_width / 16.0f) ]
398 TensorShape shape_tmp_b = b->tensor_shape();
399 shape_tmp_b.set(0, b->dimension(1) * 16);
400 shape_tmp_b.set(1, std::ceil(b->dimension(0) / 16.f));
401
George Wort2d7e6832019-02-22 16:37:41 +0000402 // Validate interleave kernel
Georgios Pinitasdbdea0d2019-10-16 19:21:40 +0100403 auto_init_if_empty(tmp_a_info, a_to_use->clone()->set_tensor_shape(shape_tmp_a));
George Wort2d7e6832019-02-22 16:37:41 +0000404 auto_init_if_empty(tmp_b_info, b->clone()->set_tensor_shape(shape_tmp_b));
Georgios Pinitasbb081ca2018-11-08 10:22:01 +0000405
Georgios Pinitasdbdea0d2019-10-16 19:21:40 +0100406 ARM_COMPUTE_RETURN_ON_ERROR(NEGEMMInterleave4x4Kernel::validate(a_to_use, &tmp_a_info));
George Wort2d7e6832019-02-22 16:37:41 +0000407 ARM_COMPUTE_RETURN_ON_ERROR(NEGEMMTranspose1xWKernel::validate(b, &tmp_b_info));
Georgios Pinitasbb081ca2018-11-08 10:22:01 +0000408 }
Georgios Pinitasa3b1b462017-11-16 19:24:39 +0000409 }
410
Georgios Pinitascfa2bba2019-06-27 17:00:52 +0100411 if(!run_optimised_requantized)
Georgios Pinitasa3b1b462017-11-16 19:24:39 +0000412 {
Georgios Pinitascfa2bba2019-06-27 17:00:52 +0100413 TensorInfo info_vector_sum_col{};
414 TensorInfo info_vector_sum_row{};
Georgios Pinitasa3b1b462017-11-16 19:24:39 +0000415
Michele Di Giorgioa602f032020-03-12 19:34:33 +0000416 const GEMMLowpReductionKernelInfo reduction_info(a_to_use->dimension(0), false, 0, false);
417
Georgios Pinitascfa2bba2019-06-27 17:00:52 +0100418 // Validate matrix B reduction kernel only if _a_offset is not equal to 0
419 if(a_offset != 0)
George Wort2d7e6832019-02-22 16:37:41 +0000420 {
Georgios Pinitascfa2bba2019-06-27 17:00:52 +0100421 info_vector_sum_col = TensorInfo(compute_reductionA_shape(*b), 1, DataType::S32);
422
423 // Configure Matrix B reduction kernel
Michele Di Giorgioa602f032020-03-12 19:34:33 +0000424 ARM_COMPUTE_RETURN_ON_ERROR(NEGEMMLowpMatrixBReductionKernel::validate(b, &info_vector_sum_col, reduction_info));
George Wort2d7e6832019-02-22 16:37:41 +0000425 }
Georgios Pinitasa3b1b462017-11-16 19:24:39 +0000426
Georgios Pinitascfa2bba2019-06-27 17:00:52 +0100427 // Validate Matrix A reduction kernel only if _b_offset is not equal to 0
428 if(b_offset != 0)
George Wort2d7e6832019-02-22 16:37:41 +0000429 {
Georgios Pinitascfa2bba2019-06-27 17:00:52 +0100430 info_vector_sum_row = TensorInfo(compute_reductionB_shape(*a), 1, DataType::S32);
431
432 // Configure matrix A reduction kernel
Michele Di Giorgioa602f032020-03-12 19:34:33 +0000433 ARM_COMPUTE_RETURN_ON_ERROR(NEGEMMLowpMatrixAReductionKernel::validate(a_to_use, &info_vector_sum_row, reduction_info));
George Wort2d7e6832019-02-22 16:37:41 +0000434 }
Georgios Pinitascfa2bba2019-06-27 17:00:52 +0100435
436 if(fuse_output_stage)
437 {
438 if(!run_optimised)
439 {
Michele Di Giorgioa1797982020-07-28 16:59:48 +0100440 ARM_COMPUTE_RETURN_ERROR_ON_MSG(info.reinterpret_input_as_3d(), "NEGEMMLowpMatrixMultiplyKernel cannot reinterpret the input tensor as 3D");
441 ARM_COMPUTE_RETURN_ERROR_ON_MSG(info.depth_output_gemm3d() != 0, "NEGEMMLowpMatrixMultiplyKernel cannot reinterpret the output tensor as 3D");
442
Georgios Pinitascfa2bba2019-06-27 17:00:52 +0100443 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 {
Michele Di Giorgioa1797982020-07-28 16:59:48 +0100459 ARM_COMPUTE_RETURN_ERROR_ON_MSG(info.reinterpret_input_as_3d(), "NEGEMMLowpMatrixMultiplyKernel cannot reinterpret the input tensor as 3D");
460 ARM_COMPUTE_RETURN_ERROR_ON_MSG(info.depth_output_gemm3d() != 0, "NEGEMMLowpMatrixMultiplyKernel cannot reinterpret the output tensor as 3D");
461
Georgios Pinitascfa2bba2019-06-27 17:00:52 +0100462 ARM_COMPUTE_RETURN_ON_ERROR(NEGEMMLowpMatrixMultiplyKernel::validate(matrix_a_info, matrix_b_info, output));
463 }
464 // Validate offset contribution kernel
465 ARM_COMPUTE_RETURN_ON_ERROR(NEGEMMLowpOffsetContributionKernel::validate(output,
466 a_offset == 0 ? nullptr : &info_vector_sum_col,
467 b_offset == 0 ? nullptr : &info_vector_sum_row,
468 a_offset, b_offset));
469 }
George Wort2d7e6832019-02-22 16:37:41 +0000470 }
Georgios Pinitas48b3ef82019-10-14 19:03:09 +0100471
472 // Validate activation
473 const ActivationLayerInfo &activation = gemm_info.activation_info();
474 if(activation.enabled())
475 {
476 ARM_COMPUTE_RETURN_ON_ERROR(NEActivationLayer::validate(output, nullptr, activation));
477 }
478
Georgios Pinitas631c41a2017-12-06 11:53:03 +0000479 return Status{};
Georgios Pinitasa3b1b462017-11-16 19:24:39 +0000480}
481
Gian Marco Iodiceab182122017-10-09 15:05:40 +0100482void NEGEMMLowpMatrixMultiplyCore::run()
483{
Georgios Pinitas72219332018-06-05 14:56:06 +0100484 prepare();
485
Georgios Pinitasda953f22019-04-02 17:27:03 +0100486 MemoryGroupResourceScope scope_mg(_memory_group);
Gian Marco Iodiceab182122017-10-09 15:05:40 +0100487
Georgios Pinitas63d4dbd2019-11-08 11:51:56 +0000488 // Convert QASYMM8->QASYMM8_SIGNED
489 if(_flip_signedness)
490 {
491 NEScheduler::get().schedule(&_convert_to_signed_asymm, Window::DimY);
492 }
493
Georgios Pinitas72219332018-06-05 14:56:06 +0100494 // Run GEMM
Anthony Barbiereaefd002018-07-20 17:49:35 +0100495 if(_asm_glue.is_configured())
Pablo Telloeb82fd22018-02-23 13:43:50 +0000496 {
Anthony Barbiereaefd002018-07-20 17:49:35 +0100497 _asm_glue.run();
Pablo Telloeb82fd22018-02-23 13:43:50 +0000498 }
499 else
500 {
SiCongLi2e5fd632020-03-02 15:39:15 +0000501 if(!_run_vector_matrix_multiplication)
502 {
503 // Run interleave kernel
504 NEScheduler::get().schedule(&_mtx_a_reshape_kernel, Window::DimY);
505
506 if(!_reshape_b_only_on_first_run)
507 {
508 // Run transpose kernel
509 NEScheduler::get().schedule(&_mtx_b_reshape_kernel, Window::DimY);
510 }
511 }
512 NEScheduler::get().schedule(&_mm_kernel, Window::DimY);
Pablo Telloeb82fd22018-02-23 13:43:50 +0000513 }
Gian Marco Iodiceab182122017-10-09 15:05:40 +0100514
Georgios Pinitascfa2bba2019-06-27 17:00:52 +0100515 if(!_fused_assembly_path)
Gian Marcoe75a02b2017-11-08 12:24:09 +0000516 {
Georgios Pinitascfa2bba2019-06-27 17:00:52 +0100517 // Run matrix A reduction kernel only if _b_offset is not equal to 0
518 if(_b_offset != 0)
519 {
520 NEScheduler::get().schedule(&_mtx_a_reduction_kernel, Window::DimX);
521 }
Gian Marcoe75a02b2017-11-08 12:24:09 +0000522
Georgios Pinitascfa2bba2019-06-27 17:00:52 +0100523 // Run matrix B reduction kernel only if _a_offset is not equal to 0
524 if(_a_offset != 0 && !_reshape_b_only_on_first_run)
525 {
526 NEScheduler::get().schedule(&_mtx_b_reduction_kernel, Window::DimX);
527 }
Gian Marcoe75a02b2017-11-08 12:24:09 +0000528
Georgios Pinitascfa2bba2019-06-27 17:00:52 +0100529 if(_fuse_output_stage)
530 {
531 // Run offset contribution kernel
532 NEScheduler::get().schedule(&_offset_contribution_output_stage_kernel, Window::DimY);
533 }
534 else
535 {
536 // Run offset contribution kernel
537 NEScheduler::get().schedule(&_offset_contribution_kernel, Window::DimY);
538 }
George Wort2d7e6832019-02-22 16:37:41 +0000539 }
Georgios Pinitas48b3ef82019-10-14 19:03:09 +0100540
Georgios Pinitasdbdea0d2019-10-16 19:21:40 +0100541 // Convert QASYMM8_SIGNED->QASYMM8
542 if(_flip_signedness)
543 {
544 NEScheduler::get().schedule(&_convert_from_signed_asymm, Window::DimY);
545 }
546
SiCongLi2e5fd632020-03-02 15:39:15 +0000547 // Run fused activation unless already run in the fused assembly
548 if(_run_activation && !_fused_assembly_path)
Georgios Pinitas48b3ef82019-10-14 19:03:09 +0100549 {
550 _activation_func.run();
551 }
Georgios Pinitas72219332018-06-05 14:56:06 +0100552}
Giorgio Arenabb54e4e2018-04-05 17:20:34 +0100553
Georgios Pinitas72219332018-06-05 14:56:06 +0100554void NEGEMMLowpMatrixMultiplyCore::prepare()
555{
556 if(!_is_prepared)
557 {
SiCongLi2e5fd632020-03-02 15:39:15 +0000558 const bool original_b_managed_by_weights_manager = _weights_manager && _weights_manager->are_weights_managed(_original_b);
Georgios Pinitas72219332018-06-05 14:56:06 +0100559 // Run assembly reshape
SiCongLi2e5fd632020-03-02 15:39:15 +0000560 if(_asm_glue.is_configured())
Georgios Pinitas72219332018-06-05 14:56:06 +0100561 {
SiCongLi2e5fd632020-03-02 15:39:15 +0000562 if(!original_b_managed_by_weights_manager)
563 {
564 ARM_COMPUTE_ERROR_ON(!_original_b->is_used());
565 }
Georgios Pinitas72219332018-06-05 14:56:06 +0100566
Anthony Barbiereaefd002018-07-20 17:49:35 +0100567 _asm_glue.prepare();
SiCongLi2e5fd632020-03-02 15:39:15 +0000568 if(!original_b_managed_by_weights_manager)
569 {
570 _original_b->mark_as_unused();
571 }
Georgios Pinitas72219332018-06-05 14:56:06 +0100572 }
573 // Run non-assembly reshape
SiCongLi2e5fd632020-03-02 15:39:15 +0000574 else if(_reshape_b_only_on_first_run && !_run_vector_matrix_multiplication && !_asm_glue.is_configured())
Georgios Pinitas72219332018-06-05 14:56:06 +0100575 {
SiCongLi2e5fd632020-03-02 15:39:15 +0000576 if(!original_b_managed_by_weights_manager)
577 {
578 ARM_COMPUTE_ERROR_ON(!_original_b->is_used());
579 }
Georgios Pinitas72219332018-06-05 14:56:06 +0100580
581 // Run reshape kernel and mark original weights tensor as unused
582 _tmp_b.allocator()->allocate();
SiCongLi2e5fd632020-03-02 15:39:15 +0000583 NEScheduler::get().schedule(&_mtx_b_reshape_kernel, Window::DimY);
584 if(!original_b_managed_by_weights_manager)
585 {
586 _original_b->mark_as_unused();
587 }
Georgios Pinitas72219332018-06-05 14:56:06 +0100588 }
589
590 // Run matrix B reduction kernel only if _a_offset is not equal to 0
Michalis Spyrouc8bdeaa2020-05-26 09:59:18 +0100591 if(!_fused_assembly_path && _a_offset != 0 && _reshape_b_only_on_first_run)
Georgios Pinitas72219332018-06-05 14:56:06 +0100592 {
593 _vector_sum_col.allocator()->allocate();
594 NEScheduler::get().schedule(&_mtx_b_reduction_kernel, Window::DimX);
595 }
596
597 _is_prepared = true;
598 }
Pablo Tello6ff12a02017-11-02 16:09:35 +0000599}
Michele Di Giorgioa602f032020-03-12 19:34:33 +0000600} // namespace arm_compute