blob: e7f4cb9d01a64289c8a9f0377594003f17188237 [file] [log] [blame]
Gian Marco05288a22017-11-21 10:57:50 +00001/*
Teresa Charlin62687422021-04-28 10:58:49 +01002 * Copyright (c) 2017-2021 Arm Limited.
Gian Marco05288a22017-11-21 10:57:50 +00003 *
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_CLGEMMLOWPMATRIXMULTIPLYCORE_H
25#define ARM_COMPUTE_CLGEMMLOWPMATRIXMULTIPLYCORE_H
Gian Marco05288a22017-11-21 10:57:50 +000026
Gian Marco05288a22017-11-21 10:57:50 +000027#include "arm_compute/runtime/CL/CLTensor.h"
28#include "arm_compute/runtime/IFunction.h"
Georgios Pinitas26014cf2019-09-09 19:00:57 +010029#include "arm_compute/runtime/MemoryGroup.h"
Gian Marco05288a22017-11-21 10:57:50 +000030
31namespace arm_compute
32{
Sang-Hoon Parkbef7fa22020-10-21 15:58:54 +010033class CLCompileContext;
Gian Marco05288a22017-11-21 10:57:50 +000034class IMemoryManager;
35class ICLTensor;
Sang-Hoon Parkbef7fa22020-10-21 15:58:54 +010036class ITensorInfo;
37class CLDepthConvertLayerKernel;
38class CLGEMMLowpMatrixMultiplyNativeKernel;
39class CLGEMMLowpMatrixMultiplyReshapedOnlyRHSKernel;
40class CLGEMMLowpOffsetContributionKernel;
41class CLGEMMLowpOffsetContributionOutputStageKernel;
42class CLGEMMLowpMatrixAReductionKernel;
43class CLGEMMLowpMatrixBReductionKernel;
44class CLGEMMReshapeRHSMatrixKernel;
Gian Marco05288a22017-11-21 10:57:50 +000045
Gian Marco Iodiceeb65f6d2020-04-15 11:42:15 +010046/** Basic function to execute GEMMLowpMatrixMultiplyCore on OpenCL. */
Gian Marco05288a22017-11-21 10:57:50 +000047class CLGEMMLowpMatrixMultiplyCore : public IFunction
48{
49public:
50 /** Constructor */
51 CLGEMMLowpMatrixMultiplyCore(std::shared_ptr<IMemoryManager> memory_manager = nullptr);
Georgios Pinitas72219332018-06-05 14:56:06 +010052 /** Prevent instances of this class from being copied (As this class contains pointers) */
53 CLGEMMLowpMatrixMultiplyCore(const CLGEMMLowpMatrixMultiplyCore &) = delete;
54 /** Default move constructor */
55 CLGEMMLowpMatrixMultiplyCore(CLGEMMLowpMatrixMultiplyCore &&) = default;
56 /** Prevent instances of this class from being copied (As this class contains pointers) */
57 CLGEMMLowpMatrixMultiplyCore &operator=(const CLGEMMLowpMatrixMultiplyCore &) = delete;
58 /** Default move assignment operator */
59 CLGEMMLowpMatrixMultiplyCore &operator=(CLGEMMLowpMatrixMultiplyCore &&) = default;
Sang-Hoon Parkbef7fa22020-10-21 15:58:54 +010060 /** Default destructor */
61 ~CLGEMMLowpMatrixMultiplyCore();
Gian Marco05288a22017-11-21 10:57:50 +000062 /** Initialise the kernel's inputs, output
63 *
Teresa Charlin62687422021-04-28 10:58:49 +010064 * Valid data layouts:
65 * - NHWC
66 * - NCHW
67 *
68 * Valid data type configurations:
69 * |src0 |src1 |src2 |dst |
70 * |:--------------|:------------------|:--------|:--------------|
71 * |QASYMM8 |QASYMM8 |S32 |QASYMM8 |
72 * |QASYMM8 |QSYMM8_PER_CHANNEL |S32 |QASYMM8 |
73 * |QASYMM8 |QSYMM8 |S32 |QASYMM8 |
74 * |QASYMM8 |QASYMM8 |S32 |S32 |
75 * |QASYMM8 |QSYMM8_PER_CHANNEL |S32 |S32 |
76 * |QASYMM8 |QSYMM8 |S32 |S32 |
77 * |QASYMM8_SIGNED |QASYMM8_SIGNED |S32 |QASYMM8_SIGNED |
78 * |QASYMM8_SIGNED |QSYMM8_PER_CHANNEL |S32 |QASYMM8_SIGNED |
79 * |QASYMM8_SIGNED |QSYMM8 |S32 |QASYMM8_SIGNED |
80 * |QASYMM8_SIGNED |QASYMM8_SIGNED |S32 |S32 |
81 * |QASYMM8_SIGNED |QSYMM8_PER_CHANNEL |S32 |S32 |
82 * |QASYMM8_SIGNED |QSYMM8 |S32 |S32 |
83 *
Gian Marco Iodice4b908652018-10-18 10:21:02 +010084 * @note GEMMLowp: low precision GEMM kernel. [A * B + C]
Gian Marco05288a22017-11-21 10:57:50 +000085 * This kernel performs the following computations:
86 *
Michele Di Giorgiof6f78762020-07-06 11:27:21 +010087 * -# Convert a values from 8-bit quantized to int32 and add a_offset to each of them.
88 * -# Convert b values from 8-bit quantized to int32 and add b_offset to each of them.
Gian Marco05288a22017-11-21 10:57:50 +000089 * -# Compute the matrix product of the resulting a * b in int32.
Gian Marco Iodice4b908652018-10-18 10:21:02 +010090 * -# Quantize to uint8 if gemm_info.gemmlowp_output_stage != NONE
Gian Marco05288a22017-11-21 10:57:50 +000091 *
Manuel Bottini959c26d2019-12-02 16:22:35 +000092 * @param[in] a First input tensor (Matrix A). Data type supported: QASYMM8/QASYMM8_SIGNED.
Michele Di Giorgio1c1b3aa2020-04-02 17:35:42 +010093 * @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 +010094 * @param[in] c Third input tensor (Matrix C). It can be a nullptr. Data type supported: S32
Manuel Bottini959c26d2019-12-02 16:22:35 +000095 * @param[out] output Output tensor. Data type supported: S32 or QASYMM8/QASYMM8_SIGNED if gemm_info.gemmlowp_output_stage != NONE
Chunosov5124be52017-11-22 20:42:13 +070096 * @param[in] gemm_info (Optional) Specifies if the matrix A and/or matrix B have been reshaped and
97 * if the reshape of matrix B should be executed only for the first run
Gian Marco05288a22017-11-21 10:57:50 +000098 */
Gian Marco Iodice4b908652018-10-18 10:21:02 +010099 void configure(const ICLTensor *a, const ICLTensor *b, const ICLTensor *c, ICLTensor *output, const GEMMInfo &gemm_info = GEMMInfo());
Manuel Bottini2b84be52020-04-08 10:15:51 +0100100 /** Initialise the kernel's inputs, output
101 *
102 * @note GEMMLowp: low precision GEMM kernel. [A * B + C]
103 * This kernel performs the following computations:
104 *
Michele Di Giorgiof6f78762020-07-06 11:27:21 +0100105 * -# Convert a values from 8-bit quantized to int32 and add a_offset to each of them.
106 * -# Convert b values from 8-bit quantized to int32 and add b_offset to each of them.
Manuel Bottini2b84be52020-04-08 10:15:51 +0100107 * -# Compute the matrix product of the resulting a * b in int32.
108 * -# Quantize to uint8 if gemm_info.gemmlowp_output_stage != NONE
109 *
110 * @param[in] compile_context The compile context to be used.
111 * @param[in] a First input tensor (Matrix A). Data type supported: QASYMM8/QASYMM8_SIGNED.
112 * @param[in] b Second input tensor (Matrix B). Data type supported: same as @p a
113 * @param[in] c Third input tensor (Matrix C). It can be a nullptr. Data type supported: S32
114 * @param[out] output Output tensor. Data type supported: S32 or QASYMM8/QASYMM8_SIGNED if gemm_info.gemmlowp_output_stage != NONE
115 * @param[in] gemm_info (Optional) Specifies if the matrix A and/or matrix B have been reshaped and
116 * if the reshape of matrix B should be executed only for the first run
117 */
118 void configure(const CLCompileContext &compile_context, const ICLTensor *a, const ICLTensor *b, const ICLTensor *c, ICLTensor *output, const GEMMInfo &gemm_info = GEMMInfo());
Georgios Pinitas358ca202017-12-07 16:47:52 +0000119 /** Static function to check if given info will lead to a valid configuration of @ref CLGEMMLowpMatrixMultiplyCore
120 *
Vidhya Sudhan Loganathan951b8a42019-11-04 14:42:08 +0000121 * @param[in] a First input tensor info (Matrix A). Data type supported: QASYMM8.
Michele Di Giorgio1c1b3aa2020-04-02 17:35:42 +0100122 * @param[in] b Second input tensor info (Matrix B). Data type supported: QASYMM8/QASYMM8_SIGNED/QSYMM8/QSYMM8_PER_CHANNEL
Vidhya Sudhan Loganathan951b8a42019-11-04 14:42:08 +0000123 * @param[in] c Third input tensor info (Matrix C). It can be a nullptr. Data type supported: S32
Manuel Bottini959c26d2019-12-02 16:22:35 +0000124 * @param[in] output Output tensor info. Data type supported: S32 or QASYMM8/QASYMM8_SIGNED if gemm_info.gemmlowp_output_stage != NONE
Georgios Pinitas358ca202017-12-07 16:47:52 +0000125 * @param[in] gemm_info (Optional) Specifies if the matrix A and/or matrix B have been reshaped and
126 * if the reshape of matrix B should be executed only for the first run
127 *
128 * @return a status
129 */
Gian Marco Iodice4b908652018-10-18 10:21:02 +0100130 static Status validate(const ITensorInfo *a, const ITensorInfo *b, const ITensorInfo *c, const ITensorInfo *output, const GEMMInfo &gemm_info = GEMMInfo());
Gian Marco05288a22017-11-21 10:57:50 +0000131
132 // Inherited methods overridden:
133 void run() override;
Georgios Pinitas72219332018-06-05 14:56:06 +0100134 void prepare() override;
Gian Marco05288a22017-11-21 10:57:50 +0000135
136private:
Vidhya Sudhan Loganathan951b8a42019-11-04 14:42:08 +0000137 MemoryGroup _memory_group;
138
139 // Kernels used
Sang-Hoon Parkbef7fa22020-10-21 15:58:54 +0100140 std::unique_ptr<CLDepthConvertLayerKernel> _weights_to_qasymm8;
141 std::unique_ptr<CLGEMMLowpMatrixMultiplyNativeKernel> _mm_native_kernel;
142 std::unique_ptr<CLGEMMLowpMatrixMultiplyReshapedOnlyRHSKernel> _mm_reshaped_only_rhs_kernel;
143 std::unique_ptr<CLGEMMReshapeRHSMatrixKernel> _mtx_b_reshape_kernel;
144 std::unique_ptr<CLGEMMLowpMatrixAReductionKernel> _mtx_a_reduction_kernel;
145 std::unique_ptr<CLGEMMLowpMatrixBReductionKernel> _mtx_b_reduction_kernel;
146 std::unique_ptr<CLGEMMLowpOffsetContributionKernel> _offset_contribution_kernel;
147 std::unique_ptr<CLGEMMLowpOffsetContributionOutputStageKernel> _offset_contribution_output_stage_kernel;
Vidhya Sudhan Loganathan951b8a42019-11-04 14:42:08 +0000148
149 // Temporary tensors
150 CLTensor _qasymm8_weights;
151 CLTensor _vector_sum_col;
152 CLTensor _vector_sum_row;
153 CLTensor _tmp_b;
154 CLTensor _mm_result_s32;
155 CLTensor _gemm_output_stage_multipliers;
156 CLTensor _gemm_output_stage_shifts;
157
158 // Tensor pointers
159 const ICLTensor *_matrix_a;
160 const ICLTensor *_original_b;
161 const ICLTensor *_output;
162
163 int32_t _a_offset;
164 int32_t _b_offset;
165 bool _is_gemm_reshaped;
Vidhya Sudhan Loganathan951b8a42019-11-04 14:42:08 +0000166 bool _reshape_b_only_on_first_run;
167 bool _is_prepared;
Michele Di Giorgiob54ba282020-01-14 15:31:55 +0000168 bool _run_output_stage;
Vidhya Sudhan Loganathan951b8a42019-11-04 14:42:08 +0000169 bool _convert_to_qasymm8;
Michele Di Giorgiob54ba282020-01-14 15:31:55 +0000170 bool _run_offset_contribution;
Gian Marco05288a22017-11-21 10:57:50 +0000171};
Vidhya Sudhan Loganathan951b8a42019-11-04 14:42:08 +0000172} // namespace arm_compute
Michalis Spyrouf4643372019-11-29 16:17:13 +0000173#endif /*ARM_COMPUTE_CLGEMMLOWPMATRIXMULTIPLYCORE_H */