blob: c4513f29d94726a1429a5a78eea46fe9079e1ff2 [file] [log] [blame]
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001/*
Gian Marco36a0a462018-01-12 10:21:40 +00002 * Copyright (c) 2016-2018 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/CLGEMMInterleave4x4Kernel.h"
28#include "arm_compute/core/CL/kernels/CLGEMMMatrixAdditionKernel.h"
29#include "arm_compute/core/CL/kernels/CLGEMMMatrixMultiplyKernel.h"
30#include "arm_compute/core/CL/kernels/CLGEMMTranspose1xWKernel.h"
Georgios Pinitas8a94e7c2017-09-15 19:06:47 +010031#include "arm_compute/runtime/CL/CLMemoryGroup.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"
35
Anthony Barbier6ff3b192017-09-04 18:44:23 +010036namespace arm_compute
37{
38class ICLTensor;
39
Gian Marco Iodice3a3066b2017-06-23 13:38:14 +010040/** Basic function to execute GEMM on OpenCL. This function calls the following OpenCL kernels:
Anthony Barbier6ff3b192017-09-04 18:44:23 +010041 *
Isabella Gottardi8e74f442018-03-01 16:42:00 +000042 * -# @ref CLGEMMInterleave4x4Kernel (only if the reshaped GEMM is selected by the heuristic model)
43 * -# @ref CLGEMMTranspose1xWKernel (only if the reshaped GEMM is selected by the heuristic model)
Anthony Barbier6ff3b192017-09-04 18:44:23 +010044 * -# @ref CLGEMMMatrixMultiplyKernel
45 * -# @ref CLGEMMMatrixAdditionKernel (if c != nullptr and beta != 0.0)
46 *
47 */
48class CLGEMM : public IFunction
49{
50public:
Alex Gildayc357c472018-03-21 13:54:09 +000051 /** Default constructor.
52 *
53 * @param[in] memory_manager (Optional) Memory manager.
54 */
Georgios Pinitas8a94e7c2017-09-15 19:06:47 +010055 CLGEMM(std::shared_ptr<IMemoryManager> memory_manager = nullptr);
Georgios Pinitas82b51482018-04-24 15:14:12 +010056 /** Prevent instances of this class from being copied (As this class contains pointers) */
57 CLGEMM(const CLGEMM &) = delete;
58 /** Default move constructor */
59 CLGEMM(CLGEMM &&) = default;
60 /** Prevent instances of this class from being copied (As this class contains pointers) */
61 CLGEMM &operator=(const CLGEMM &) = delete;
62 /** Default move assignment operator */
63 CLGEMM &operator=(CLGEMM &&) = default;
Anthony Barbier6ff3b192017-09-04 18:44:23 +010064 /** Initialise the kernel's inputs and output
65 *
66 * @note GEMM: General Matrix Multiply - [alpha * A * B + beta * C].
67 *
Gian Marco Iodice3a3066b2017-06-23 13:38:14 +010068 * @note All tensors must have the same data type.
Anthony Barbier6ff3b192017-09-04 18:44:23 +010069 *
70 * @note Whilst the first input tensor can be a vector, the second input tensor must be at least a matrix
71 *
Vidhya Sudhan Loganathan7485d5a2018-07-04 09:34:00 +010072 * @param[in] a First input tensor (Matrix or Vector A). Data types supported: F16/F32
Gian Marco1d25ed52017-12-16 19:33:50 +000073 * @param[in] b Second input tensor (Matrix B). Data type supported: same as @p a.
74 * @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.
75 * @param[out] output Output tensor. Data type supported: same as @p a
76 * @param[in] alpha Weight of the matrix product
77 * @param[in] beta Weight of matrix C
78 * @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 +000079 * if the reshape of matrix B should happen only for the first run. GEMMInfo also contains information about the reshaping
80 * in case matrix A and matrix B have been already transformed.
Anthony Barbier6ff3b192017-09-04 18:44:23 +010081 */
Gian Marco1d25ed52017-12-16 19:33:50 +000082 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 +000083 /** Static function to check if given info will lead to a valid configuration of @ref CLGEMM.
84 *
Vidhya Sudhan Loganathan7485d5a2018-07-04 09:34:00 +010085 * @param[in] a First input tensor info (Matrix or Vector A). Data types supported: F16/F32
Gian Marco Iodice750641d2018-05-08 12:01:57 +010086 * @param[in] b Second input tensor info (Matrix B). Data type supported: same as @p a.
87 * @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.
88 * @param[out] output Output tensor info. Data type supported: same as @p a
Georgios Pinitas78c00902018-01-09 17:33:11 +000089 * @param[in] alpha Weight of the matrix product
90 * @param[in] beta Weight of matrix C
91 * @param[in] gemm_info (Optional) Specifies if the matrix A and/or matrix B have been reshaped and
92 * if the reshape of matrix B should happen only for the first run
93 *
94 * @return a status
95 */
Gian Marco Iodice750641d2018-05-08 12:01:57 +010096 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 +010097
98 // Inherited methods overridden:
99 void run() override;
Georgios Pinitase0437672018-05-02 14:07:55 +0100100 void prepare() override;
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100101
102private:
Georgios Pinitas8a94e7c2017-09-15 19:06:47 +0100103 CLMemoryGroup _memory_group;
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100104 CLGEMMInterleave4x4Kernel _interleave_kernel;
105 CLGEMMTranspose1xWKernel _transpose_kernel;
106 CLGEMMMatrixMultiplyKernel _mm_kernel;
107 CLGEMMMatrixAdditionKernel _ma_kernel;
108 CLTensor _tmp_a;
109 CLTensor _tmp_b;
Georgios Pinitas82b51482018-04-24 15:14:12 +0100110 const ICLTensor *_original_b;
Gian Marco Iodiceedfa9f42017-08-15 11:45:22 +0100111 bool _is_interleaved_transposed;
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100112 bool _run_addition;
Gian Marco1d25ed52017-12-16 19:33:50 +0000113 bool _reshape_b_only_on_first_run;
Georgios Pinitase0437672018-05-02 14:07:55 +0100114 bool _is_prepared;
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100115};
116}
117
118#endif /* __ARM_COMPUTE_CLGEMM_H__ */