blob: 62d782215bae9f9d447b1e843ef8bc1b19559754 [file] [log] [blame]
Matthew Benthamf1aeab92023-05-30 13:35:34 +00001/*
2 * Copyright (c) 2016-2023 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_MATMULINFO_H
25#define ARM_COMPUTE_MATMULINFO_H
26
27#include "arm_compute/core/Coordinates.h"
28#include "arm_compute/core/Size2D.h"
29#include "arm_compute/core/Size3D.h"
30#include "arm_compute/core/Strides.h"
31#include "arm_compute/core/TensorShape.h"
32#include "arm_compute/core/experimental/IPostOp.h"
33#include "arm_compute/core/utils/misc/Macros.h"
34#include "support/Bfloat16.h"
35#include "support/Half.h"
36
37#include <cmath>
38#include <cstddef>
39#include <cstdint>
40#include <map>
41#include <string>
42#include <utility>
43
44namespace arm_compute
45{
46/** Class for holding information related to matrix multiplication function
47 */
48class MatMulInfo
49{
50public:
51 /* Get Adjoint LHS flag value */
52 bool adj_lhs() const
53 {
54 return _adj_lhs;
55 }
56 /* Get Adjoint RHS flag value */
57 bool adj_rhs() const
58 {
59 return _adj_rhs;
60 }
61 /* Get Fused Activation Layer Info */
62 ActivationLayerInfo fused_activation() const
63 {
64 return _fused_act;
65 }
66 /* Set Adjoint LHS flag */
67 MatMulInfo &adj_lhs(bool adj_lhs)
68 {
69 _adj_lhs = adj_lhs;
70 return *this;
71 }
72 /* Set Adjoint RHS flag */
73 MatMulInfo &adj_rhs(bool adj_rhs)
74 {
75 _adj_rhs = adj_rhs;
76 return *this;
77 }
78 /* Set Fused Activation Layer Info */
79 MatMulInfo &fused_activation(const ActivationLayerInfo &act_info)
80 {
81 _fused_act = act_info;
82 return *this;
83 }
84
85private:
86 bool _adj_lhs{ false };
87 bool _adj_rhs{ false };
88 ActivationLayerInfo _fused_act{}; // disabled by default
89};
90} // namespace arm_compute
91#endif /* ARM_COMPUTE_MATMULINFO_H */