blob: c67154c13a8cb95f12cb4294c900739381a355c1 [file] [log] [blame]
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001/*
Michele Di Giorgiobd2c8e12021-01-19 15:29:02 +00002 * Copyright (c) 2017-2021 Arm Limited.
Anthony Barbier6ff3b192017-09-04 18:44:23 +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 */
Michalis Spyrouf4643372019-11-29 16:17:13 +000024#ifndef ARM_COMPUTE_NEGEMM_H
25#define ARM_COMPUTE_NEGEMM_H
Anthony Barbier6ff3b192017-09-04 18:44:23 +010026
Anthony Barbier6ff3b192017-09-04 18:44:23 +010027#include "arm_compute/runtime/IFunction.h"
Georgios Pinitas658039b2017-09-15 16:30:50 +010028#include "arm_compute/runtime/IMemoryManager.h"
Michalis Spyrou1a569a32019-09-10 17:20:34 +010029#include "arm_compute/runtime/IWeightsManager.h"
Georgios Pinitas658039b2017-09-15 16:30:50 +010030#include "arm_compute/runtime/MemoryGroup.h"
Georgios Pinitas48b3ef82019-10-14 19:03:09 +010031#include "arm_compute/runtime/NEON/functions/NEActivationLayer.h"
Michalis Spyrou173ba9b2020-06-23 17:25:43 +010032#include "arm_compute/runtime/NEON/functions/NEArithmeticAddition.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010033#include "arm_compute/runtime/Tensor.h"
34
Michalis Spyrouebcebf12020-10-21 00:04:14 +010035#include <memory>
36
Anthony Barbier6ff3b192017-09-04 18:44:23 +010037namespace arm_compute
38{
Georgios Pinitasec2256b2020-12-03 18:51:58 +000039// Forward declarations
Michalis Spyrouebcebf12020-10-21 00:04:14 +010040class NEGEMMInterleave4x4Kernel;
41class NEGEMMMatrixAdditionKernel;
42class NEGEMMMatrixMultiplyKernel;
43class NEGEMMTranspose1xWKernel;
Georgios Pinitasec2256b2020-12-03 18:51:58 +000044class NEGEMMAssemblyDispatch;
45
Anthony Barbier6ff3b192017-09-04 18:44:23 +010046/** Basic function to execute GEMM on NEON. This function calls the following NEON kernels:
47 *
Georgios Pinitas48b3ef82019-10-14 19:03:09 +010048 * If optimized assembly is available:
49 * -# @ref NEGEMMAssemblyDispatch
50 * -# @ref NEActivationLayer (if alpha != 1.0)
51 * Else:
Anthony Barbier6ff3b192017-09-04 18:44:23 +010052 * -# @ref NEGEMMInterleave4x4Kernel (if the output tensor is a matrix)
53 * -# @ref NEGEMMTranspose1xWKernel (if the output tensor is a matrix)
54 * -# @ref NEGEMMMatrixMultiplyKernel
Georgios Pinitas48b3ef82019-10-14 19:03:09 +010055 * In both cases:
56 * -# @ref NEGEMMMatrixAdditionKernel (if c != nullptr and beta != 0.0 and is not reshaped once)
57 * Else:
Michele Di Giorgiobd2c8e12021-01-19 15:29:02 +000058 * -# @ref NEArithmeticAddition (if c != nullptr and is reshaped once and not optimized assembly in place)
Anthony Barbier6ff3b192017-09-04 18:44:23 +010059 *
Georgios Pinitas48b3ef82019-10-14 19:03:09 +010060 * -# @ref NEActivationLayer (if activation is specified in GEMMInfo)
Anthony Barbier6ff3b192017-09-04 18:44:23 +010061 */
62class NEGEMM : public IFunction
63{
64public:
65 /** Constructor */
Michalis Spyrou1a569a32019-09-10 17:20:34 +010066 NEGEMM(std::shared_ptr<IMemoryManager> memory_manager = nullptr, IWeightsManager *weights_manager = nullptr);
Georgios Pinitas72219332018-06-05 14:56:06 +010067 /** Prevent instances of this class from being copied (As this class contains pointers) */
68 NEGEMM(const NEGEMM &) = delete;
69 /** Default move constructor */
70 NEGEMM(NEGEMM &&) = default;
71 /** Prevent instances of this class from being copied (As this class contains pointers) */
72 NEGEMM &operator=(const NEGEMM &) = delete;
73 /** Default move assignment operator */
74 NEGEMM &operator=(NEGEMM &&) = default;
Michalis Spyrouebcebf12020-10-21 00:04:14 +010075 /** Default destructor */
76 ~NEGEMM();
Anthony Barbier6ff3b192017-09-04 18:44:23 +010077 /** Initialise the kernel's inputs, output
78 *
79 * @note GEMM: General Matrix Multiply - [alpha * A * B + beta * C].
80 * @note GEMM: The tensors a, b, c, d must have the same data type. You should not mix data types when calling this function.
81 *
Michele Di Giorgioa602f032020-03-12 19:34:33 +000082 * @param[in] a First input tensor (Matrix A or Vector A). Data type supported: BFLOAT16/F16/F32
Gian Marco1d25ed52017-12-16 19:33:50 +000083 * @param[in] b Second input tensor (Matrix B). Data type supported: same as @p a
84 * @param[in] c Third input tensor (Matrix C). It can be a nullptr if just the multiplication between @p a and @p b is needed. Data type supported: same as @p a
85 * @param[out] d Output tensor. Data type supported: same as @p a
86 * @param[in] alpha Weight of the matrix product
87 * @param[in] beta Weight of matrix C
88 * @param[in] gemm_info (Optional) Specifies if the matrix A and/or matrix B have been reshaped and
89 * if the reshape of matrix B should happen only for the first run
Anthony Barbier6ff3b192017-09-04 18:44:23 +010090 */
Gian Marco1d25ed52017-12-16 19:33:50 +000091 void configure(const ITensor *a, const ITensor *b, const ITensor *c, ITensor *d, float alpha, float beta, const GEMMInfo &gemm_info = GEMMInfo());
Giorgio Arenaa855af12018-07-16 17:20:38 +010092 /** Static function to check if given info will lead to a valid configuration of @ref NEGEMM.
93 *
Michele Di Giorgioa602f032020-03-12 19:34:33 +000094 * @param[in] a First input tensor info (Matrix or Vector A). Data types supported: BFLOAT16/F16/F32
Giorgio Arenaa855af12018-07-16 17:20:38 +010095 * @param[in] b Second input tensor info (Matrix B). Data type supported: same as @p a.
96 * @param[in] c Third input tensor info (Matrix C). It can be a nullptr if just the multiplication between @p a and @p b is needed. Data type supported: same as @p a.
97 * @param[out] output Output tensor info. Data type supported: same as @p a
98 * @param[in] alpha Weight of the matrix product
99 * @param[in] beta Weight of matrix C
100 * @param[in] gemm_info (Optional) Specifies if the matrix A and/or matrix B have been reshaped and
101 * if the reshape of matrix B should happen only for the first run
102 *
103 * @return a status
104 */
105 static Status validate(const ITensorInfo *a, const ITensorInfo *b, const ITensorInfo *c, const ITensorInfo *output, float alpha, float beta, const GEMMInfo &gemm_info = GEMMInfo());
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100106
107 // Inherited methods overridden:
108 void run() override;
Georgios Pinitas72219332018-06-05 14:56:06 +0100109 void prepare() override;
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100110
111private:
Michalis Spyrouebcebf12020-10-21 00:04:14 +0100112 MemoryGroup _memory_group;
113 IWeightsManager *_weights_manager;
114 std::unique_ptr<NEGEMMInterleave4x4Kernel> _interleave_kernel;
115 std::unique_ptr<NEGEMMTranspose1xWKernel> _transpose_kernel;
116 std::unique_ptr<NEGEMMMatrixMultiplyKernel> _mm_kernel;
Georgios Pinitasec2256b2020-12-03 18:51:58 +0000117 std::unique_ptr<NEGEMMAssemblyDispatch> _asm_glue;
Michalis Spyrouebcebf12020-10-21 00:04:14 +0100118 std::unique_ptr<NEGEMMMatrixAdditionKernel> _ma_kernel;
119 NEActivationLayer _alpha_scale_func;
120 NEArithmeticAddition _add_bias;
121 NEActivationLayer _activation_func;
Georgios Pinitas48b3ef82019-10-14 19:03:09 +0100122
123 Tensor _tmp_a;
124 Tensor _tmp_b;
125 Tensor _tmp_d;
126 const ITensor *_original_b;
127 bool _run_vector_matrix_multiplication;
128 bool _run_alpha_scale;
129 bool _run_addition;
130 bool _run_bias_addition;
131 bool _run_activation;
132 bool _reshape_b_only_on_first_run;
133 bool _is_prepared;
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100134};
Georgios Pinitas72219332018-06-05 14:56:06 +0100135} // namespace arm_compute
Michalis Spyrouf4643372019-11-29 16:17:13 +0000136#endif /*ARM_COMPUTE_NEGEMM_H */