blob: b8e5fa67dd526695f090f4d39ae9eb5b13752b00 [file] [log] [blame]
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001/*
giuros011c9efeb2019-01-11 14:04:43 +00002 * Copyright (c) 2016-2019 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 */
24#ifndef __ARM_COMPUTE_CLGEMM_H__
25#define __ARM_COMPUTE_CLGEMM_H__
26
Anthony Barbier6ff3b192017-09-04 18:44:23 +010027#include "arm_compute/core/CL/kernels/CLGEMMMatrixMultiplyKernel.h"
Gian Marco Iodicebf9731e2018-12-12 10:18:04 +000028#include "arm_compute/core/CL/kernels/CLGEMMMatrixMultiplyReshapedKernel.h"
Gian Marco Iodice926afe12019-03-19 11:44:13 +000029#include "arm_compute/core/CL/kernels/CLGEMMMatrixMultiplyReshapedOnlyRHSKernel.h"
Gian Marco Iodicebf9731e2018-12-12 10:18:04 +000030#include "arm_compute/core/CL/kernels/CLGEMMReshapeLHSMatrixKernel.h"
31#include "arm_compute/core/CL/kernels/CLGEMMReshapeRHSMatrixKernel.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010032#include "arm_compute/runtime/CL/CLTensor.h"
33#include "arm_compute/runtime/IFunction.h"
Georgios Pinitas8a94e7c2017-09-15 19:06:47 +010034#include "arm_compute/runtime/IMemoryManager.h"
Georgios Pinitas26014cf2019-09-09 19:00:57 +010035#include "arm_compute/runtime/MemoryGroup.h"
Georgios Pinitas8a94e7c2017-09-15 19:06:47 +010036
Anthony Barbier6ff3b192017-09-04 18:44:23 +010037namespace arm_compute
38{
39class ICLTensor;
40
Gian Marco Iodice3a3066b2017-06-23 13:38:14 +010041/** Basic function to execute GEMM on OpenCL. This function calls the following OpenCL kernels:
Anthony Barbier6ff3b192017-09-04 18:44:23 +010042 *
Gian Marco Iodice926afe12019-03-19 11:44:13 +000043 * -# @ref CLGEMMReshapeLHSMatrixKernel (only if the RESHAPED_V1 is selected by the heuristic model)
44 * -# @ref CLGEMMReshapeRHSMatrixKernel (only if either the RESHAPED_V1 or RESHAPED_ONLY_RHS is selected by the select_gemm_type method())
45 * -# @ref CLGEMMMatrixMultiplyKernel (only if either the NATIVE or RESHAPED_V1 is selected by the select_gemm_type method())
46 * -# @ref CLGEMMMatrixMultiplyReshapedKernel (only if RESHAPED_V1 is selected by the select_gemm_type method())
47 * -# @ref CLGEMMMatrixMultiplyReshapedOnlyRHSKernel (only if RESHAPED_ONLY_RHS is selected by the select_gemm_type method())
Anthony Barbier6ff3b192017-09-04 18:44:23 +010048 *
49 */
50class CLGEMM : public IFunction
51{
52public:
Alex Gildayc357c472018-03-21 13:54:09 +000053 /** Default constructor.
54 *
55 * @param[in] memory_manager (Optional) Memory manager.
56 */
Georgios Pinitas8a94e7c2017-09-15 19:06:47 +010057 CLGEMM(std::shared_ptr<IMemoryManager> memory_manager = nullptr);
Georgios Pinitas82b51482018-04-24 15:14:12 +010058 /** Prevent instances of this class from being copied (As this class contains pointers) */
59 CLGEMM(const CLGEMM &) = delete;
60 /** Default move constructor */
61 CLGEMM(CLGEMM &&) = default;
62 /** Prevent instances of this class from being copied (As this class contains pointers) */
63 CLGEMM &operator=(const CLGEMM &) = delete;
64 /** Default move assignment operator */
65 CLGEMM &operator=(CLGEMM &&) = default;
Anthony Barbier6ff3b192017-09-04 18:44:23 +010066 /** Initialise the kernel's inputs and output
67 *
68 * @note GEMM: General Matrix Multiply - [alpha * A * B + beta * C].
69 *
Gian Marco Iodice3a3066b2017-06-23 13:38:14 +010070 * @note All tensors must have the same data type.
Anthony Barbier6ff3b192017-09-04 18:44:23 +010071 *
72 * @note Whilst the first input tensor can be a vector, the second input tensor must be at least a matrix
73 *
Vidhya Sudhan Loganathan7485d5a2018-07-04 09:34:00 +010074 * @param[in] a First input tensor (Matrix or Vector A). Data types supported: F16/F32
Gian Marco1d25ed52017-12-16 19:33:50 +000075 * @param[in] b Second input tensor (Matrix B). Data type supported: same as @p a.
76 * @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.
77 * @param[out] output Output tensor. Data type supported: same as @p a
78 * @param[in] alpha Weight of the matrix product
79 * @param[in] beta Weight of matrix C
80 * @param[in] gemm_info (Optional) Specifies if the matrix A and/or matrix B have been reshaped and
Gian Marco36a0a462018-01-12 10:21:40 +000081 * if the reshape of matrix B should happen only for the first run. GEMMInfo also contains information about the reshaping
82 * in case matrix A and matrix B have been already transformed.
Anthony Barbier6ff3b192017-09-04 18:44:23 +010083 */
Gian Marco1d25ed52017-12-16 19:33:50 +000084 void configure(const ICLTensor *a, const ICLTensor *b, const ICLTensor *c, ICLTensor *output, float alpha, float beta, const GEMMInfo &gemm_info = GEMMInfo());
Georgios Pinitas78c00902018-01-09 17:33:11 +000085 /** Static function to check if given info will lead to a valid configuration of @ref CLGEMM.
86 *
giuros011c9efeb2019-01-11 14:04:43 +000087 * @param[in] a First input tensor info (Matrix or Vector A). Data types supported: F16/F32
88 * @param[in] b Second input tensor info (Matrix B). Data type supported: same as @p a.
89 * @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.
90 * @param[in] output Output tensor info. Data type supported: same as @p a
91 * @param[in] alpha Weight of the matrix product
92 * @param[in] beta Weight of matrix C
93 * @param[in] gemm_info (Optional) Specifies if the matrix A and/or matrix B have been reshaped and
Georgios Pinitas78c00902018-01-09 17:33:11 +000094 * if the reshape of matrix B should happen only for the first run
95 *
96 * @return a status
97 */
Gian Marco Iodice750641d2018-05-08 12:01:57 +010098 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 +010099
100 // Inherited methods overridden:
101 void run() override;
Georgios Pinitase0437672018-05-02 14:07:55 +0100102 void prepare() override;
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100103
104private:
Gian Marco Iodice926afe12019-03-19 11:44:13 +0000105 enum class GEMMType
106 {
107 NATIVE,
108 RESHAPED_V1,
109 RESHAPED_V2,
110 RESHAPED_ONLY_RHS
111 };
112
113 // TODO (COMPMID-2095)
114 static GEMMType select_gemm_type(unsigned int m, unsigned int n, unsigned int k, DataType data_type, bool reshape_b_only_on_first_run, GPUTarget gpu_target);
115
116 void configure_native(const ICLTensor *a, const ICLTensor *b, const ICLTensor *c, ICLTensor *output, float alpha, float beta, const GEMMInfo &gemm_info);
117 void configure_reshaped_v1(const ICLTensor *a, const ICLTensor *b, const ICLTensor *c, ICLTensor *output, float alpha, float beta, const GEMMInfo &gemm_info);
118 void configure_reshaped_v2(const ICLTensor *a, const ICLTensor *b, const ICLTensor *c, ICLTensor *output, float alpha, float beta, const GEMMInfo &gemm_info);
119 void configure_reshaped_only_rhs(const ICLTensor *a, const ICLTensor *b, const ICLTensor *c, ICLTensor *output, float alpha, float beta, const GEMMInfo &gemm_info);
120
121 static Status validate_native(const ITensorInfo *a, const ITensorInfo *b, const ITensorInfo *c, const ITensorInfo *output, float alpha, float beta, const GEMMInfo &gemm_info);
122 static Status validate_reshaped_v1(const ITensorInfo *a, const ITensorInfo *b, const ITensorInfo *c, const ITensorInfo *output, float alpha, float beta, const GEMMInfo &gemm_info);
123 static Status validate_reshaped_v2(const ITensorInfo *a, const ITensorInfo *b, const ITensorInfo *c, const ITensorInfo *output, float alpha, float beta, const GEMMInfo &gemm_info);
124 static Status validate_reshaped_only_rhs(const ITensorInfo *a, const ITensorInfo *b, const ITensorInfo *c, const ITensorInfo *output, float alpha, float beta, const GEMMInfo &gemm_info);
125
Georgios Pinitas26014cf2019-09-09 19:00:57 +0100126 MemoryGroup _memory_group;
Gian Marco Iodice926afe12019-03-19 11:44:13 +0000127 CLGEMMMatrixMultiplyKernel _mm_kernel;
Gian Marco Iodice926afe12019-03-19 11:44:13 +0000128 CLGEMMReshapeLHSMatrixKernel _reshape_lhs_kernel;
129 CLGEMMReshapeRHSMatrixKernel _reshape_rhs_kernel;
130 CLGEMMMatrixMultiplyReshapedKernel _mm_reshaped_kernel;
131 CLGEMMMatrixMultiplyReshapedOnlyRHSKernel _mm_reshaped_only_rhs_kernel;
132 CLTensor _tmp_a;
133 CLTensor _tmp_b;
134 const ICLTensor *_original_b;
Gian Marco Iodice926afe12019-03-19 11:44:13 +0000135 bool _reshape_b_only_on_first_run;
136 bool _is_prepared;
137 GEMMType _gemm_type;
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100138};
giuros011c9efeb2019-01-11 14:04:43 +0000139} // namespace arm_compute
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100140
141#endif /* __ARM_COMPUTE_CLGEMM_H__ */