blob: f5635dd58c2b5255fba8e43b2891a88cb5979d94 [file] [log] [blame]
Michalis Spyroub7b31532017-11-23 12:10:21 +00001/*
Michalis Spyrouf4643372019-11-29 16:17:13 +00002 * Copyright (c) 2016-2019 ARM Limited.
Michalis Spyroub7b31532017-11-23 12:10:21 +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_NEGEMMMATRIXVECTORMULTIPLYKERNEL_H_
25#define ARM_COMPUTE_NEGEMMMATRIXVECTORMULTIPLYKERNEL_H_
Michalis Spyroub7b31532017-11-23 12:10:21 +000026
27#include "arm_compute/core/NEON/INESimpleKernel.h"
28
29namespace arm_compute
30{
31class ITensor;
32
Alex Gildayc357c472018-03-21 13:54:09 +000033/** Interface for the GEMM matrix vector multiply kernel. **/
Michalis Spyroub7b31532017-11-23 12:10:21 +000034class NEGEMMMatrixVectorMultiplyKernel : public INESimpleKernel
35{
36public:
Anthony Barbiere8a49832018-01-18 10:04:05 +000037 const char *name() const override
38 {
39 return "NEGEMMMatrixVectorMultiplyKernel";
40 }
Michalis Spyroub7b31532017-11-23 12:10:21 +000041 /** Default constructor */
42 NEGEMMMatrixVectorMultiplyKernel();
43 /** Prevent instances of this class from being copied (As this class contains pointers) */
44 NEGEMMMatrixVectorMultiplyKernel(const NEGEMMMatrixVectorMultiplyKernel &) = delete;
45 /** Prevent instances of this class from being copied (As this class contains pointers) */
46 NEGEMMMatrixVectorMultiplyKernel &operator=(const NEGEMMMatrixVectorMultiplyKernel &) = delete;
47 /** Allow instances of this class to be moved */
48 NEGEMMMatrixVectorMultiplyKernel(NEGEMMMatrixVectorMultiplyKernel &&) = default;
49 /** Allow instances of this class to be moved */
50 NEGEMMMatrixVectorMultiplyKernel &operator=(NEGEMMMatrixVectorMultiplyKernel &&) = default;
51 /** Initialise the kernel's input and output.
52 *
Michele Di Giorgiodeb3ac42019-12-20 10:02:17 +000053 * @param[in] input0 First Input tensor. Data types supported: QASYMM8/QASYMM8_SIGNED/F16/F32
Michalis Spyroub7b31532017-11-23 12:10:21 +000054 * @param[in] input1 Second Input tensor. Data types supported: same as @p input.
Michele Di Giorgiodeb3ac42019-12-20 10:02:17 +000055 * @param[out] output Output tensor which stores the interleaved matrix. Data type supported: same as @p input, S32 for QASYMM8/QASYMM8_SIGNED input.
Michalis Spyroub7b31532017-11-23 12:10:21 +000056 */
57 void configure(const ITensor *input0, const ITensor *input1, ITensor *output);
58
Abe Mbise7784c832018-05-31 16:48:41 +010059 /** Static function to check if given info will lead to a valid configuration of @ref NEGEMMMatrixVectorMultiplyKernel
60 *
Michele Di Giorgiodeb3ac42019-12-20 10:02:17 +000061 * @param[in] input0 First Input tensor. Data types supported: QASYMM8/QASYMM8_SIGNED/F16/F32
Abe Mbise7784c832018-05-31 16:48:41 +010062 * @param[in] input1 Second Input tensor. Data types supported: same as @p input.
Michele Di Giorgiodeb3ac42019-12-20 10:02:17 +000063 * @param[in] output Output tensor which stores the interleaved matrix. Data type supported: same as @p input, S32 for QASYMM8/QASYMM8_SIGNED input.
Abe Mbise7784c832018-05-31 16:48:41 +010064 *
65 * @return a status
66 */
67 static Status validate(const ITensorInfo *input0, const ITensorInfo *input1, const ITensorInfo *output);
68
Michalis Spyroub7b31532017-11-23 12:10:21 +000069 // Inherited methods overridden:
70 void run(const Window &window, const ThreadInfo &info) override;
Georgios Pinitasd05dce42018-01-22 16:29:17 +000071 BorderSize border_size() const override;
Michalis Spyroub7b31532017-11-23 12:10:21 +000072
73private:
Georgios Pinitasd05dce42018-01-22 16:29:17 +000074 /** Template function to run the matrix vector multiplication
75 *
76 * @tparam I0 Input 0 type
77 * @tparam I1 Input 1 type
78 * @tparam O Output type
79 *
80 * @param[in] window_in Input region. (Must be a valid region of the window returned by window()).
81 * @param[in] window_w Weights region. (Must be a valid region of the window returned by window()).
82 * @param[in] window_out Output region.(Must be a valid region of the window returned by window()).
83 */
84 template <typename I0, typename I1, typename O>
85 void matrix_vector_multiply(const Window &window_in, const Window &window_w, const Window &window_out);
86 /** Common signature for all the specialised matrix vector multiplication functions */
87 using GEMMMatrixVectorMultiplyFunctionPtr = void (NEGEMMMatrixVectorMultiplyKernel::*)(const Window &window_in,
88 const Window &window_w,
89 const Window &window_out);
90
91private:
92 GEMMMatrixVectorMultiplyFunctionPtr _func;
93 const ITensor *_input0;
94 const ITensor *_input1;
95 ITensor *_output;
96 BorderSize _border_size;
Michalis Spyroub7b31532017-11-23 12:10:21 +000097};
98} // namespace arm_compute
Michalis Spyrouf4643372019-11-29 16:17:13 +000099#endif /*ARM_COMPUTE_NEGEMMMATRIXVECTORMULTIPLYKERNEL_H_*/