blob: 2765b77b7d2fbc1c389332ed5ff0689b755ef36c [file] [log] [blame]
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001/*
2 * Copyright (c) 2016, 2017 ARM Limited.
3 *
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
27#include "arm_compute/core/CL/kernels/CLFillBorderKernel.h"
28#include "arm_compute/core/CL/kernels/CLGEMMInterleave4x4Kernel.h"
29#include "arm_compute/core/CL/kernels/CLGEMMMatrixAdditionKernel.h"
30#include "arm_compute/core/CL/kernels/CLGEMMMatrixMultiplyKernel.h"
31#include "arm_compute/core/CL/kernels/CLGEMMTranspose1xWKernel.h"
Georgios Pinitas8a94e7c2017-09-15 19:06:47 +010032#include "arm_compute/runtime/CL/CLMemoryGroup.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010033#include "arm_compute/runtime/CL/CLTensor.h"
34#include "arm_compute/runtime/IFunction.h"
Georgios Pinitas8a94e7c2017-09-15 19:06:47 +010035#include "arm_compute/runtime/IMemoryManager.h"
36
37#include <memory>
Anthony Barbier6ff3b192017-09-04 18:44:23 +010038
39namespace arm_compute
40{
41class ICLTensor;
42
Gian Marco Iodice3a3066b2017-06-23 13:38:14 +010043/** Basic function to execute GEMM on OpenCL. This function calls the following OpenCL kernels:
Anthony Barbier6ff3b192017-09-04 18:44:23 +010044 *
45 * -# @ref CLGEMMInterleave4x4Kernel (if the output tensor is a matrix)
46 * -# @ref CLGEMMTranspose1xWKernel (if the output tensor is a matrix)
47 * -# @ref CLGEMMMatrixMultiplyKernel
48 * -# @ref CLGEMMMatrixAdditionKernel (if c != nullptr and beta != 0.0)
49 *
50 */
51class CLGEMM : public IFunction
52{
53public:
54 /** Default constructor. */
Georgios Pinitas8a94e7c2017-09-15 19:06:47 +010055 CLGEMM(std::shared_ptr<IMemoryManager> memory_manager = nullptr);
Anthony Barbier6ff3b192017-09-04 18:44:23 +010056 /** Initialise the kernel's inputs and output
57 *
58 * @note GEMM: General Matrix Multiply - [alpha * A * B + beta * C].
59 *
Gian Marco Iodice3a3066b2017-06-23 13:38:14 +010060 * @note All tensors must have the same data type.
Anthony Barbier6ff3b192017-09-04 18:44:23 +010061 *
62 * @note Whilst the first input tensor can be a vector, the second input tensor must be at least a matrix
63 *
Gian Marco Iodice8a383692017-07-03 17:41:47 +010064 * @param[in] a First input tensor (Matrix or Vector A). Data types supported: QS8/QS16/F16/F32
Anthony Barbier6ff3b192017-09-04 18:44:23 +010065 * @param[in] b Second input tensor (Matrix B). Data type supported: same as @p a.
66 * @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.
67 * @param[out] output Output tensor. Data type supported: same as @p a
68 * @param[in] alpha Weight of the matrix product
69 * @param[in] beta Weight of matrix C
70 */
71 void configure(const ICLTensor *a, const ICLTensor *b, const ICLTensor *c, ICLTensor *output, float alpha, float beta);
72
73 // Inherited methods overridden:
74 void run() override;
75
76private:
Georgios Pinitas8a94e7c2017-09-15 19:06:47 +010077 CLMemoryGroup _memory_group;
Anthony Barbier6ff3b192017-09-04 18:44:23 +010078 CLGEMMInterleave4x4Kernel _interleave_kernel;
79 CLGEMMTranspose1xWKernel _transpose_kernel;
80 CLGEMMMatrixMultiplyKernel _mm_kernel;
81 CLGEMMMatrixAdditionKernel _ma_kernel;
82 CLTensor _tmp_a;
83 CLTensor _tmp_b;
Gian Marco Iodiceedfa9f42017-08-15 11:45:22 +010084 bool _is_interleaved_transposed;
Anthony Barbier6ff3b192017-09-04 18:44:23 +010085 bool _run_addition;
86};
87}
88
89#endif /* __ARM_COMPUTE_CLGEMM_H__ */