blob: 780723e7523aaba8580946eebe484321f63963ae [file] [log] [blame]
Gian Marco Iodiceab182122017-10-09 15:05:40 +01001/*
Sheri Zhangac6499a2021-02-10 15:32:38 +00002 * Copyright (c) 2017-2021 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 */
Michalis Spyrouf4643372019-11-29 16:17:13 +000024#ifndef ARM_COMPUTE_NEGEMMLOWPMATRIXMULTIPLYCORE_H
25#define ARM_COMPUTE_NEGEMMLOWPMATRIXMULTIPLYCORE_H
Gian Marco Iodiceab182122017-10-09 15:05:40 +010026
Georgios Pinitas48b3ef82019-10-14 19:03:09 +010027#include "NEActivationLayer.h"
Gian Marco Iodiceab182122017-10-09 15:05:40 +010028#include "arm_compute/runtime/IFunction.h"
29#include "arm_compute/runtime/IMemoryManager.h"
Georgios Pinitasec2256b2020-12-03 18:51:58 +000030#include "arm_compute/runtime/IWeightsManager.h"
Gian Marco Iodiceab182122017-10-09 15:05:40 +010031#include "arm_compute/runtime/MemoryGroup.h"
32#include "arm_compute/runtime/Tensor.h"
33
34#include <memory>
35
36namespace arm_compute
37{
38class ITensor;
Michalis Spyrouebcebf12020-10-21 00:04:14 +010039class NEConvertQuantizedSignednessKernel;
Michalis Spyrouebcebf12020-10-21 00:04:14 +010040class NEGEMMInterleave4x4Kernel;
41class NEGEMMLowpMatrixMultiplyKernel;
42class NEGEMMLowpOffsetContributionKernel;
43class NEGEMMLowpOffsetContributionOutputStageKernel;
44class NEGEMMLowpMatrixAReductionKernel;
45class NEGEMMLowpMatrixBReductionKernel;
46class NEGEMMTranspose1xWKernel;
Georgios Pinitasec2256b2020-12-03 18:51:58 +000047class NEGEMMAssemblyDispatch;
Gian Marco Iodiceab182122017-10-09 15:05:40 +010048
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +000049/** Basic function to execute GEMMLowpMatrixMultiplyCore. This function calls the following kernels if the DOT product instruction is not available:
Gian Marco Iodiceab182122017-10-09 15:05:40 +010050 *
51 * -# @ref NEGEMMInterleave4x4Kernel
52 * -# @ref NEGEMMTranspose1xWKernel
53 * -# @ref NEGEMMLowpMatrixMultiplyKernel
Gian Marcoe75a02b2017-11-08 12:24:09 +000054 * -# @ref NEGEMMLowpOffsetContributionKernel
Georgios Pinitas48b3ef82019-10-14 19:03:09 +010055 * -# @ref NEActivationLayer
Gian Marco Iodiceab182122017-10-09 15:05:40 +010056 *
57 * otherwise if the DOT product instruction is available:
58 *
Gian Marcoe75a02b2017-11-08 12:24:09 +000059 * -# @ref NEGEMMLowpOffsetContributionKernel
Gian Marco Iodiceab182122017-10-09 15:05:40 +010060 *
61*/
62class NEGEMMLowpMatrixMultiplyCore : public IFunction
63{
64public:
65 /** Constructor */
SiCongLi2e5fd632020-03-02 15:39:15 +000066 NEGEMMLowpMatrixMultiplyCore(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 NEGEMMLowpMatrixMultiplyCore(const NEGEMMLowpMatrixMultiplyCore &) = delete;
69 /** Default move constructor */
70 NEGEMMLowpMatrixMultiplyCore(NEGEMMLowpMatrixMultiplyCore &&) = default;
71 /** Prevent instances of this class from being copied (As this class contains pointers) */
72 NEGEMMLowpMatrixMultiplyCore &operator=(const NEGEMMLowpMatrixMultiplyCore &) = delete;
73 /** Default move assignment operator */
74 NEGEMMLowpMatrixMultiplyCore &operator=(NEGEMMLowpMatrixMultiplyCore &&) = default;
Michalis Spyrouebcebf12020-10-21 00:04:14 +010075 /** Default destructor */
76 ~NEGEMMLowpMatrixMultiplyCore();
Gian Marco Iodiceab182122017-10-09 15:05:40 +010077 /** Initialise the kernel's inputs, output
Anthony Barbierf202e502017-11-23 18:02:04 +000078 *
Teresa Charlin62687422021-04-28 10:58:49 +010079 * Valid data layouts:
80 * - NHWC
81 * - NCHW
82 *
83 * Valid data type configurations:
84 * |src0 |src1 |src2 |dst |
85 * |:--------------|:------------------|:--------|:--------------|
86 * |QASYMM8 |QASYMM8 |S32 |QASYMM8 |
87 * |QASYMM8 |QSYMM8_PER_CHANNEL |S32 |QASYMM8 |
88 * |QASYMM8 |QSYMM8 |S32 |QASYMM8 |
89 * |QASYMM8 |QASYMM8 |S32 |S32 |
90 * |QASYMM8 |QSYMM8_PER_CHANNEL |S32 |S32 |
91 * |QASYMM8 |QSYMM8 |S32 |S32 |
92 * |QASYMM8_SIGNED |QASYMM8_SIGNED |S32 |QASYMM8_SIGNED |
93 * |QASYMM8_SIGNED |QSYMM8_PER_CHANNEL |S32 |QASYMM8_SIGNED |
94 * |QASYMM8_SIGNED |QSYMM8 |S32 |QASYMM8_SIGNED |
95 * |QASYMM8_SIGNED |QASYMM8_SIGNED |S32 |S32 |
96 * |QASYMM8_SIGNED |QSYMM8_PER_CHANNEL |S32 |S32 |
97 * |QASYMM8_SIGNED |QSYMM8 |S32 |S32 |
98 *
Anthony Barbierf202e502017-11-23 18:02:04 +000099 * @note GEMM_LOWP: low precision GEMM kernel
100 * This kernel performs the following computations:
101 *
102 * -# Convert a values from QASYMM8 to int32 and add a_offset to each of them.
103 * -# Convert b values from QASYMM8 to int32 add b_offset to each of them.
104 * -# Compute the matrix product of the resulting a * b in int32.
105 *
Georgios Pinitasdbdea0d2019-10-16 19:21:40 +0100106 * @note The @p output type is S32 if @p gemm_info.type == GEMMLowpOutputStageType::NONE. It is QASYMM8/QASYMM8_SIGNED otherwise
George Wort2d7e6832019-02-22 16:37:41 +0000107 *
Georgios Pinitasdbdea0d2019-10-16 19:21:40 +0100108 * @param[in] a First input tensor (Matrix A). Data type supported: QASYMM8/QASYMM8_SIGNED.
Michele Di Giorgio47a89902020-03-09 19:32:33 +0000109 * @param[in] b Second input tensor (Matrix B). Data type supported: QASYMM8/QASYMM8_SIGNED/QSYMM8/QSYMM8_PER_CHANNEL.
Gian Marco Iodice4b908652018-10-18 10:21:02 +0100110 * @param[in] c Third input tensor (Matrix C). It can be a nullptr. Data type supported: S32
Georgios Pinitasdbdea0d2019-10-16 19:21:40 +0100111 * @param[out] output Output tensor. Data type supported: Data type supported: S32/QASYMM8/QASYMM8_SIGNED
Chunosov5124be52017-11-22 20:42:13 +0700112 * @param[in] gemm_info (Optional) Specifies if the matrix A and/or matrix B have been reshaped and
113 * if the reshape of matrix B should be executed only for the first run
Anthony Barbierf202e502017-11-23 18:02:04 +0000114 */
Gian Marco Iodice4b908652018-10-18 10:21:02 +0100115 void configure(const ITensor *a, const ITensor *b, const ITensor *c, ITensor *output, const GEMMInfo &gemm_info = GEMMInfo());
Georgios Pinitasa3b1b462017-11-16 19:24:39 +0000116 /** Static function to check if given info will lead to a valid configuration of @ref NEGEMMLowpMatrixMultiplyCore
117 *
Georgios Pinitasdbdea0d2019-10-16 19:21:40 +0100118 * @note The @p output type is S32 if @p gemm_info.type == GEMMLowpOutputStageType::NONE. It is QASYMM8/QASYMM8_SIGNED otherwise
George Wort2d7e6832019-02-22 16:37:41 +0000119 *
Georgios Pinitasdbdea0d2019-10-16 19:21:40 +0100120 * @param[in] a First input tensor info (Matrix A). Data type supported: QASYMM8/QASYMM8_SIGNED.
Michele Di Giorgio47a89902020-03-09 19:32:33 +0000121 * @param[in] b Second input tensor info (Matrix B). Data type supported: QASYMM8/QASYMM8_SIGNED/QSYMM8/QSYMM8_PER_CHANNEL.
George Wort2d7e6832019-02-22 16:37:41 +0000122 * @param[in] c Third input tensor info (Matrix C). It can be a nullptr. Data type supported: S32
Georgios Pinitasdbdea0d2019-10-16 19:21:40 +0100123 * @param[in] output Output tensor info. Data type supported: Data type supported: S32/QASYMM8/QASYMM8_SIGNED
Georgios Pinitas358ca202017-12-07 16:47:52 +0000124 * @param[in] gemm_info (Optional) Specifies if the matrix A and/or matrix B have been reshaped and
125 * if the reshape of matrix B should be executed only for the first run
Georgios Pinitasa3b1b462017-11-16 19:24:39 +0000126 *
Georgios Pinitas631c41a2017-12-06 11:53:03 +0000127 * @return a status
Georgios Pinitasa3b1b462017-11-16 19:24:39 +0000128 */
Gian Marco Iodice4b908652018-10-18 10:21:02 +0100129 static Status validate(const ITensorInfo *a, const ITensorInfo *b, const ITensorInfo *c, const ITensorInfo *output, const GEMMInfo &gemm_info = GEMMInfo());
Gian Marco Iodiceab182122017-10-09 15:05:40 +0100130
Pablo Tellofc004492018-03-23 11:40:05 +0000131 // Inherited methods overridden
Gian Marco Iodiceab182122017-10-09 15:05:40 +0100132 void run() override;
Georgios Pinitas72219332018-06-05 14:56:06 +0100133 void prepare() override;
Gian Marco Iodiceab182122017-10-09 15:05:40 +0100134
135private:
Michalis Spyrouebcebf12020-10-21 00:04:14 +0100136 MemoryGroup _memory_group;
137 IWeightsManager *_weights_manager;
Georgios Pinitasec2256b2020-12-03 18:51:58 +0000138 std::unique_ptr<NEGEMMAssemblyDispatch> _asm_glue;
Michalis Spyrouebcebf12020-10-21 00:04:14 +0100139 std::unique_ptr<NEGEMMLowpMatrixMultiplyKernel> _mm_kernel;
140 std::unique_ptr<NEGEMMInterleave4x4Kernel> _mtx_a_reshape_kernel;
141 std::unique_ptr<NEGEMMTranspose1xWKernel> _mtx_b_reshape_kernel;
142 std::unique_ptr<NEGEMMLowpMatrixAReductionKernel> _mtx_a_reduction_kernel;
143 std::unique_ptr<NEGEMMLowpMatrixBReductionKernel> _mtx_b_reduction_kernel;
144 std::unique_ptr<NEGEMMLowpOffsetContributionKernel> _offset_contribution_kernel;
145 std::unique_ptr<NEGEMMLowpOffsetContributionOutputStageKernel> _offset_contribution_output_stage_kernel;
146 NEActivationLayer _activation_func;
147 std::unique_ptr<NEConvertQuantizedSignednessKernel> _convert_to_signed_asymm;
148 std::unique_ptr<NEConvertQuantizedSignednessKernel> _convert_from_signed_asymm;
Georgios Pinitasdbdea0d2019-10-16 19:21:40 +0100149
150 Tensor _vector_sum_col;
151 Tensor _vector_sum_row;
152 Tensor _tmp_a;
153 Tensor _tmp_b;
154 Tensor _mm_result_s32;
155 Tensor _signed_a;
156 Tensor _signed_output;
157 const ITensor *_original_b;
158 int32_t _a_offset;
159 int32_t _b_offset;
160
161 bool _run_vector_matrix_multiplication;
162 bool _assembly_path;
163 bool _fused_assembly_path;
164 bool _reshape_b_only_on_first_run;
165 bool _is_prepared;
166 bool _fuse_output_stage;
167 bool _run_activation;
168 bool _flip_signedness;
Gian Marco Iodiceab182122017-10-09 15:05:40 +0100169};
George Wort2d7e6832019-02-22 16:37:41 +0000170} // namespace arm_compute
Michalis Spyrouf4643372019-11-29 16:17:13 +0000171#endif /*ARM_COMPUTE_NEGEMMLOWPMATRIXMULTIPLYCORE_H */