blob: cbec73fc317f655fa7f1bf62c126ae79d94861c1 [file] [log] [blame]
Gian Marco Iodiceab182122017-10-09 15:05:40 +01001/*
Isabella Gottardie6630e42018-01-18 15:50:39 +00002 * Copyright (c) 2017-2018 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)
Pablo Telloeb82fd22018-02-23 13:43:50 +000044 : _memory_group(std::move(memory_manager)), _asm_glue_unsigned(), _asm_glue_signed(), _mm_kernel(nullptr), _mtx_a_reshape_kernel(nullptr), _mtx_b_reshape_kernel(nullptr), _mtx_a_reduction_kernel(),
45 _mtx_b_reduction_kernel(), _offset_contribution_kernel(), _vector_sum_col(), _vector_sum_row(), _tmp_a(), _tmp_b(), _workspace(), _a_offset(0), _b_offset(0), _run_vector_matrix_multiplication(false),
Giorgio Arenabb54e4e2018-04-05 17:20:34 +010046 _dot_product_path(false), _is_first_run(true), _reshape_b_only_on_first_run(false)
Gian Marco Iodiceab182122017-10-09 15:05:40 +010047{
48}
49
Chunosov5124be52017-11-22 20:42:13 +070050void NEGEMMLowpMatrixMultiplyCore::configure(const ITensor *a, const ITensor *b, ITensor *output, const GEMMInfo &gemm_info)
Gian Marco Iodiceab182122017-10-09 15:05:40 +010051{
Georgios Pinitasa3b1b462017-11-16 19:24:39 +000052 ARM_COMPUTE_ERROR_ON_NULLPTR(a, b, output);
Chunosov5124be52017-11-22 20:42:13 +070053 ARM_COMPUTE_ERROR_THROW_ON(NEGEMMLowpMatrixMultiplyCore::validate(a->info(), b->info(), output->info(), gemm_info));
Gian Marco Iodiceab182122017-10-09 15:05:40 +010054
Gian Marcoc7f9b892017-11-30 14:31:13 +000055 _a_offset = a->info()->quantization_info().offset;
56 _b_offset = b->info()->quantization_info().offset;
57 _run_vector_matrix_multiplication = a->info()->dimension(1) < 2;
Giorgio Arenabb54e4e2018-04-05 17:20:34 +010058 _reshape_b_only_on_first_run = gemm_info.reshape_b_only_on_first_run();
Gian Marcoe75a02b2017-11-08 12:24:09 +000059
Pablo Telloeb82fd22018-02-23 13:43:50 +000060#ifdef __aarch64__
61 switch(a->info()->data_type())
Gian Marco Iodiceab182122017-10-09 15:05:40 +010062 {
Pablo Telloeb82fd22018-02-23 13:43:50 +000063 case DataType::S8:
64 {
Pablo Tello7fad9b12018-03-14 17:55:27 +000065 _dot_product_path = setup_assembly_kernel(a, b, output, 1.f, 1.f, _workspace, _memory_group, _asm_glue_signed);
Pablo Telloeb82fd22018-02-23 13:43:50 +000066 break;
67 }
Pablo Tello66c656a2018-03-15 10:34:58 +000068 case DataType::QASYMM8:
Pablo Telloeb82fd22018-02-23 13:43:50 +000069 case DataType::U8:
70 {
Pablo Tello7fad9b12018-03-14 17:55:27 +000071 _dot_product_path = setup_assembly_kernel(a, b, output, 1.f, 1.f, _workspace, _memory_group, _asm_glue_unsigned);
Pablo Telloeb82fd22018-02-23 13:43:50 +000072 break;
73 }
74 default:
75 {
76 ARM_COMPUTE_ERROR("Datatype not supported");
77 break;
78 }
Gian Marco Iodiceab182122017-10-09 15:05:40 +010079 }
Pablo Telloeb82fd22018-02-23 13:43:50 +000080#endif /* __aarch64__ */
81 if(!_dot_product_path)
Gian Marco Iodiceab182122017-10-09 15:05:40 +010082 {
Gian Marcoc7f9b892017-11-30 14:31:13 +000083 if(_run_vector_matrix_multiplication)
Gian Marco Iodiceab182122017-10-09 15:05:40 +010084 {
Gian Marcoc7f9b892017-11-30 14:31:13 +000085 // Configure matrix multiply kernel
86 {
87 auto k = arm_compute::support::cpp14::make_unique<NEGEMMLowpMatrixMultiplyKernel>();
88 k->configure(a, b, output);
89 _mm_kernel = std::move(k);
90 }
Gian Marco Iodiceab182122017-10-09 15:05:40 +010091 }
Gian Marcoc7f9b892017-11-30 14:31:13 +000092 else
Gian Marco Iodiceab182122017-10-09 15:05:40 +010093 {
Gian Marcoc7f9b892017-11-30 14:31:13 +000094 // The interleaved output matrix will have the following shape: [ a_height * 4, ceil(a_width / 4.0f) ]
Isabella Gottardie6630e42018-01-18 15:50:39 +000095 TensorInfo info_a(compute_interleaved_shape(*a->info()), 1, a->info()->data_type());
Gian Marcoc7f9b892017-11-30 14:31:13 +000096 // The transpose1xW output matrix will have the following shape: [ b_height * 16, ceil(b_width / 16.0f) ]
Isabella Gottardie6630e42018-01-18 15:50:39 +000097 TensorInfo info_b(compute_transpose1xW_shape(*b->info()), 1, b->info()->data_type());
Gian Marcoc7f9b892017-11-30 14:31:13 +000098 _tmp_a.allocator()->init(info_a);
99 _tmp_b.allocator()->init(info_b);
100 _memory_group.manage(&_tmp_a);
Giorgio Arenabb54e4e2018-04-05 17:20:34 +0100101 if(!_reshape_b_only_on_first_run)
102 {
103 _memory_group.manage(&_tmp_b);
104 }
Gian Marcoc7f9b892017-11-30 14:31:13 +0000105
106 // Configure interleave kernel
107 {
108 auto k = arm_compute::support::cpp14::make_unique<NEGEMMInterleave4x4Kernel>();
109 k->configure(a, &_tmp_a);
110 _mtx_a_reshape_kernel = std::move(k);
111 }
112
113 // Configure transpose kernel
114 {
115 auto k = arm_compute::support::cpp14::make_unique<NEGEMMTranspose1xWKernel>();
116 k->configure(b, &_tmp_b);
117 _mtx_b_reshape_kernel = std::move(k);
118 }
119
120 // Configure matrix multiply kernel
121 {
122 auto k = arm_compute::support::cpp14::make_unique<NEGEMMLowpMatrixMultiplyKernel>();
123 k->configure(&_tmp_a, &_tmp_b, output);
124 _mm_kernel = std::move(k);
125 }
Gian Marco Iodiceab182122017-10-09 15:05:40 +0100126 }
Gian Marcoe75a02b2017-11-08 12:24:09 +0000127 }
Gian Marco Iodiceab182122017-10-09 15:05:40 +0100128
Gian Marcoe75a02b2017-11-08 12:24:09 +0000129 // Initialize matrix B reduction kernel only if _a_offset is not equal to 0
130 if(_a_offset != 0)
131 {
Isabella Gottardie6630e42018-01-18 15:50:39 +0000132 TensorInfo info_vector_sum_col(compute_reductionA_shape(*b->info()), 1, DataType::S32);
133
Gian Marcoe75a02b2017-11-08 12:24:09 +0000134 _vector_sum_col.allocator()->init(info_vector_sum_col);
Giorgio Arenabb54e4e2018-04-05 17:20:34 +0100135 if(!_reshape_b_only_on_first_run)
136 {
137 _memory_group.manage(&_vector_sum_col);
138 }
Gian Marcoe75a02b2017-11-08 12:24:09 +0000139
140 // Configure Matrix B reduction kernel
141 _mtx_b_reduction_kernel.configure(b, &_vector_sum_col, a->info()->dimension(0), false);
142 }
143
144 // Initialize Matrix A reduction kernel only if _b_offset is not equal to 0
145 if(_b_offset != 0)
146 {
Isabella Gottardie6630e42018-01-18 15:50:39 +0000147 TensorInfo info_vector_sum_row(compute_reductionB_shape(*a->info()), 1, DataType::S32);
148
Gian Marcoe75a02b2017-11-08 12:24:09 +0000149 _vector_sum_row.allocator()->init(info_vector_sum_row);
150 _memory_group.manage(&_vector_sum_row);
151
152 // Configure matrix A reduction kernel
153 _mtx_a_reduction_kernel.configure(a, &_vector_sum_row, a->info()->dimension(0), false);
154 }
155
156 // Configure offset contribution kernel
157 _offset_contribution_kernel.configure(output, _a_offset == 0 ? nullptr : &_vector_sum_col, _b_offset == 0 ? nullptr : &_vector_sum_row, a->info()->dimension(0), _a_offset, _b_offset);
158
159 // Allocate tensors
Gian Marcoc7f9b892017-11-30 14:31:13 +0000160 if(!_dot_product_path && !_run_vector_matrix_multiplication)
Gian Marcoe75a02b2017-11-08 12:24:09 +0000161 {
Pablo Tello6ff12a02017-11-02 16:09:35 +0000162 _tmp_a.allocator()->allocate();
163 _tmp_b.allocator()->allocate();
164 }
Gian Marcoe75a02b2017-11-08 12:24:09 +0000165
166 if(_a_offset != 0)
167 {
168 _vector_sum_col.allocator()->allocate();
169 }
170
171 if(_b_offset != 0)
172 {
173 _vector_sum_row.allocator()->allocate();
174 }
Gian Marco Iodiceab182122017-10-09 15:05:40 +0100175}
176
Georgios Pinitas631c41a2017-12-06 11:53:03 +0000177Status NEGEMMLowpMatrixMultiplyCore::validate(const ITensorInfo *a, const ITensorInfo *b, const ITensorInfo *output, const GEMMInfo &gemm_info)
Georgios Pinitasa3b1b462017-11-16 19:24:39 +0000178{
179 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(a, 1, DataType::QASYMM8);
180 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(output, 1, DataType::S32);
181 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(a, b);
182 ARM_COMPUTE_RETURN_ERROR_ON_MSG((a)->dimension(0) != (b)->dimension(1),
183 "The product AB is defined only if the number of columns in A is equal to the number of rows in B");
184 ARM_COMPUTE_RETURN_ERROR_ON_MSG((a)->dimension(1) != (output)->dimension(1),
185 "The output matrix must have the same number of rows as the matrix A");
186 ARM_COMPUTE_RETURN_ERROR_ON_MSG((b)->dimension(0) != (output)->dimension(0),
187 "The output matrix must have the same number of columns as the matrix B");
Chunosov5124be52017-11-22 20:42:13 +0700188 ARM_COMPUTE_UNUSED(gemm_info);
189 ARM_COMPUTE_RETURN_ERROR_ON_MSG(gemm_info.is_a_reshaped(), "Matrix A already reshaped is not supported");
190 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 +0000191
Gian Marcoc7f9b892017-11-30 14:31:13 +0000192 int32_t a_offset = a->quantization_info().offset;
193 int32_t b_offset = b->quantization_info().offset;
194 bool run_vector_matrix_multiplication = a->dimension(1) < 2;
Georgios Pinitasa3b1b462017-11-16 19:24:39 +0000195
Pablo Telloeb82fd22018-02-23 13:43:50 +0000196 if(!run_vector_matrix_multiplication)
Georgios Pinitasa3b1b462017-11-16 19:24:39 +0000197 {
Pablo Telloeb82fd22018-02-23 13:43:50 +0000198 // The interleaved output matrix will have the following shape: [ a_height * 4, ceil(a_width / 4.0f) ]
199 TensorShape shape_tmp_a = a->tensor_shape();
200 shape_tmp_a.set(0, a->dimension(0) * 4);
201 shape_tmp_a.set(1, std::ceil(a->dimension(1) / 4.f));
202
203 // The transpose1xW output matrix will have the following shape: [ b_height * 16, ceil(b_width / 16.0f) ]
204 TensorShape shape_tmp_b = b->tensor_shape();
205 shape_tmp_b.set(0, b->dimension(1) * 16);
206 shape_tmp_b.set(1, std::ceil(b->dimension(0) / 16.f));
207
208 TensorInfo info_a(shape_tmp_a, 1, a->data_type());
209 TensorInfo info_b(shape_tmp_b, 1, b->data_type());
210
211 ARM_COMPUTE_RETURN_ON_ERROR(NEGEMMInterleave4x4Kernel::validate(a, &info_a));
212 ARM_COMPUTE_RETURN_ON_ERROR(NEGEMMTranspose1xWKernel::validate(b, &info_b));
213 ARM_COMPUTE_RETURN_ON_ERROR(NEGEMMLowpMatrixMultiplyKernel::validate(&info_a, &info_b, output));
Georgios Pinitasa3b1b462017-11-16 19:24:39 +0000214 }
215 else
Georgios Pinitasa3b1b462017-11-16 19:24:39 +0000216 {
Pablo Telloeb82fd22018-02-23 13:43:50 +0000217 ARM_COMPUTE_RETURN_ON_ERROR(NEGEMMLowpMatrixMultiplyKernel::validate(a, b, output));
Georgios Pinitasa3b1b462017-11-16 19:24:39 +0000218 }
219
220 TensorInfo info_vector_sum_col, info_vector_sum_row;
221
222 // Validate matrix B reduction kernel only if _a_offset is not equal to 0
223 if(a_offset != 0)
224 {
Isabella Gottardie6630e42018-01-18 15:50:39 +0000225 info_vector_sum_col = TensorInfo(compute_reductionA_shape(*b), 1, DataType::S32);
Georgios Pinitasa3b1b462017-11-16 19:24:39 +0000226
227 // Configure Matrix B reduction kernel
228 ARM_COMPUTE_RETURN_ON_ERROR(NEGEMMLowpMatrixBReductionKernel::validate(b, &info_vector_sum_col, a->dimension(0), false));
229 }
230
231 // Validate Matrix A reduction kernel only if _b_offset is not equal to 0
232 if(b_offset != 0)
233 {
Isabella Gottardie6630e42018-01-18 15:50:39 +0000234 info_vector_sum_row = TensorInfo(compute_reductionB_shape(*a), 1, DataType::S32);
Georgios Pinitasa3b1b462017-11-16 19:24:39 +0000235
236 // Configure matrix A reduction kernel
237 ARM_COMPUTE_RETURN_ON_ERROR(NEGEMMLowpMatrixAReductionKernel::validate(a, &info_vector_sum_row, a->dimension(0), false));
238 }
239
240 // Validate offset contribution kernel
241 ARM_COMPUTE_RETURN_ON_ERROR(NEGEMMLowpOffsetContributionKernel::validate(output,
242 a_offset == 0 ? nullptr : &info_vector_sum_col,
243 b_offset == 0 ? nullptr : &info_vector_sum_row,
244 a_offset, b_offset));
245
Georgios Pinitas631c41a2017-12-06 11:53:03 +0000246 return Status{};
Georgios Pinitasa3b1b462017-11-16 19:24:39 +0000247}
248
Gian Marco Iodiceab182122017-10-09 15:05:40 +0100249void NEGEMMLowpMatrixMultiplyCore::run()
250{
251 _memory_group.acquire();
252
Gian Marcoc7f9b892017-11-30 14:31:13 +0000253 // Do not reshape if we run the vector-by-matrix case and we do not have the optimized gemm with dot product instruction
254 if(!_run_vector_matrix_multiplication && !_dot_product_path)
Pablo Tello6ff12a02017-11-02 16:09:35 +0000255 {
Gian Marcoc7f9b892017-11-30 14:31:13 +0000256 if(_mtx_a_reshape_kernel)
257 {
258 NEScheduler::get().schedule(_mtx_a_reshape_kernel.get(), Window::DimY);
259 }
Gian Marco Iodiceab182122017-10-09 15:05:40 +0100260
Giorgio Arenabb54e4e2018-04-05 17:20:34 +0100261 if(_mtx_b_reshape_kernel && (_is_first_run || !_reshape_b_only_on_first_run))
Gian Marcoc7f9b892017-11-30 14:31:13 +0000262 {
263 NEScheduler::get().schedule(_mtx_b_reshape_kernel.get(), Window::DimY);
264 }
Pablo Tello6ff12a02017-11-02 16:09:35 +0000265 }
Gian Marco Iodiceab182122017-10-09 15:05:40 +0100266
Pablo Telloeb82fd22018-02-23 13:43:50 +0000267 if(_asm_glue_unsigned._optimised_kernel != nullptr)
268 {
269 _asm_glue_unsigned.run();
270 }
271 else if(_asm_glue_signed._optimised_kernel != nullptr)
272 {
273 _asm_glue_signed.run();
274 }
275 else
276 {
277 NEScheduler::get().schedule(_mm_kernel.get(), Window::DimY);
278 }
Gian Marco Iodiceab182122017-10-09 15:05:40 +0100279
Gian Marcoe75a02b2017-11-08 12:24:09 +0000280 // Run matrix A reduction kernel only if _b_offset is not equal to 0
281 if(_b_offset != 0)
282 {
283 NEScheduler::get().schedule(&_mtx_a_reduction_kernel, Window::DimX);
284 }
285
286 // Run matrix B reduction kernel only if _a_offset is not equal to 0
Giorgio Arenabb54e4e2018-04-05 17:20:34 +0100287 if(_a_offset != 0 && (_is_first_run || !_reshape_b_only_on_first_run))
Gian Marcoe75a02b2017-11-08 12:24:09 +0000288 {
289 NEScheduler::get().schedule(&_mtx_b_reduction_kernel, Window::DimX);
290 }
291
292 // Run offset contribution kernel
293 NEScheduler::get().schedule(&_offset_contribution_kernel, Window::DimY);
294
Gian Marco Iodiceab182122017-10-09 15:05:40 +0100295 _memory_group.release();
Giorgio Arenabb54e4e2018-04-05 17:20:34 +0100296
297 _is_first_run = false;
Pablo Tello6ff12a02017-11-02 16:09:35 +0000298}