blob: 9c856314060d680b01c01415ade26e5e05bc462f [file] [log] [blame]
Anthony Barbier71d9b572018-07-06 17:05:59 +01001/*
Jonathan Deakin464ed202023-01-12 11:41:14 +00002 * Copyright (c) 2018-2023 Arm Limited.
Anthony Barbier71d9b572018-07-06 17:05:59 +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 */
Georgios Pinitas7891a732021-08-20 21:39:25 +010024#include "src/cpu/operators/internal/CpuGemmAssemblyDispatch.h"
Anthony Barbier71d9b572018-07-06 17:05:59 +010025
Sang-Hoon Park68dd25f2020-10-19 16:00:11 +010026#include "arm_compute/runtime/NEON/NEScheduler.h"
27#include "src/core/CPP/Validate.h"
Pablo Marquez Tello93581a52022-07-21 13:55:27 +010028#include "src/core/NEON/kernels/arm_gemm/utils.hpp"
Michele Di Giorgiod7316eb2021-06-16 11:14:41 +010029#include "src/core/helpers/MemoryHelpers.h"
Michele Di Giorgiod02d5ed2021-01-22 09:47:04 +000030#include "src/core/utils/AssemblyUtils.h"
Georgios Pinitas7891a732021-08-20 21:39:25 +010031#include "src/cpu/kernels/assembly/CpuGemmAssemblyWrapperKernel.h"
32#include "src/cpu/kernels/assembly/arm_gemm.hpp"
33#include "src/cpu/utils/CpuAuxTensorHandler.h"
Michele Di Giorgio6ad60af2020-06-09 14:52:15 +010034
Anthony Barbiereaefd002018-07-20 17:49:35 +010035#include <arm_neon.h>
36
Anthony Barbierc8e84b52018-07-17 16:48:42 +010037namespace arm_compute
38{
Sang-Hoon Park4f7693d2021-05-12 13:59:10 +010039namespace cpu
40{
SiCong Lidba672c2023-04-06 16:30:18 +010041namespace
42{
43/** Run pretranspose_B_array in parallel (1D static scheduling)
44 *
45 * @tparam TypeInput
46 * @tparam TypeOutput
47 *
48 * @param[in] gemm_asm GemmCommon kernel to run
49 * @param[in] dst Pretransposed B array
50 * @param[in] src B array to be pretransposed
51 * @param[in] src_ld Stride in y
52 * @param[in] src_multi_stride Stride in z ("multi")
53 * @param[in] num_threads Number of threads to run this method. Must be >= 1
54 */
55template <typename TypeInput, typename TypeOutput>
56void run_parallel_pretranspose_B_array(arm_gemm::GemmCommon<TypeInput, TypeOutput> *gemm_asm, ITensor *dst, const TypeInput *src, int src_ld, int src_multi_stride, unsigned int num_threads)
57{
58 ARM_COMPUTE_ERROR_ON(gemm_asm == nullptr);
59 ARM_COMPUTE_ERROR_ON(num_threads == 0);
60 // The window size is also the total workload size
61 const unsigned int wsize = gemm_asm->get_B_pretranspose_window_size();
62
63 std::vector<IScheduler::Workload> workloads(num_threads);
64 for(unsigned int t = 0; t < num_threads; ++t)
65 {
66 workloads[t] = [ = ](const ThreadInfo & info)
67 {
68 const unsigned int start = (info.thread_id * wsize) / num_threads;
69 const unsigned int end = ((info.thread_id + 1) * wsize) / num_threads;
70
71 if(start < end)
72 {
73 gemm_asm->pretranspose_B_array_part(dst->buffer(), src, src_ld, src_multi_stride, start, end);
74 }
75 };
76 }
77 NEScheduler::get().run_tagged_workloads(workloads, "CpuGemmAssemblyDispatch/pretranspose_B_array");
78}
79} // namespace
80
Michele Di Giorgiod7316eb2021-06-16 11:14:41 +010081using namespace arm_compute::experimental;
82
Anthony Barbiereaefd002018-07-20 17:49:35 +010083namespace
Anthony Barbier71d9b572018-07-06 17:05:59 +010084{
Georgios Pinitasc0b6f762020-11-02 01:37:17 +000085struct free_delete
86{
87 void operator()(void *x)
88 {
89 free(x);
90 }
91};
92
93struct Params
94{
95 unsigned int M;
96 unsigned int N;
97 unsigned int K;
98 unsigned int batches;
99 unsigned int multis;
100 unsigned int sections;
101 bool indirect;
102};
103
Sang-Hoon Parkd89e2fa2021-05-17 17:04:50 +0100104Params extract_parameters(const ITensorInfo *a, const ITensorInfo *b, const ITensorInfo *d, const AsmGemmInfo &info)
Georgios Pinitasc0b6f762020-11-02 01:37:17 +0000105{
106 ARM_COMPUTE_ERROR_ON_NULLPTR(a, b, d);
Georgios Pinitasc0b6f762020-11-02 01:37:17 +0000107 Params p;
Sang-Hoon Parkd89e2fa2021-05-17 17:04:50 +0100108 p.M = d->tensor_shape().y();
109 p.K = a->tensor_shape().x();
110 p.N = d->tensor_shape().x();
Georgios Pinitas4c634e02020-12-01 02:17:19 +0000111 p.batches = 1;
Georgios Pinitasc0b6f762020-11-02 01:37:17 +0000112 p.multis = 1;
Georgios Pinitasc0b6f762020-11-02 01:37:17 +0000113 p.sections = 1;
Georgios Pinitas4c634e02020-12-01 02:17:19 +0000114 p.indirect = false;
Georgios Pinitasc0b6f762020-11-02 01:37:17 +0000115
116 if(info.method == AsmConvMethod::Conv || info.method == AsmConvMethod::Indirect)
117 {
118 p.indirect = true;
Sang-Hoon Parkd89e2fa2021-05-17 17:04:50 +0100119 p.sections = b->tensor_shape()[2] * b->tensor_shape()[3];
Georgios Pinitasc0b6f762020-11-02 01:37:17 +0000120 }
121 else
122 {
Sang-Hoon Parkd89e2fa2021-05-17 17:04:50 +0100123 p.multis = b->tensor_shape().z();
124 p.batches = d->tensor_shape().total_size_upper(2) / p.multis;
Georgios Pinitasc0b6f762020-11-02 01:37:17 +0000125 }
126
127 // Update M in case of GEMM3D for output
128 if(info.depth_output_gemm3d != 0)
129 {
Sang-Hoon Parkd89e2fa2021-05-17 17:04:50 +0100130 p.M = d->tensor_shape().y() * d->tensor_shape().z();
131 p.batches = d->tensor_shape().total_size_upper(3) / p.multis;
Georgios Pinitasc0b6f762020-11-02 01:37:17 +0000132 }
133
134 return p;
135}
136
Georgios Pinitasc0b6f762020-11-02 01:37:17 +0000137IScheduler::Hints scheduling_hint_heuristic(arm_gemm::GemmMethod method, DataType data_type)
138{
139 // Schedule assembly kernel
140 const int granule_threshold = 200;
141 IScheduler::Hints scheduling_hint = IScheduler::Hints(Window::DimX);
142 if(method == arm_gemm::GemmMethod::GEMM_INTERLEAVED && data_type == DataType::F32)
143 {
144 scheduling_hint = IScheduler::Hints(Window::DimX, IScheduler::StrategyHint::DYNAMIC, granule_threshold);
145 }
146 else if(method == arm_gemm::GemmMethod::GEMM_INTERLEAVED_2D && (data_type == DataType::F32 || data_type == DataType::F16 || data_type == DataType::U8 || data_type == DataType::S8))
147 {
148 //GEMM_INTERLEAVED supports 2D parallelism, IScheduler::split_dimensions_all signals to parallelise over all window dimensions
149 scheduling_hint = IScheduler::Hints(IScheduler::split_dimensions_all, IScheduler::StrategyHint::STATIC, granule_threshold);
150 }
151 else if(method == arm_gemm::GemmMethod::QUANTIZE_WRAPPER_2D && (data_type == DataType::QASYMM8 || data_type == DataType::QASYMM8_SIGNED))
152 {
153 //special case for QASYMM8 to support 2D parallelism, scheduler here may be tweaked differently compared to FP32 case
154 scheduling_hint = IScheduler::Hints(IScheduler::split_dimensions_all, IScheduler::StrategyHint::STATIC, granule_threshold);
155 }
156
157 return scheduling_hint;
158}
159
Anthony Barbiereaefd002018-07-20 17:49:35 +0100160/** Fallback in case ACL doesn't have a function */
Georgios Pinitascfa2bba2019-06-27 17:00:52 +0100161template <typename TypeInput, typename TypeOutput, class OutputStage = arm_gemm::Nothing>
Sang-Hoon Park4f7693d2021-05-12 13:59:10 +0100162class Fallback : public CpuGemmAssemblyDispatch::IFallback
Anthony Barbierc8e84b52018-07-17 16:48:42 +0100163{
Anthony Barbiereaefd002018-07-20 17:49:35 +0100164public:
Michalis Spyrou1a569a32019-09-10 17:20:34 +0100165 /** Destructor */
Michele Di Giorgiod7316eb2021-06-16 11:14:41 +0100166 ~Fallback() = default;
Michalis Spyrou1a569a32019-09-10 17:20:34 +0100167
Georgios Pinitas3dbfd232019-01-30 17:17:16 +0000168 /** Initialise the functions's input and output.
169 *
Michele Di Giorgiod7316eb2021-06-16 11:14:41 +0100170 * @param[in] a Input tensor containing the Matrix A.
171 * @param[in] b Input tensor containing the Matrix B.
172 * @param[in] c Input tensor containing the Matrix C.
173 * @param[out] d Output tensor to store the result of matrix multiplication.
174 * @param[in] args Matrix multiplication information.
175 * @param[in] gemm_info GEMM meta-data
176 * @param[in] os Output stage meta-data.
Georgios Pinitas3dbfd232019-01-30 17:17:16 +0000177 */
Sang-Hoon Parkd89e2fa2021-05-17 17:04:50 +0100178 void configure(const ITensorInfo *a, const ITensorInfo *b, const ITensorInfo *c, ITensorInfo *d,
Georgios Pinitasc0b6f762020-11-02 01:37:17 +0000179 arm_gemm::GemmArgs args, const AsmGemmInfo &gemm_info,
Michele Di Giorgiod7316eb2021-06-16 11:14:41 +0100180 const OutputStage &os = {});
Georgios Pinitas3dbfd232019-01-30 17:17:16 +0000181
Michalis Spyrou71ac9032019-11-14 14:31:44 +0000182 /** Set requantization shifts to be used
183 *
184 * @param[in] shifts Requantization shifts
185 *
186 * @return Pointer to the shift data
187 */
188 /** Set requantization data to be used
189 *
190 *
191 * @param shifts Requantization shifts
192 * @param multipliers Requantization multipliers
193 *
194 * @return A tuple with the pointers to the shift and multiplier data respectively
195 */
morgolock0bc80da2020-08-10 16:44:18 +0100196 std::tuple<bool, const int32_t *, const int32_t *, const int32_t *> set_requantize_data(const std::vector<int32_t> &shifts,
197 const std::vector<int32_t> &multipliers);
Michalis Spyrou71ac9032019-11-14 14:31:44 +0000198
Georgios Pinitas3dbfd232019-01-30 17:17:16 +0000199 // Inherited methods overridden:
Mohammed Suhail Munshi4b5f6ef2022-10-21 11:15:54 +0100200 void run(ITensorPack &tensors) override;
201 void prepare(ITensorPack &tensors) override;
Michele Di Giorgiod7316eb2021-06-16 11:14:41 +0100202 bool is_configured() const override;
203 experimental::MemoryRequirements workspace() const override;
Francesco Petrogalli553f6952022-06-30 10:22:01 +0000204 bool isVarWeightsKernel() const override
205 {
206 if(!_gemm_kernel_asm)
207 return false;
Ramy Elgammal91780022022-07-20 14:57:37 +0100208 const arm_compute::WeightFormat wf = assembly_utils::map_to_arm_compute_weight_format(_gemm_kernel_asm->get_config().weight_format);
209 return wf != arm_compute::WeightFormat::UNSPECIFIED && wf != arm_compute::WeightFormat::ANY;
Francesco Petrogalli553f6952022-06-30 10:22:01 +0000210 }
Anthony Barbierc8e84b52018-07-17 16:48:42 +0100211
Anthony Barbiereaefd002018-07-20 17:49:35 +0100212private:
Michele Di Giorgiod7316eb2021-06-16 11:14:41 +0100213 enum AuxTensorIdx
214 {
215 AsmGemmWorkspace = 0,
216 Pretranspose,
217 Count
218 };
219
Georgios Pinitasc0b6f762020-11-02 01:37:17 +0000220 /** Configure the indirect buffer
221 *
222 * @param[in] a Input tensor containing the Matrix A.
223 * @param[in] b Input tensor containing the Matrix B.
224 * @param[out] d Output tensor to store the result of matrix multiplication.
225 * @param[in] info GEMM meta-data
226 */
227 void configure_indirect(const ITensorInfo *a, const ITensorInfo *b, const ITensorInfo *d, const AsmGemmInfo &info);
228 /** Prepare the indirect buffer */
Sang-Hoon Parkd89e2fa2021-05-17 17:04:50 +0100229 void prepare_indirect_buffer(ITensorPack &tensors);
Anthony Barbierc8e84b52018-07-17 16:48:42 +0100230
Anthony Barbiereaefd002018-07-20 17:49:35 +0100231 /** Assembly Gemm kernel */
Michalis Spyrou1a569a32019-09-10 17:20:34 +0100232 std::shared_ptr<arm_gemm::GemmCommon<TypeInput, TypeOutput>> _gemm_kernel_asm{ nullptr };
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +0000233 /** Optimised Arm® Neon™ kernel */
Anthony Barbiereaefd002018-07-20 17:49:35 +0100234 std::unique_ptr<INEKernel> _optimised_kernel{ nullptr };
Michele Di Giorgiod7316eb2021-06-16 11:14:41 +0100235 /** Assembly GEMM workspace tensor info */
236 TensorInfo _workspace_info{};
237 /** Pre-transpose tensor info */
238 TensorInfo _pretranspose_info{};
Anthony Barbiereaefd002018-07-20 17:49:35 +0100239 /** Prepared flag */
240 bool _is_prepared{ false };
Georgios Pinitas37d080f2019-06-21 18:43:12 +0100241 /** GEMM meta-data */
Georgios Pinitasc0b6f762020-11-02 01:37:17 +0000242 AsmGemmInfo _gemm_info{};
Georgios Pinitas77d42522019-11-05 13:35:47 +0000243 /** GEMM kernel description */
244 arm_gemm::KernelDescription _kernel_info{};
Michalis Spyrou71ac9032019-11-14 14:31:44 +0000245 /** Per channel quantization shifts */
246 std::vector<int32_t> _shifts{};
morgolock0bc80da2020-08-10 16:44:18 +0100247 std::vector<int32_t> right_shifts{};
248 std::vector<int32_t> left_shifts{};
Michalis Spyrou71ac9032019-11-14 14:31:44 +0000249 /** Per channel quantization multipliers */
250 std::vector<int32_t> _multipliers{};
Georgios Pinitasc0b6f762020-11-02 01:37:17 +0000251 /** Indirect buffer */
252 std::unique_ptr<const TypeInput *const *, free_delete> _indirect_arg{};
253 std::unique_ptr<const TypeInput *, free_delete> _indirect_buf{};
Mohammed Suhail Munshi4b5f6ef2022-10-21 11:15:54 +0100254 std::vector<TypeInput> _indirect_pad{};
255 arm_gemm::ConvolutionParameters _cp{};
256 experimental::MemoryRequirements _aux_mem{ Count };
257 bool _B_pretranspose_required{ false };
258 bool _is_b_constant{ true };
259 bool _is_c_constant{ true };
Anthony Barbiereaefd002018-07-20 17:49:35 +0100260};
Anthony Barbier71d9b572018-07-06 17:05:59 +0100261
Georgios Pinitascfa2bba2019-06-27 17:00:52 +0100262template <typename TypeInput, typename TypeOutput, class OutputStage>
Georgios Pinitasc0b6f762020-11-02 01:37:17 +0000263std::tuple<bool, const int32_t *, const int32_t *, const int32_t *>
264Fallback<TypeInput, TypeOutput, OutputStage>::set_requantize_data(const std::vector<int32_t> &shifts, const std::vector<int32_t> &multipliers)
Michalis Spyrou71ac9032019-11-14 14:31:44 +0000265{
morgolock0bc80da2020-08-10 16:44:18 +0100266 _multipliers = multipliers;
267 _shifts = shifts;
268 bool need_left = false;
269 for(const auto s : _shifts)
270 {
271 left_shifts.push_back(std::max(-s, int32_t(0)));
272 right_shifts.push_back(std::min(-s, int32_t(0)));
morgolockfa269bb2020-09-08 16:00:56 +0100273 if(s < 0 && !need_left)
morgolock0bc80da2020-08-10 16:44:18 +0100274 {
275 need_left = true;
276 }
277 }
278 return std::make_tuple(need_left, left_shifts.data(), right_shifts.data(), _multipliers.data());
Michalis Spyrou71ac9032019-11-14 14:31:44 +0000279}
280
281template <typename TypeInput, typename TypeOutput, class OutputStage>
Sang-Hoon Parkd89e2fa2021-05-17 17:04:50 +0100282void Fallback<TypeInput, TypeOutput, OutputStage>::prepare_indirect_buffer(ITensorPack &tensors)
Georgios Pinitasc0b6f762020-11-02 01:37:17 +0000283{
Sang-Hoon Parkd89e2fa2021-05-17 17:04:50 +0100284 auto a = tensors.get_const_tensor(TensorType::ACL_SRC_0);
285 const TypeInput *A_ptr = reinterpret_cast<TypeInput *>(a->buffer());
Georgios Pinitasc0b6f762020-11-02 01:37:17 +0000286 const int multis = 1;
Sang-Hoon Parkd89e2fa2021-05-17 17:04:50 +0100287 const int batches = a->info()->tensor_shape().total_size_upper(3);
288 const size_t stride_A = a->info()->strides_in_bytes().y() / sizeof(TypeInput);
289 const size_t batch_stride_A = a->info()->strides_in_bytes()[3] / sizeof(TypeInput);
290 const size_t multi_stride_A = a->info()->strides_in_bytes()[4] / sizeof(TypeInput);
Georgios Pinitasc0b6f762020-11-02 01:37:17 +0000291
292 const size_t output_hw = _cp.output_height * _cp.output_width;
293 const int batch_size = _cp.kernel_height * _cp.kernel_width * output_hw * sizeof(TypeInput);
294 const size_t batch_stride = batch_size / sizeof(TypeInput);
295 const int multi_size = batch_size * batches;
296 const size_t multi_stride = multi_size / sizeof(TypeInput);
297
298 for(int64_t m = 0; m < multis; m++)
299 {
300 for(int64_t b = 0; b < batches; b++)
301 {
302 for(int64_t output_y = 0; output_y < _cp.output_height; output_y++)
303 {
304 for(int64_t output_x = 0; output_x < _cp.output_width; output_x++)
305 {
306 int64_t output_xy = (output_y * _cp.output_width) + output_x;
307
308 for(int64_t kernel_y = 0; kernel_y < _cp.kernel_height; kernel_y++)
309 {
310 for(int64_t kernel_x = 0; kernel_x < _cp.kernel_width; kernel_x++)
311 {
312 int64_t input_x = (output_x * _cp.output_stride_w) + kernel_x - _cp.padding_left;
313 int64_t input_y = (output_y * _cp.output_stride_h) + kernel_y - _cp.padding_top;
314 int64_t kernel_xy = (kernel_y * _cp.kernel_width) + kernel_x;
315 int64_t input_xy = (input_y * _cp.input_width) + input_x;
316
317 if(input_x < 0 || input_x >= _cp.input_width || input_y < 0 || input_y >= _cp.input_height)
318 {
319 _indirect_buf.get()[m * multi_stride + b * batch_stride + kernel_xy * output_hw + output_xy] = _indirect_pad.data();
320 }
321 else
322 {
323 _indirect_buf.get()[m * multi_stride + b * batch_stride + kernel_xy * output_hw + output_xy] =
324 A_ptr + (m * multi_stride_A + b * batch_stride_A + input_xy * stride_A);
325 }
326 }
327 }
328 }
329 }
330 }
331 }
332}
333
334template <typename TypeInput, typename TypeOutput, class OutputStage>
335void Fallback<TypeInput, TypeOutput, OutputStage>::configure_indirect(const ITensorInfo *a, const ITensorInfo *b, const ITensorInfo *d, const AsmGemmInfo &info)
336{
337 ARM_COMPUTE_ERROR_ON(!(info.method == AsmConvMethod::Conv || info.method == AsmConvMethod::Indirect));
338
339 float zeropad = 0.f;
340 if(is_data_type_quantized(a->data_type()))
341 {
342 zeropad = a->quantization_info().uniform().offset;
343 }
344
345 const int64_t input_width = static_cast<int64_t>(a->tensor_shape()[1]);
346 const int64_t input_height = static_cast<int64_t>(a->tensor_shape()[2]);
347 const int64_t input_channels = static_cast<int64_t>(a->tensor_shape()[0]);
348 const int64_t kernel_width = static_cast<int64_t>(b->tensor_shape()[2]);
349 const int64_t kernel_height = static_cast<int64_t>(b->tensor_shape()[3]);
350 const int64_t output_width = static_cast<int64_t>(d->tensor_shape()[1]);
351 const int64_t output_height = static_cast<int64_t>(d->tensor_shape()[2]);
352
353 _cp = { input_width, input_height, input_channels, kernel_width, kernel_height, output_width, output_height,
354 info.ps_info.stride().first, info.ps_info.stride().second, info.padding_top, info.padding_left, zeropad
355 };
356
357 if(info.method == AsmConvMethod::Conv)
358 {
359 _gemm_kernel_asm->set_convolution_parameters(_cp);
360 }
361
362 if(info.method == AsmConvMethod::Indirect)
363 {
364 const unsigned int multis = 1;
365 const unsigned int batches = a->tensor_shape().total_size_upper(3);
366 const unsigned int kernel_hw = _cp.kernel_width * _cp.kernel_height;
367 const unsigned int output_hw = _cp.output_width * _cp.output_height;
368
369 using TypeInputPtr = TypeInput *;
370 const int batch_size = kernel_hw * output_hw * sizeof(TypeInputPtr);
371 const size_t batch_stride = batch_size / sizeof(TypeInputPtr);
372 const int multi_size = batch_size * batches;
373 const size_t multi_stride = multi_size / sizeof(TypeInputPtr);
374
375 _indirect_buf = std::unique_ptr<const TypeInput *, free_delete>(reinterpret_cast<const TypeInput **>(malloc(multi_size * multis)));
376 _indirect_arg = std::unique_ptr<const TypeInput *const *, free_delete>(reinterpret_cast<const TypeInput *const **>(malloc(sizeof(TypeInput **) * kernel_hw * multis * batches)));
Sang-Hoon Park8d5337e2021-01-15 14:36:25 +0000377 _indirect_pad = std::vector<TypeInput>(_cp.input_channels, TypeInput(zeropad));
Georgios Pinitasc0b6f762020-11-02 01:37:17 +0000378
379 // Set indirect argument
380 int64_t pos = 0;
381 for(int64_t m = 0; m < multis; m++)
382 {
383 for(int64_t b = 0; b < batches; b++)
384 {
385 for(int64_t kernel_xy = 0; kernel_xy < kernel_hw; kernel_xy++)
386 {
387 (_indirect_arg.get())[pos++] = _indirect_buf.get() + m * multi_stride + b * batch_stride + kernel_xy * output_hw;
388 }
389 }
390 }
391
392 _gemm_kernel_asm->set_indirect_parameters(a->tensor_shape()[0], _indirect_arg.get());
393 }
394}
395
396template <typename TypeInput, typename TypeOutput, class OutputStage>
Sang-Hoon Parkd89e2fa2021-05-17 17:04:50 +0100397void Fallback<TypeInput, TypeOutput, OutputStage>::configure(const ITensorInfo *a, const ITensorInfo *b, const ITensorInfo *c, ITensorInfo *d,
Georgios Pinitasc0b6f762020-11-02 01:37:17 +0000398 arm_gemm::GemmArgs args, const AsmGemmInfo &gemm_info,
Michele Di Giorgiod7316eb2021-06-16 11:14:41 +0100399 const OutputStage &os)
Anthony Barbier71d9b572018-07-06 17:05:59 +0100400{
Sang-Hoon Parkd89e2fa2021-05-17 17:04:50 +0100401 ARM_COMPUTE_UNUSED(c);
Giorgio Arena63e0beb2021-09-24 14:04:27 +0100402
403 _is_b_constant = b->are_values_constant();
404 _is_c_constant = c ? c->are_values_constant() : true;
405
Georgios Pinitascfa2bba2019-06-27 17:00:52 +0100406 _gemm_kernel_asm = arm_gemm::gemm<TypeInput, TypeOutput, OutputStage>(args, os);
Anthony Barbier71d9b572018-07-06 17:05:59 +0100407 if(_gemm_kernel_asm == nullptr)
408 {
409 //configuration not supported: Leave function unconfigured:
410 return;
411 }
412
Francesco.Petrogalli@arm.com193cad32022-03-07 13:39:21 +0000413 arm_gemm::GemmConfig gemm_cfg = _gemm_kernel_asm->get_config();
414
Anthony Barbier71d9b572018-07-06 17:05:59 +0100415 // arm_compute wrapper for the Gemm object (see above)
Sang-Hoon Park4f7693d2021-05-12 13:59:10 +0100416 auto acl_gemm_wrapper = std::make_unique<kernel::CpuGemmAssemblyWrapperKernel<TypeInput, TypeOutput>>();
Anthony Barbier71d9b572018-07-06 17:05:59 +0100417 ARM_COMPUTE_ERROR_ON(acl_gemm_wrapper == nullptr);
Georgios Pinitas3dbfd232019-01-30 17:17:16 +0000418 acl_gemm_wrapper->configure(_gemm_kernel_asm.get(), gemm_cfg.filter);
Michele Di Giorgiod7316eb2021-06-16 11:14:41 +0100419 const size_t workspace_size = _gemm_kernel_asm->get_working_size();
420 const unsigned int alignment = 4096;
421 _workspace_info = TensorInfo(TensorShape(workspace_size), 1, DataType::U8);
422 _aux_mem[AsmGemmWorkspace] = MemoryInfo(offset_int_vec(AsmGemmWorkspace), MemoryLifetime::Temporary, workspace_size, alignment);
Anthony Barbier71d9b572018-07-06 17:05:59 +0100423
424 //if we disable this code below in brackets then ConvLayer deadlocks when threads > 1 and
425 //the shapes are In=1x1x1024 Weights=1x1x1024x1001 Biases=1001 Out=1x1x1001
426 {
Georgios Pinitas5aa1a0b2020-07-02 20:02:20 +0100427 const unsigned int window_size = _gemm_kernel_asm->get_window_size().total_size();
Joseph Dobson6f8b17d2020-02-11 19:32:11 +0000428 if(window_size < static_cast<unsigned int>(args._maxthreads))
Anthony Barbier71d9b572018-07-06 17:05:59 +0100429 {
Anthony Barbierc8e84b52018-07-17 16:48:42 +0100430 _gemm_kernel_asm->set_nthreads(window_size);
Anthony Barbier71d9b572018-07-06 17:05:59 +0100431 }
432 }
433
434 _optimised_kernel = std::move(acl_gemm_wrapper);
Georgios Pinitas37d080f2019-06-21 18:43:12 +0100435 _gemm_info = gemm_info;
Anthony Barbier71d9b572018-07-06 17:05:59 +0100436 // Check for pre-transposed support
437 if(_gemm_kernel_asm->B_pretranspose_required())
438 {
439 // Forcing 128-byte alignment (required by 32-bit kernels)
440 const unsigned int alignment = 128;
441 const size_t B_pretranspose_size = _gemm_kernel_asm->get_B_pretransposed_array_size();
Michele Di Giorgiod7316eb2021-06-16 11:14:41 +0100442 _pretranspose_info = TensorInfo(TensorShape(B_pretranspose_size), 1, DataType::U8);
443 _aux_mem[Pretranspose] = MemoryInfo(offset_int_vec(Pretranspose), MemoryLifetime::Persistent, B_pretranspose_size, alignment);
Giorgio Arena63e0beb2021-09-24 14:04:27 +0100444 _B_pretranspose_required = true;
Anthony Barbier71d9b572018-07-06 17:05:59 +0100445 }
Georgios Pinitasc0b6f762020-11-02 01:37:17 +0000446
447 // Handle indirect GEMM convolution
448 if(gemm_info.method == AsmConvMethod::Conv || gemm_info.method == AsmConvMethod::Indirect)
449 {
Sang-Hoon Parkd89e2fa2021-05-17 17:04:50 +0100450 configure_indirect(a, b, d, gemm_info);
Georgios Pinitasc0b6f762020-11-02 01:37:17 +0000451 }
Anthony Barbier71d9b572018-07-06 17:05:59 +0100452}
453
Georgios Pinitascfa2bba2019-06-27 17:00:52 +0100454template <typename TypeInput, typename TypeOutput, class OutputStage>
Sang-Hoon Parkd89e2fa2021-05-17 17:04:50 +0100455void Fallback<TypeInput, TypeOutput, OutputStage>::prepare(ITensorPack &tensors)
Anthony Barbier71d9b572018-07-06 17:05:59 +0100456{
457 if(!_is_prepared)
458 {
Michele Di Giorgiod7316eb2021-06-16 11:14:41 +0100459 auto b = tensors.get_const_tensor(TensorType::ACL_SRC_1);
460 auto c = tensors.get_const_tensor(TensorType::ACL_SRC_2);
461
Georgios Pinitascfa2bba2019-06-27 17:00:52 +0100462 // Setup up matrix bias in the assembly kernel, it's just a pointer to matrix C.
Sang-Hoon Parkd89e2fa2021-05-17 17:04:50 +0100463 if(c && c->info()->data_type() == DataType::S32)
Georgios Pinitascfa2bba2019-06-27 17:00:52 +0100464 {
Sang-Hoon Parkd89e2fa2021-05-17 17:04:50 +0100465 _gemm_kernel_asm->set_quantized_bias(reinterpret_cast<const int32_t *>(c->buffer() + c->info()->offset_first_element_in_bytes()), 0);
Georgios Pinitascfa2bba2019-06-27 17:00:52 +0100466 }
467
Anthony Barbier71d9b572018-07-06 17:05:59 +0100468 // Pretranspose B if required
469 if(_gemm_kernel_asm->B_pretranspose_required())
470 {
Francesco Petrogalli553f6952022-06-30 10:22:01 +0000471 // Fixed format kernels need no pretranspose.
Ramy Elgammal91780022022-07-20 14:57:37 +0100472 ARM_COMPUTE_ERROR_ON(arm_compute::is_fixed_format(assembly_utils::map_to_arm_compute_weight_format(_gemm_kernel_asm->get_config().weight_format)));
Jonathan Deakin464ed202023-01-12 11:41:14 +0000473 const int ldb = b->info()->strides_in_bytes().y() / b->info()->element_size();
Sang-Hoon Parkd89e2fa2021-05-17 17:04:50 +0100474 const auto in1_ptr = reinterpret_cast<const TypeInput *>(b->buffer() + b->info()->offset_first_element_in_bytes());
Jonathan Deakin464ed202023-01-12 11:41:14 +0000475 const int multi_stride_b = b->info()->strides_in_bytes().z() / b->info()->element_size();
Anthony Barbier71d9b572018-07-06 17:05:59 +0100476
Michele Di Giorgiod7316eb2021-06-16 11:14:41 +0100477 CpuAuxTensorHandler pretranspose(offset_int_vec(Pretranspose), _pretranspose_info, tensors, false);
478 ARM_COMPUTE_ERROR_ON(pretranspose.get()->buffer() == nullptr);
SiCong Lidba672c2023-04-06 16:30:18 +0100479 run_parallel_pretranspose_B_array<TypeInput, TypeOutput>(_gemm_kernel_asm.get(), pretranspose.get(), in1_ptr, ldb, multi_stride_b, NEScheduler::get().num_threads());
Georgios Pinitasfa1db172021-08-12 06:28:09 +0100480
481 b->mark_as_unused();
Anthony Barbier71d9b572018-07-06 17:05:59 +0100482 }
483
Georgios Pinitasc0b6f762020-11-02 01:37:17 +0000484 if(_gemm_info.method == AsmConvMethod::Indirect)
485 {
Sang-Hoon Parkd89e2fa2021-05-17 17:04:50 +0100486 prepare_indirect_buffer(tensors);
Georgios Pinitasc0b6f762020-11-02 01:37:17 +0000487 }
488
Anthony Barbier71d9b572018-07-06 17:05:59 +0100489 _is_prepared = true;
490 }
491}
492
Georgios Pinitascfa2bba2019-06-27 17:00:52 +0100493template <typename TypeInput, typename TypeOutput, class OutputStage>
Georgios Pinitascfa2bba2019-06-27 17:00:52 +0100494bool Fallback<TypeInput, TypeOutput, OutputStage>::is_configured() const
Anthony Barbier71d9b572018-07-06 17:05:59 +0100495{
496 return _optimised_kernel != nullptr;
497}
498
Georgios Pinitascfa2bba2019-06-27 17:00:52 +0100499template <typename TypeInput, typename TypeOutput, class OutputStage>
Michele Di Giorgiod7316eb2021-06-16 11:14:41 +0100500experimental::MemoryRequirements Fallback<TypeInput, TypeOutput, OutputStage>::workspace() const
501{
502 return _aux_mem;
503}
504
505template <typename TypeInput, typename TypeOutput, class OutputStage>
Sang-Hoon Parkd89e2fa2021-05-17 17:04:50 +0100506void Fallback<TypeInput, TypeOutput, OutputStage>::run(ITensorPack &tensors)
Anthony Barbier71d9b572018-07-06 17:05:59 +0100507{
Sang-Hoon Parkd89e2fa2021-05-17 17:04:50 +0100508 auto a = tensors.get_const_tensor(TensorType::ACL_SRC_0);
509 auto b = tensors.get_const_tensor(TensorType::ACL_SRC_1);
510 auto c = tensors.get_const_tensor(TensorType::ACL_SRC_2);
511 auto d = tensors.get_tensor(TensorType::ACL_DST);
512
Jonathan Deakin464ed202023-01-12 11:41:14 +0000513 int lda = a->info()->strides_in_bytes().y() / a->info()->element_size();
Georgios Pinitas40ed6d82018-07-31 17:22:11 +0100514 int ldb = 0;
Jonathan Deakin464ed202023-01-12 11:41:14 +0000515 const int ldd = d->info()->strides_in_bytes().y() / d->info()->element_size();
Anthony Barbier71d9b572018-07-06 17:05:59 +0100516
Georgios Pinitasc0b6f762020-11-02 01:37:17 +0000517 const size_t a_batch_idx = _gemm_info.reinterpret_input_as_3d != 0 ? 3 : 2;
Georgios Pinitas37d080f2019-06-21 18:43:12 +0100518 const size_t a_multi_idx = a_batch_idx + 1;
Georgios Pinitasc0b6f762020-11-02 01:37:17 +0000519 const size_t d_batch_idx = _gemm_info.depth_output_gemm3d != 0 ? 3 : 2;
Georgios Pinitas37d080f2019-06-21 18:43:12 +0100520 const size_t d_multi_idx = d_batch_idx + 1;
Anthony Barbier71d9b572018-07-06 17:05:59 +0100521
Jonathan Deakin464ed202023-01-12 11:41:14 +0000522 int batch_stride_a = a->info()->strides_in_bytes()[a_batch_idx] / a->info()->element_size();
523 const int batch_stride_d = d->info()->strides_in_bytes()[d_batch_idx] / d->info()->element_size();
Anthony Barbier71d9b572018-07-06 17:05:59 +0100524
Jonathan Deakin464ed202023-01-12 11:41:14 +0000525 int multi_stride_a = a->info()->strides_in_bytes()[a_multi_idx] / a->info()->element_size();
Georgios Pinitas40ed6d82018-07-31 17:22:11 +0100526 int multi_stride_b = 0;
Jonathan Deakin464ed202023-01-12 11:41:14 +0000527 const int multi_stride_d = d->info()->strides_in_bytes()[d_multi_idx] / d->info()->element_size();
Anthony Barbier71d9b572018-07-06 17:05:59 +0100528
Sang-Hoon Parkd89e2fa2021-05-17 17:04:50 +0100529 auto in0_ptr = reinterpret_cast<const TypeInput *>(a->buffer() + a->info()->offset_first_element_in_bytes());
Georgios Pinitas40ed6d82018-07-31 17:22:11 +0100530 const TypeInput *in1_ptr = nullptr;
Sang-Hoon Parkd89e2fa2021-05-17 17:04:50 +0100531 auto out_ptr = reinterpret_cast<TypeOutput *>(d->buffer() + d->info()->offset_first_element_in_bytes());
Georgios Pinitas40ed6d82018-07-31 17:22:11 +0100532
533 // Check if B is pre-tranposed and de-reference if not
534 if(!_gemm_kernel_asm->B_is_pretransposed())
535 {
SiCong Lidba672c2023-04-06 16:30:18 +0100536 ldb = b->info()->strides_in_bytes().y() / b->info()->element_size();
537 multi_stride_b = b->info()->strides_in_bytes().z() / b->info()->element_size();
538 in1_ptr = reinterpret_cast<const TypeInput *>(b->buffer() + b->info()->offset_first_element_in_bytes());
Georgios Pinitas40ed6d82018-07-31 17:22:11 +0100539 }
Anthony Barbier71d9b572018-07-06 17:05:59 +0100540
Giorgio Arena63e0beb2021-09-24 14:04:27 +0100541 // If necessary, run pretranspose every time if either weights or biases are non-constant
542 if((b && !_is_b_constant) || (c && !_is_c_constant && c->info()->data_type() == DataType::S32))
543 {
544 if(c && c->info()->data_type() == DataType::S32)
545 {
546 _gemm_kernel_asm->set_quantized_bias(reinterpret_cast<const int32_t *>(c->buffer() + c->info()->offset_first_element_in_bytes()), 0);
547 }
548
549 // Pretranspose B if required
550 if(_B_pretranspose_required)
551 {
Jonathan Deakin464ed202023-01-12 11:41:14 +0000552 const int ldb = b->info()->strides_in_bytes().y() / b->info()->element_size();
Giorgio Arena63e0beb2021-09-24 14:04:27 +0100553 const auto b_ptr = reinterpret_cast<const TypeInput *>(b->buffer() + b->info()->offset_first_element_in_bytes());
Jonathan Deakin464ed202023-01-12 11:41:14 +0000554 const int multi_stride_b = b->info()->strides_in_bytes().z() / b->info()->element_size();
Giorgio Arena63e0beb2021-09-24 14:04:27 +0100555
556 CpuAuxTensorHandler pretranspose(offset_int_vec(Pretranspose), _pretranspose_info, tensors, true);
557 ARM_COMPUTE_ERROR_ON(pretranspose.get()->buffer() == nullptr);
558
559 if(_is_b_constant)
560 {
561 _gemm_kernel_asm->requantize_bias(pretranspose.get()->buffer(), b_ptr, ldb, multi_stride_b);
562 }
563 else
564 {
SiCong Lidba672c2023-04-06 16:30:18 +0100565 run_parallel_pretranspose_B_array<TypeInput, TypeOutput>(_gemm_kernel_asm.get(), pretranspose.get(), b_ptr, ldb, multi_stride_b, NEScheduler::get().num_threads());
Giorgio Arena63e0beb2021-09-24 14:04:27 +0100566 }
567 }
568 }
569
Sang-Hoon Parkd89e2fa2021-05-17 17:04:50 +0100570 const auto scheduling_hint = scheduling_hint_heuristic(_kernel_info.method, d->info()->data_type());
Joseph Dobson6f8b17d2020-02-11 19:32:11 +0000571
David Mansell9e698d52020-08-25 15:02:02 +0100572 // Set workspace if needed and reset number of threads as buffer manager gets re-created with max_threads
Michele Di Giorgiod7316eb2021-06-16 11:14:41 +0100573 CpuAuxTensorHandler workspace(offset_int_vec(AsmGemmWorkspace), _workspace_info, tensors, false);
574 if(workspace.get()->buffer() != nullptr)
David Mansell9e698d52020-08-25 15:02:02 +0100575 {
Michele Di Giorgiod7316eb2021-06-16 11:14:41 +0100576 _gemm_kernel_asm->set_working_space(reinterpret_cast<void *>(workspace.get()->buffer()));
David Mansell9e698d52020-08-25 15:02:02 +0100577 const unsigned int split_dim = scheduling_hint.split_dimension();
578 const unsigned int window_size = _gemm_kernel_asm->get_window_size().total_size();
579 unsigned int num_threads = NEScheduler::get().num_threads();
580 if(window_size < num_threads)
581 {
582 num_threads = window_size;
583 }
584 if(split_dim != IScheduler::split_dimensions_all)
585 {
586 // Make sure the kernel does not expect more threads than we can actually spawn
587 const unsigned int num_iterations = _optimised_kernel.get()->window().num_iterations(split_dim);
588 num_threads = std::min(num_iterations, num_threads);
589 }
590 _gemm_kernel_asm->set_nthreads(num_threads);
591 }
592
593 // Prepare assembly kernel
Sang-Hoon Parkd89e2fa2021-05-17 17:04:50 +0100594 prepare(tensors);
David Mansell9e698d52020-08-25 15:02:02 +0100595
David Mansell9e698d52020-08-25 15:02:02 +0100596 // Setup up matrix bias in the assembly kernel, it's just a pointer to matrix C.
Georgios Pinitasc0b6f762020-11-02 01:37:17 +0000597 TypeOutput *bias = nullptr;
Sang-Hoon Parkd89e2fa2021-05-17 17:04:50 +0100598 if(c && c->info()->data_type() != DataType::S32)
David Mansell9e698d52020-08-25 15:02:02 +0100599 {
Sang-Hoon Parkd89e2fa2021-05-17 17:04:50 +0100600 bias = reinterpret_cast<TypeOutput *>(c->buffer() + c->info()->offset_first_element_in_bytes());
David Mansell9e698d52020-08-25 15:02:02 +0100601 }
Georgios Pinitasc0b6f762020-11-02 01:37:17 +0000602
603 if(_gemm_info.method == AsmConvMethod::Indirect)
604 {
605 in0_ptr = nullptr;
606 lda = 0;
607 batch_stride_a = 0;
608 multi_stride_a = 0;
609 }
610
David Mansell9e698d52020-08-25 15:02:02 +0100611 // Set gemm parameters
612 _gemm_kernel_asm->set_arrays(in0_ptr, lda, batch_stride_a, multi_stride_a,
613 in1_ptr, ldb, multi_stride_b,
614 out_ptr, ldd, batch_stride_d, multi_stride_d,
615 bias, 0);
Georgios Pinitasc0b6f762020-11-02 01:37:17 +0000616 // Schedule
Georgios Pinitas77d42522019-11-05 13:35:47 +0000617 NEScheduler::get().schedule(_optimised_kernel.get(), scheduling_hint);
Anthony Barbier71d9b572018-07-06 17:05:59 +0100618}
619
Anthony Barbiereaefd002018-07-20 17:49:35 +0100620template <typename TypeInput, typename TypeOutput>
Michele Di Giorgiod7316eb2021-06-16 11:14:41 +0100621void create_arm_gemm(std::unique_ptr<CpuGemmAssemblyDispatch::IFallback> &arm_gemm,
622 const ITensorInfo *a, const ITensorInfo *b, const ITensorInfo *c, ITensorInfo *d,
623 arm_gemm::Activation activation, const AsmGemmInfo &info)
Anthony Barbiereaefd002018-07-20 17:49:35 +0100624{
Georgios Pinitasc0b6f762020-11-02 01:37:17 +0000625 Params p = extract_parameters(a, b, d, info);
626 const CPUInfo &ci = NEScheduler::get().cpu_info();
627 unsigned int num_threads = NEScheduler::get().num_threads();
Anthony Barbiereaefd002018-07-20 17:49:35 +0100628
Francesco Petrogalli553f6952022-06-30 10:22:01 +0000629 arm_gemm::GemmConfig cfg;
Ramy Elgammal91780022022-07-20 14:57:37 +0100630 cfg.weight_format = assembly_utils::map_to_arm_gemm_weight_format(info.weight_format);
Francesco Petrogalli553f6952022-06-30 10:22:01 +0000631 arm_gemm::GemmArgs args(&ci, p.M, p.N, p.K, p.sections, p.batches, p.multis, p.indirect, activation, num_threads, info.fixed_format, info.fast_mode, &cfg);
Anthony Barbiereaefd002018-07-20 17:49:35 +0100632
Georgios Pinitas48b3ef82019-10-14 19:03:09 +0100633 // Create arm_gemm fallback
Georgios Pinitas40f51a62020-11-21 03:04:18 +0000634 auto fallback = std::make_unique<Fallback<TypeInput, TypeOutput>>();
Michele Di Giorgiod7316eb2021-06-16 11:14:41 +0100635 fallback->configure(a, b, c, d, args, info);
Georgios Pinitas48b3ef82019-10-14 19:03:09 +0100636 arm_gemm = std::move(fallback);
Georgios Pinitascfa2bba2019-06-27 17:00:52 +0100637}
638
639template <typename TypeInput, typename TypeOutput>
Michele Di Giorgiod7316eb2021-06-16 11:14:41 +0100640void create_arm_gemm_quant(std::unique_ptr<CpuGemmAssemblyDispatch::IFallback> &arm_gemm,
641 const ITensorInfo *a, const ITensorInfo *b, const ITensorInfo *c, ITensorInfo *d,
642 arm_gemm::Activation activation, const AsmGemmInfo &info)
Georgios Pinitascfa2bba2019-06-27 17:00:52 +0100643{
Michele Di Giorgio6ad60af2020-06-09 14:52:15 +0100644 ARM_COMPUTE_UNUSED(activation);
Georgios Pinitas4ee8b152021-07-16 16:16:43 +0100645 Params p = extract_parameters(a, b, d, info);
646 const CPUInfo &ci = NEScheduler::get().cpu_info();
647 const unsigned int num_threads = NEScheduler::get().num_threads();
Georgios Pinitascfa2bba2019-06-27 17:00:52 +0100648
Francesco Petrogalli553f6952022-06-30 10:22:01 +0000649 arm_gemm::GemmConfig cfg;
Ramy Elgammal91780022022-07-20 14:57:37 +0100650 cfg.weight_format = assembly_utils::map_to_arm_gemm_weight_format(info.weight_format);
Francesco Petrogalli553f6952022-06-30 10:22:01 +0000651 arm_gemm::GemmArgs args(&ci, p.M, p.N, p.K, p.sections, p.batches, p.multis, p.indirect, activation, num_threads, info.fixed_format, info.fast_mode, &cfg);
Georgios Pinitascfa2bba2019-06-27 17:00:52 +0100652
Michalis Spyrou71ac9032019-11-14 14:31:44 +0000653 // Create arm_gemm fallback
Georgios Pinitas40f51a62020-11-21 03:04:18 +0000654 auto fallback = std::make_unique<Fallback<TypeInput, TypeOutput, arm_gemm::Requantize32>>();
Michalis Spyrou71ac9032019-11-14 14:31:44 +0000655
Georgios Pinitascfa2bba2019-06-27 17:00:52 +0100656 // Configure requantization info
Georgios Pinitasc0b6f762020-11-02 01:37:17 +0000657 const int32_t negation = info.negated_offsets ? 1 : -1;
Sang-Hoon Parkd89e2fa2021-05-17 17:04:50 +0100658 const int32_t a_offset = -a->quantization_info().uniform().offset * negation;
659 const int32_t b_offset = -b->quantization_info().uniform().offset * negation;
Georgios Pinitasc0b6f762020-11-02 01:37:17 +0000660 const GEMMLowpOutputStageInfo os_info = info.output_stage;
Georgios Pinitascfa2bba2019-06-27 17:00:52 +0100661
Michalis Spyrou71ac9032019-11-14 14:31:44 +0000662 arm_gemm::Requantize32 gemm_requant_info{};
663 if(os_info.gemmlowp_shifts.size() > 1)
664 {
665 const auto requantize_data = fallback->set_requantize_data(os_info.gemmlowp_shifts, os_info.gemmlowp_multipliers);
666 gemm_requant_info = arm_gemm::Requantize32(nullptr, 0,
667 a_offset, b_offset, os_info.gemmlowp_offset,
morgolock0bc80da2020-08-10 16:44:18 +0100668 (std::get<0>(requantize_data)) ? std::get<1>(requantize_data) : nullptr,
669 std::get<2>(requantize_data),
670 std::get<3>(requantize_data),
Michalis Spyrou71ac9032019-11-14 14:31:44 +0000671 os_info.gemmlowp_min_bound, os_info.gemmlowp_max_bound);
672 }
673 else
674 {
675 gemm_requant_info = arm_gemm::Requantize32(nullptr, 0,
676 a_offset, b_offset, os_info.gemmlowp_offset,
677 -os_info.gemmlowp_shift, os_info.gemmlowp_multiplier,
678 os_info.gemmlowp_min_bound, os_info.gemmlowp_max_bound);
679 }
Georgios Pinitascfa2bba2019-06-27 17:00:52 +0100680
Michalis Spyrou71ac9032019-11-14 14:31:44 +0000681 // Configure fallback
Michele Di Giorgiod7316eb2021-06-16 11:14:41 +0100682 fallback->configure(a, b, c, d, args, info, gemm_requant_info);
Georgios Pinitas48b3ef82019-10-14 19:03:09 +0100683 arm_gemm = std::move(fallback);
Anthony Barbiereaefd002018-07-20 17:49:35 +0100684}
Anthony Barbiereaefd002018-07-20 17:49:35 +0100685} //namespace
686
Michele Di Giorgiod7316eb2021-06-16 11:14:41 +0100687CpuGemmAssemblyDispatch::CpuGemmAssemblyDispatch()
688 : _arm_gemm(nullptr)
Anthony Barbiereaefd002018-07-20 17:49:35 +0100689{
690}
691
Ramy Elgammal91780022022-07-20 14:57:37 +0100692Status CpuGemmAssemblyDispatch::has_opt_impl(arm_compute::WeightFormat &expected_weight_format, const ITensorInfo *a, const ITensorInfo *b, const ITensorInfo *c, const ITensorInfo *d,
Francesco Petrogalli553f6952022-06-30 10:22:01 +0000693 const AsmGemmInfo &info)
Francesco.Petrogalli@arm.come33c5562022-03-31 17:55:35 +0000694{
695 ARM_COMPUTE_ERROR_ON_NULLPTR(a, b, d);
696 ARM_COMPUTE_UNUSED(c);
697 arm_gemm::Activation act = assembly_utils::map_to_arm_gemm_activation(info.activation_info);
698 Params p = extract_parameters(a, b, d, info);
699 const CPUInfo &ci = NEScheduler::get().cpu_info();
700 unsigned int num_threads = NEScheduler::get().num_threads();
Francesco Petrogalli553f6952022-06-30 10:22:01 +0000701 arm_gemm::GemmConfig cfg;
Ramy Elgammal91780022022-07-20 14:57:37 +0100702 cfg.weight_format = assembly_utils::map_to_arm_gemm_weight_format(info.weight_format);
703 arm_gemm::WeightFormat arm_gemm_expected_wf = assembly_utils::map_to_arm_gemm_weight_format(expected_weight_format);
704 arm_gemm::GemmArgs args(&ci, p.M, p.N, p.K, p.sections, p.batches, p.multis, p.indirect, act, num_threads, info.fixed_format, info.fast_mode, &cfg);
Francesco.Petrogalli@arm.come33c5562022-03-31 17:55:35 +0000705 switch(a->data_type())
706 {
707 case DataType::F32:
Ramy Elgammal91780022022-07-20 14:57:37 +0100708 ARM_COMPUTE_RETURN_ERROR_ON_MSG(!(arm_gemm::has_opt_gemm<float, float, arm_gemm::Nothing>(arm_gemm_expected_wf, args, {})),
Francesco.Petrogalli@arm.come33c5562022-03-31 17:55:35 +0000709 "We could not find an optimized kernel for F32 input");
710 break;
711#ifdef __aarch64__
712 case DataType::U8:
713 case DataType::QASYMM8:
714 if(d->data_type() == DataType::S32)
715 {
Ramy Elgammal91780022022-07-20 14:57:37 +0100716 ARM_COMPUTE_RETURN_ERROR_ON_MSG(!(arm_gemm::has_opt_gemm<uint8_t, uint32_t, arm_gemm::Nothing>(arm_gemm_expected_wf, args, {})),
Ramy Elgammalc8cc0242022-10-05 17:05:20 +0100717 "We could not find an optimized kernel for U8/QASYMM8 input and U32 output");
Francesco.Petrogalli@arm.come33c5562022-03-31 17:55:35 +0000718 }
719 else
720 {
Ramy Elgammal91780022022-07-20 14:57:37 +0100721 ARM_COMPUTE_RETURN_ERROR_ON_MSG(!(arm_gemm::has_opt_gemm<uint8_t, uint8_t, arm_gemm::Requantize32>(arm_gemm_expected_wf, args, {})),
Francesco.Petrogalli@arm.come33c5562022-03-31 17:55:35 +0000722 "We could not find an optimized kernel for U8 input and U8 output");
723 }
724 break;
725 case DataType::S8:
726 case DataType::QASYMM8_SIGNED:
727 if(d->data_type() == DataType::S32)
728 {
Ramy Elgammal91780022022-07-20 14:57:37 +0100729 ARM_COMPUTE_RETURN_ERROR_ON_MSG(!(arm_gemm::has_opt_gemm<int8_t, int32_t, arm_gemm::Nothing>(arm_gemm_expected_wf, args, {})),
Francesco.Petrogalli@arm.come33c5562022-03-31 17:55:35 +0000730 "We could not find an optimized kernel for S8/QASYMM8_SIGNED input and S32 output");
731 }
732 else
733 {
Ramy Elgammal91780022022-07-20 14:57:37 +0100734 ARM_COMPUTE_RETURN_ERROR_ON_MSG(!(arm_gemm::has_opt_gemm<int8_t, int8_t, arm_gemm::Requantize32>(arm_gemm_expected_wf, args, {})),
Ramy Elgammalc8cc0242022-10-05 17:05:20 +0100735 "We could not find an optimized kernel for S8 input and S8 output");
Francesco.Petrogalli@arm.come33c5562022-03-31 17:55:35 +0000736 }
737 break;
738#endif /* __aarch64__ */
Pablo Marquez Tellod208f4f2022-07-19 12:19:46 +0100739#if defined(ARM_COMPUTE_ENABLE_BF16)
Francesco.Petrogalli@arm.come33c5562022-03-31 17:55:35 +0000740 case DataType::BFLOAT16:
741 {
Ramy Elgammalaa52b7d2022-07-27 10:44:04 +0100742 ARM_COMPUTE_RETURN_ERROR_ON_MSG(!(arm_gemm::has_opt_gemm<bfloat16, float, arm_gemm::Nothing>(arm_gemm_expected_wf, args, {})),
Francesco.Petrogalli@arm.come33c5562022-03-31 17:55:35 +0000743 "We could not find an optimized kernel for BFLOAT16 input and F32 output");
744 break;
745 }
Pablo Marquez Tellod208f4f2022-07-19 12:19:46 +0100746#endif /* defined(ARM_COMPUTE_ENABLE_BF16) */
Francesco.Petrogalli@arm.come33c5562022-03-31 17:55:35 +0000747#ifdef __ARM_FEATURE_FP16_VECTOR_ARITHMETIC
748 case DataType::F16:
Ramy Elgammal91780022022-07-20 14:57:37 +0100749 ARM_COMPUTE_RETURN_ERROR_ON_MSG(!(arm_gemm::has_opt_gemm<float16_t, float16_t, arm_gemm::Nothing>(arm_gemm_expected_wf, args, {})),
Ramy Elgammalc8cc0242022-10-05 17:05:20 +0100750 "We could not find an optimized kernel for F16 input and F16 output");
Francesco.Petrogalli@arm.come33c5562022-03-31 17:55:35 +0000751 break;
752#endif /* __ARM_FEATURE_FP16_VECTOR_ARITHMETIC */
753 default:
754 ARM_COMPUTE_RETURN_ERROR_ON_MSG(true, "Usupported type. Could not find a kernel");
755 break;
756 }
Ramy Elgammal91780022022-07-20 14:57:37 +0100757 expected_weight_format = assembly_utils::map_to_arm_compute_weight_format(arm_gemm_expected_wf);
Francesco.Petrogalli@arm.come33c5562022-03-31 17:55:35 +0000758
759 return Status{};
760}
761
Sang-Hoon Park4f7693d2021-05-12 13:59:10 +0100762Status CpuGemmAssemblyDispatch::validate(const ITensorInfo *a, const ITensorInfo *b, const ITensorInfo *c, const ITensorInfo *d, const AsmGemmInfo &info)
Anthony Barbiereaefd002018-07-20 17:49:35 +0100763{
Georgios Pinitasc0b6f762020-11-02 01:37:17 +0000764 ARM_COMPUTE_UNUSED(c, info);
Anthony Barbiereaefd002018-07-20 17:49:35 +0100765 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(a, b, d);
766 ARM_COMPUTE_RETURN_ERROR_ON_CPU_F16_UNSUPPORTED(a);
Georgios Pinitasc7b183a2020-03-06 18:12:09 +0000767 ARM_COMPUTE_RETURN_ERROR_ON_CPU_BF16_UNSUPPORTED(a);
Mohammed Suhail Munshi4b5f6ef2022-10-21 11:15:54 +0100768 ARM_COMPUTE_RETURN_ERROR_ON_MSG(!(info.reshape_b_only_on_first_run), "Assembly kernel will not be executed when reshape_b_only_on_first_run is false");
Georgios Pinitas0f954eb2020-06-23 17:28:38 +0100769
Anthony Barbiereaefd002018-07-20 17:49:35 +0100770#ifndef __aarch64__
Michele Di Giorgio52556722019-12-23 16:35:12 +0000771 ARM_COMPUTE_RETURN_ERROR_ON_MSG(a->element_size() == 1, "8bit integer types only supported for aarch64");
Anthony Barbiereaefd002018-07-20 17:49:35 +0100772#endif /* __aarch64__ */
Georgios Pinitasdbdea0d2019-10-16 19:21:40 +0100773 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(a, 1, DataType::U8, DataType::QASYMM8, DataType::QASYMM8_SIGNED, DataType::S8,
Georgios Pinitasc7b183a2020-03-06 18:12:09 +0000774 DataType::BFLOAT16, DataType::F16, DataType::F32);
Georgios Pinitasdbdea0d2019-10-16 19:21:40 +0100775 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(b, 1, DataType::U8, DataType::QASYMM8, DataType::QASYMM8_SIGNED, DataType::QSYMM8_PER_CHANNEL, DataType::S8,
Georgios Pinitasc7b183a2020-03-06 18:12:09 +0000776 DataType::BFLOAT16, DataType::F16, DataType::F32);
Georgios Pinitasdbdea0d2019-10-16 19:21:40 +0100777 if(is_data_type_quantized_per_channel(b->data_type()))
778 {
779 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(a, 1, DataType::QASYMM8_SIGNED, DataType::S8);
780 }
Jonathan Deakin464ed202023-01-12 11:41:14 +0000781 else if(is_fixed_format_fast_math(info.weight_format))
782 {
783 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_NOT_IN(a, DataType::F32);
784 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_NOT_IN(b, DataType::BFLOAT16);
785 }
Georgios Pinitasdbdea0d2019-10-16 19:21:40 +0100786 else
787 {
788 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(a, b);
789 }
Anthony Barbiereaefd002018-07-20 17:49:35 +0100790 ARM_COMPUTE_RETURN_ERROR_ON_MSG(a->data_type() == DataType::F32 && d->data_type() != DataType::F32, "Only F32 output supported for F32 input");
791 ARM_COMPUTE_RETURN_ERROR_ON_MSG(a->data_type() == DataType::F16 && d->data_type() != DataType::F16, "Only F16 output supported for F16 input");
Georgios Pinitasc7b183a2020-03-06 18:12:09 +0000792 ARM_COMPUTE_RETURN_ERROR_ON_MSG(a->data_type() == DataType::BFLOAT16 && d->data_type() != DataType::F32, "Only F32 output supported for BFLOAT16 input");
Anthony Barbier90367492018-08-01 13:56:08 +0100793 ARM_COMPUTE_RETURN_ERROR_ON_MSG(a->data_type() == DataType::U8 && d->data_type() != DataType::U32, "Only U32 output supported for U8 input");
Anthony Barbiereaefd002018-07-20 17:49:35 +0100794 ARM_COMPUTE_RETURN_ERROR_ON_MSG(a->data_type() == DataType::S8 && d->data_type() != DataType::S32, "Only S32 output supported for S8 input");
Ethan Doe1fe48ca2023-03-01 23:19:26 +0000795 ARM_COMPUTE_RETURN_ERROR_ON_MSG(a->data_type() == DataType::QASYMM8 && (d->data_type() != DataType::QASYMM8 && d->data_type() != DataType::S32),
796 "Only QASYMM8/S32 output supported for QASYMM8 input");
Ramy Elgammal91780022022-07-20 14:57:37 +0100797 arm_compute::WeightFormat expected_weight_format;
798 const Status ret = CpuGemmAssemblyDispatch::has_opt_impl(expected_weight_format, a, b, c, d, info);
799 if((bool)ret && expected_weight_format != arm_compute::WeightFormat::ANY)
Francesco Petrogalli553f6952022-06-30 10:22:01 +0000800 {
801 // Correctness check: if the format expected by the kernel is
802 // not "any", make sure that the one found matches the format
803 // intended by the caller.
804 ARM_COMPUTE_RETURN_ERROR_ON_MSG((expected_weight_format != info.weight_format),
805 "The format expected by the kernel does not correspond with the one requested by the user.");
806 }
807 return ret;
Anthony Barbiereaefd002018-07-20 17:49:35 +0100808}
809
Sang-Hoon Park4f7693d2021-05-12 13:59:10 +0100810bool CpuGemmAssemblyDispatch::is_activation_supported(const ActivationLayerInfo &activation)
Georgios Pinitas48b3ef82019-10-14 19:03:09 +0100811{
Michele Di Giorgiod02d5ed2021-01-22 09:47:04 +0000812 arm_gemm::Activation act = assembly_utils::map_to_arm_gemm_activation(activation);
Georgios Pinitas48b3ef82019-10-14 19:03:09 +0100813 return act.type != arm_gemm::Activation::Type::None;
814}
815
Sang-Hoon Parkd89e2fa2021-05-17 17:04:50 +0100816void CpuGemmAssemblyDispatch::configure(const ITensorInfo *a, const ITensorInfo *b, const ITensorInfo *c, ITensorInfo *d, const AsmGemmInfo &info)
Anthony Barbiereaefd002018-07-20 17:49:35 +0100817{
Georgios Pinitascfa2bba2019-06-27 17:00:52 +0100818 ARM_COMPUTE_ERROR_ON_NULLPTR(a, b, d);
Michele Di Giorgiod02d5ed2021-01-22 09:47:04 +0000819 arm_gemm::Activation act = assembly_utils::map_to_arm_gemm_activation(info.activation_info);
Anthony Barbiereaefd002018-07-20 17:49:35 +0100820
821 //If we don't support a combination of data types, silently return: it is the caller's responsibility to check if configure() was successful via is_configured()
Sang-Hoon Parkd89e2fa2021-05-17 17:04:50 +0100822 if(!CpuGemmAssemblyDispatch::validate(a, b, c, d, info))
Anthony Barbiereaefd002018-07-20 17:49:35 +0100823 {
824 return;
825 }
826
Sang-Hoon Parkd89e2fa2021-05-17 17:04:50 +0100827 switch(a->data_type())
Anthony Barbiereaefd002018-07-20 17:49:35 +0100828 {
829 case DataType::F32:
Michele Di Giorgiod7316eb2021-06-16 11:14:41 +0100830 create_arm_gemm<float, float>(_arm_gemm, a, b, c, d, act, info);
Anthony Barbiereaefd002018-07-20 17:49:35 +0100831 break;
832#ifdef __aarch64__
833 case DataType::U8:
834 case DataType::QASYMM8:
Sang-Hoon Parkd89e2fa2021-05-17 17:04:50 +0100835 if(d->data_type() == DataType::S32)
Georgios Pinitascfa2bba2019-06-27 17:00:52 +0100836 {
Michele Di Giorgiod7316eb2021-06-16 11:14:41 +0100837 create_arm_gemm<uint8_t, uint32_t>(_arm_gemm, a, b, c, d, act, info);
Georgios Pinitascfa2bba2019-06-27 17:00:52 +0100838 }
839 else
840 {
Michele Di Giorgiod7316eb2021-06-16 11:14:41 +0100841 create_arm_gemm_quant<uint8_t, uint8_t>(_arm_gemm, a, b, c, d, act, info);
Georgios Pinitascfa2bba2019-06-27 17:00:52 +0100842 }
Anthony Barbiereaefd002018-07-20 17:49:35 +0100843 break;
844 case DataType::S8:
Georgios Pinitasdbdea0d2019-10-16 19:21:40 +0100845 case DataType::QASYMM8_SIGNED:
Sang-Hoon Parkd89e2fa2021-05-17 17:04:50 +0100846 if(d->data_type() == DataType::S32)
Michalis Spyrou71ac9032019-11-14 14:31:44 +0000847 {
Michele Di Giorgiod7316eb2021-06-16 11:14:41 +0100848 create_arm_gemm<int8_t, int32_t>(_arm_gemm, a, b, c, d, act, info);
Michalis Spyrou71ac9032019-11-14 14:31:44 +0000849 }
850 else
851 {
Michele Di Giorgiod7316eb2021-06-16 11:14:41 +0100852 create_arm_gemm_quant<int8_t, int8_t>(_arm_gemm, a, b, c, d, act, info);
Michalis Spyrou71ac9032019-11-14 14:31:44 +0000853 }
Anthony Barbiereaefd002018-07-20 17:49:35 +0100854 break;
855#endif /* __aarch64__ */
Pablo Marquez Tellod208f4f2022-07-19 12:19:46 +0100856#if defined(ARM_COMPUTE_ENABLE_BF16)
Georgios Pinitasc7b183a2020-03-06 18:12:09 +0000857 case DataType::BFLOAT16:
Michele Di Giorgiod7316eb2021-06-16 11:14:41 +0100858 create_arm_gemm<bfloat16, float>(_arm_gemm, a, b, c, d, act, info);
Georgios Pinitasc7b183a2020-03-06 18:12:09 +0000859 break;
Pablo Marquez Tellod208f4f2022-07-19 12:19:46 +0100860#endif /* defined(ARM_COMPUTE_ENABLE_BF16) */
Anthony Barbiereaefd002018-07-20 17:49:35 +0100861#ifdef __ARM_FEATURE_FP16_VECTOR_ARITHMETIC
862 case DataType::F16:
Michele Di Giorgiod7316eb2021-06-16 11:14:41 +0100863 create_arm_gemm<float16_t, float16_t>(_arm_gemm, a, b, c, d, act, info);
Anthony Barbiereaefd002018-07-20 17:49:35 +0100864 break;
865#endif /* __ARM_FEATURE_FP16_VECTOR_ARITHMETIC */
866 default:
867 break;
868 }
869}
870
Sang-Hoon Parkd89e2fa2021-05-17 17:04:50 +0100871void CpuGemmAssemblyDispatch::prepare(ITensorPack &tensors)
Anthony Barbiereaefd002018-07-20 17:49:35 +0100872{
Georgios Pinitas48b3ef82019-10-14 19:03:09 +0100873 ARM_COMPUTE_ERROR_ON(_arm_gemm == nullptr);
Sang-Hoon Parkd89e2fa2021-05-17 17:04:50 +0100874 _arm_gemm->prepare(tensors);
Anthony Barbiereaefd002018-07-20 17:49:35 +0100875}
876
Sang-Hoon Park4f7693d2021-05-12 13:59:10 +0100877bool CpuGemmAssemblyDispatch::is_configured() const
Anthony Barbiereaefd002018-07-20 17:49:35 +0100878{
Francesco Petrogalli553f6952022-06-30 10:22:01 +0000879 return _arm_gemm && _arm_gemm->is_configured();
Anthony Barbiereaefd002018-07-20 17:49:35 +0100880}
881
Sang-Hoon Parkd89e2fa2021-05-17 17:04:50 +0100882void CpuGemmAssemblyDispatch::run(ITensorPack &tensors)
Anthony Barbiereaefd002018-07-20 17:49:35 +0100883{
Georgios Pinitas48b3ef82019-10-14 19:03:09 +0100884 ARM_COMPUTE_ERROR_ON(_arm_gemm == nullptr);
Sang-Hoon Parkd89e2fa2021-05-17 17:04:50 +0100885 _arm_gemm->run(tensors);
Anthony Barbiereaefd002018-07-20 17:49:35 +0100886}
Michele Di Giorgiod7316eb2021-06-16 11:14:41 +0100887
888experimental::MemoryRequirements CpuGemmAssemblyDispatch::workspace() const
889{
890 ARM_COMPUTE_ERROR_ON(_arm_gemm == nullptr);
891 return _arm_gemm->workspace();
892}
Sang-Hoon Park4f7693d2021-05-12 13:59:10 +0100893} // namespace cpu
894} // namespace arm_compute