blob: 7f9e3181bc488b826e443375cba130c2dfc44930 [file] [log] [blame]
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001/*
Georgios Pinitas78c00902018-01-09 17:33:11 +00002 * Copyright (c) 2017-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_NEGEMM_H__
25#define __ARM_COMPUTE_NEGEMM_H__
26
27#include "arm_compute/core/NEON/kernels/NEFillBorderKernel.h"
28#include "arm_compute/core/NEON/kernels/NEGEMMInterleave4x4Kernel.h"
29#include "arm_compute/core/NEON/kernels/NEGEMMMatrixAdditionKernel.h"
30#include "arm_compute/core/NEON/kernels/NEGEMMMatrixMultiplyKernel.h"
31#include "arm_compute/core/NEON/kernels/NEGEMMTranspose1xWKernel.h"
32#include "arm_compute/runtime/IFunction.h"
Georgios Pinitas658039b2017-09-15 16:30:50 +010033#include "arm_compute/runtime/IMemoryManager.h"
34#include "arm_compute/runtime/MemoryGroup.h"
Anthony Barbier71d9b572018-07-06 17:05:59 +010035#include "arm_compute/runtime/NEON/functions/NEGEMMAssemblyDispatch.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010036#include "arm_compute/runtime/Tensor.h"
37
Georgios Pinitas658039b2017-09-15 16:30:50 +010038#include <memory>
39
Anthony Barbier6ff3b192017-09-04 18:44:23 +010040namespace arm_compute
41{
42/** Basic function to execute GEMM on NEON. This function calls the following NEON kernels:
43 *
44 * -# @ref NEGEMMInterleave4x4Kernel (if the output tensor is a matrix)
45 * -# @ref NEGEMMTranspose1xWKernel (if the output tensor is a matrix)
46 * -# @ref NEGEMMMatrixMultiplyKernel
47 * -# @ref NEGEMMMatrixAdditionKernel (if c != nullptr and beta != 0.0)
48 *
49 */
50class NEGEMM : public IFunction
51{
52public:
53 /** Constructor */
Georgios Pinitas658039b2017-09-15 16:30:50 +010054 NEGEMM(std::shared_ptr<IMemoryManager> memory_manager = nullptr);
Georgios Pinitas72219332018-06-05 14:56:06 +010055 /** Prevent instances of this class from being copied (As this class contains pointers) */
56 NEGEMM(const NEGEMM &) = delete;
57 /** Default move constructor */
58 NEGEMM(NEGEMM &&) = default;
59 /** Prevent instances of this class from being copied (As this class contains pointers) */
60 NEGEMM &operator=(const NEGEMM &) = delete;
61 /** Default move assignment operator */
62 NEGEMM &operator=(NEGEMM &&) = default;
Anthony Barbier6ff3b192017-09-04 18:44:23 +010063 /** Initialise the kernel's inputs, output
64 *
65 * @note GEMM: General Matrix Multiply - [alpha * A * B + beta * C].
66 * @note GEMM: The tensors a, b, c, d must have the same data type. You should not mix data types when calling this function.
67 *
Vidhya Sudhan Loganathan7485d5a2018-07-04 09:34:00 +010068 * @param[in] a First input tensor (Matrix A or Vector A). Data type supported: F16/F32
Gian Marco1d25ed52017-12-16 19:33:50 +000069 * @param[in] b Second input tensor (Matrix B). Data type supported: same as @p a
70 * @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
71 * @param[out] d Output tensor. Data type supported: same as @p a
72 * @param[in] alpha Weight of the matrix product
73 * @param[in] beta Weight of matrix C
74 * @param[in] gemm_info (Optional) Specifies if the matrix A and/or matrix B have been reshaped and
75 * if the reshape of matrix B should happen only for the first run
Anthony Barbier6ff3b192017-09-04 18:44:23 +010076 */
Gian Marco1d25ed52017-12-16 19:33:50 +000077 void configure(const ITensor *a, const ITensor *b, const ITensor *c, ITensor *d, float alpha, float beta, const GEMMInfo &gemm_info = GEMMInfo());
Giorgio Arenaa855af12018-07-16 17:20:38 +010078 /** Static function to check if given info will lead to a valid configuration of @ref NEGEMM.
79 *
80 * @param[in] a First input tensor info (Matrix or Vector A). Data types supported: F16/F32
81 * @param[in] b Second input tensor info (Matrix B). Data type supported: same as @p a.
82 * @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.
83 * @param[out] output Output tensor info. Data type supported: same as @p a
84 * @param[in] alpha Weight of the matrix product
85 * @param[in] beta Weight of matrix C
86 * @param[in] gemm_info (Optional) Specifies if the matrix A and/or matrix B have been reshaped and
87 * if the reshape of matrix B should happen only for the first run
88 *
89 * @return a status
90 */
91 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 +010092
93 // Inherited methods overridden:
94 void run() override;
Georgios Pinitas72219332018-06-05 14:56:06 +010095 void prepare() override;
Anthony Barbier6ff3b192017-09-04 18:44:23 +010096
97private:
Pablo Telloeb82fd22018-02-23 13:43:50 +000098 MemoryGroup _memory_group;
99 NEGEMMInterleave4x4Kernel _interleave_kernel;
100 NEGEMMTranspose1xWKernel _transpose_kernel;
101 NEGEMMMatrixMultiplyKernel _mm_kernel;
Anthony Barbiereaefd002018-07-20 17:49:35 +0100102 NEGEMMAssemblyDispatch _asm_glue;
Pablo Telloeb82fd22018-02-23 13:43:50 +0000103 NEGEMMMatrixAdditionKernel _ma_kernel;
104 Tensor _tmp_a;
105 Tensor _tmp_b;
Georgios Pinitas72219332018-06-05 14:56:06 +0100106 const ITensor *_original_b;
Pablo Telloeb82fd22018-02-23 13:43:50 +0000107 bool _run_vector_matrix_multiplication;
108 bool _run_addition;
Pablo Telloeb82fd22018-02-23 13:43:50 +0000109 bool _reshape_b_only_on_first_run;
Georgios Pinitas72219332018-06-05 14:56:06 +0100110 bool _is_prepared;
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100111};
Georgios Pinitas72219332018-06-05 14:56:06 +0100112} // namespace arm_compute
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100113#endif /*__ARM_COMPUTE_NEGEMM_H__ */