blob: 258298259f208c22666b60174e2b67b073cedae4 [file] [log] [blame]
Georgios Pinitasd8734b52017-12-22 15:27:52 +00001/*
Michele Di Giorgiod9eaf612020-07-08 11:12:57 +01002 * Copyright (c) 2018-2020 Arm Limited.
Georgios Pinitasd8734b52017-12-22 15:27:52 +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_GRAPH_ELTWISE_LAYER_NODE_H
25#define ARM_COMPUTE_GRAPH_ELTWISE_LAYER_NODE_H
Georgios Pinitasd8734b52017-12-22 15:27:52 +000026
Georgios Pinitasd9eb2752018-04-03 13:44:29 +010027#include "arm_compute/graph/INode.h"
Georgios Pinitasd8734b52017-12-22 15:27:52 +000028
29namespace arm_compute
30{
Georgios Pinitasd9eb2752018-04-03 13:44:29 +010031namespace graph
Georgios Pinitasd8734b52017-12-22 15:27:52 +000032{
Alex Gildayc357c472018-03-21 13:54:09 +000033/** Eltwise Layer node */
Georgios Pinitasd8734b52017-12-22 15:27:52 +000034class EltwiseLayerNode final : public INode
35{
36public:
37 /** Constructor
38 *
Sang-Hoon Park797b76b2020-03-11 23:21:14 +000039 * @param[in] descriptor Containing information for the node described in @ref descriptors::EltwiseLayerDescriptor
Georgios Pinitasd8734b52017-12-22 15:27:52 +000040 */
Sang-Hoon Park797b76b2020-03-11 23:21:14 +000041 EltwiseLayerNode(const descriptors::EltwiseLayerDescriptor &descriptor);
Georgios Pinitasd8734b52017-12-22 15:27:52 +000042 /** Eltwise operation accessor
43 *
44 * @return Eltwise operation that is to be performed by the node
45 */
46 EltwiseOperation eltwise_operation() const;
47
Isabella Gottardi88d5b222018-04-06 12:24:55 +010048 /** Convert policy accessor
49 *
50 * @return Convert policy that is used in the node
51 */
52 ConvertPolicy convert_policy() const;
53
54 /** Rounding policy accessor
55 *
56 * @return Convert policy that is used in the node
57 */
58 RoundingPolicy rounding_policy() const;
59
Giorgio Arena8b2a7d32020-02-11 17:21:31 +000060 /** Returns fused activation
61 *
62 * @return Fused activation
63 */
64 ActivationLayerInfo fused_activation() const;
65
Sheri Zhang16dddd22020-05-27 15:03:48 +010066 /** Returns output quantization info
67 *
68 * @return Output quantization info
69 */
70 QuantizationInfo output_quant_info() const;
71
Giorgio Arena8b2a7d32020-02-11 17:21:31 +000072 /** Sets fused activation
73 *
74 * @param[in] fused_activation Fused activation to set
75 */
76 void set_fused_activation(ActivationLayerInfo fused_activation);
77
Georgios Pinitasd8734b52017-12-22 15:27:52 +000078 // Inherited overridden methods:
Georgios Pinitasd8734b52017-12-22 15:27:52 +000079 NodeType type() const override;
80 bool forward_descriptors() override;
81 TensorDescriptor configure_output(size_t idx) const override;
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010082 void accept(INodeVisitor &v) override;
Georgios Pinitasd8734b52017-12-22 15:27:52 +000083
Giorgio Arena8b2a7d32020-02-11 17:21:31 +000084 static constexpr NodeType node_type = NodeType::EltwiseLayer;
85
Georgios Pinitasd8734b52017-12-22 15:27:52 +000086private:
Sang-Hoon Park797b76b2020-03-11 23:21:14 +000087 descriptors::EltwiseLayerDescriptor descriptor;
Georgios Pinitasd8734b52017-12-22 15:27:52 +000088};
Sheri Zhang16dddd22020-05-27 15:03:48 +010089
90/** Unary Eltwise Layer node */
91class UnaryEltwiseLayerNode final : public INode
92{
93public:
94 /** Constructor
95 *
96 * @param[in] descriptor Containing information for the node described in @ref descriptors::EltwiseLayerDescriptor
97 */
98 UnaryEltwiseLayerNode(const descriptors::UnaryEltwiseLayerDescriptor &descriptor);
99 /** Unary eltwise layer descriptor
100 *
101 * @return Unary eltwise layer descriptor which containing information
102 */
103 descriptors::UnaryEltwiseLayerDescriptor eltwise_descriptor() const;
104
105 /** Sets fused activation
106 *
107 * @param[in] fused_activation Fused activation to set
108 */
109 void set_fused_activation(ActivationLayerInfo fused_activation);
110
111 // Inherited overridden methods:
112 NodeType type() const override;
113 bool forward_descriptors() override;
114 TensorDescriptor configure_output(size_t idx) const override;
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100115 void accept(INodeVisitor &v) override;
Sheri Zhang16dddd22020-05-27 15:03:48 +0100116
117 static constexpr NodeType node_type = NodeType::UnaryEltwiseLayer;
118
119private:
120 descriptors::UnaryEltwiseLayerDescriptor descriptor;
121};
122
Georgios Pinitasd9eb2752018-04-03 13:44:29 +0100123} // namespace graph
Georgios Pinitasd8734b52017-12-22 15:27:52 +0000124} // namespace arm_compute
Michalis Spyrouf4643372019-11-29 16:17:13 +0000125#endif /* ARM_COMPUTE_GRAPH_ELTWISE_LAYER_NODE_H */