blob: 2df2574d6299042639f42081740e595659020d12 [file] [log] [blame]
Georgios Pinitasd8734b52017-12-22 15:27:52 +00001/*
2 * Copyright (c) 2018 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 */
Georgios Pinitasd9eb2752018-04-03 13:44:29 +010024#ifndef __ARM_COMPUTE_GRAPH_INODEVISITOR_H__
25#define __ARM_COMPUTE_GRAPH_INODEVISITOR_H__
Georgios Pinitasd8734b52017-12-22 15:27:52 +000026
Georgios Pinitasd9eb2752018-04-03 13:44:29 +010027#include "arm_compute/graph/nodes/NodesFwd.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{
33/** Node visitor interface */
34class INodeVisitor
35{
36public:
Alex Gildayc357c472018-03-21 13:54:09 +000037 /** Default destructor. */
38 virtual ~INodeVisitor() = default;
39 /** Visit INode.
40 *
41 * @param[in] n Node to visit.
42 */
43 virtual void visit(INode &n) = 0;
44 /** Visit ActivationLayerNode.
45 *
46 * @param[in] n Node to visit.
47 */
48 virtual void visit(ActivationLayerNode &n) = 0;
49 /** Visit BatchNormalizationLayerNode.
50 *
51 * @param[in] n Node to visit.
52 */
53 virtual void visit(BatchNormalizationLayerNode &n) = 0;
Georgios Pinitase2220552018-07-20 13:23:44 +010054 /** Visit ConcatenateLayerNode.
55 *
56 * @param[in] n Node to visit.
57 */
58 virtual void visit(ConcatenateLayerNode &n) = 0;
Alex Gildayc357c472018-03-21 13:54:09 +000059 /** Visit ConstNode.
60 *
61 * @param[in] n Node to visit.
62 */
63 virtual void visit(ConstNode &n) = 0;
64 /** Visit ConvolutionLayerNode.
65 *
66 * @param[in] n Node to visit.
67 */
68 virtual void visit(ConvolutionLayerNode &n) = 0;
Alex Gildayc357c472018-03-21 13:54:09 +000069 /** Visit DepthwiseConvolutionLayerNode.
70 *
71 * @param[in] n Node to visit.
72 */
Georgios Pinitasd8734b52017-12-22 15:27:52 +000073 virtual void visit(DepthwiseConvolutionLayerNode &n) = 0;
Alex Gildayc357c472018-03-21 13:54:09 +000074 /** Visit EltwiseLayerNode.
75 *
76 * @param[in] n Node to visit.
77 */
78 virtual void visit(EltwiseLayerNode &n) = 0;
79 /** Visit FlattenLayerNode.
80 *
81 * @param[in] n Node to visit.
82 */
83 virtual void visit(FlattenLayerNode &n) = 0;
84 /** Visit FullyConnectedLayerNode.
85 *
86 * @param[in] n Node to visit.
87 */
88 virtual void visit(FullyConnectedLayerNode &n) = 0;
89 /** Visit InputNode.
90 *
91 * @param[in] n Node to visit.
92 */
93 virtual void visit(InputNode &n) = 0;
94 /** Visit NormalizationLayerNode.
95 *
96 * @param[in] n Node to visit.
97 */
98 virtual void visit(NormalizationLayerNode &n) = 0;
99 /** Visit OutputNode.
100 *
101 * @param[in] n Node to visit.
102 */
103 virtual void visit(OutputNode &n) = 0;
Georgios Pinitas57c48242018-08-02 13:41:49 +0100104 /** Visit PermuteLayerNode.
105 *
106 * @param[in] n Node to visit.
107 */
108 virtual void visit(PermuteLayerNode &n) = 0;
Alex Gildayc357c472018-03-21 13:54:09 +0000109 /** Visit PoolingLayerNode.
110 *
111 * @param[in] n Node to visit.
112 */
113 virtual void visit(PoolingLayerNode &n) = 0;
Pablo Tello32521432018-11-15 14:43:10 +0000114 /** Visit PriorBoxLayerNode.
115 *
116 * @param[in] n Node to visit.
117 */
118 virtual void visit(PriorBoxLayerNode &n) = 0;
Alex Gildayc357c472018-03-21 13:54:09 +0000119 /** Visit ReshapeLayerNode.
120 *
121 * @param[in] n Node to visit.
122 */
123 virtual void visit(ReshapeLayerNode &n) = 0;
124 /** Visit SoftmaxLayerNode.
125 *
126 * @param[in] n Node to visit.
127 */
128 virtual void visit(SoftmaxLayerNode &n) = 0;
Georgios Pinitasee33ea52018-03-08 16:01:29 +0000129 /** Visit SplitLayerNode.
130 *
131 * @param[in] n Node to visit.
132 */
133 virtual void visit(SplitLayerNode &n) = 0;
Georgios Pinitasd8734b52017-12-22 15:27:52 +0000134};
135
136/** Default visitor implementation
137 *
138 * Implements visit methods by calling a default function.
139 * Inherit from DefaultNodeVisitor if you don't want to provide specific implementation for all nodes.
140 */
141class DefaultNodeVisitor : public INodeVisitor
142{
143public:
Alex Gildayc357c472018-03-21 13:54:09 +0000144 /** Default destructor */
Georgios Pinitasd8734b52017-12-22 15:27:52 +0000145 virtual ~DefaultNodeVisitor() = default;
146
Alex Gildayc357c472018-03-21 13:54:09 +0000147#ifndef DOXYGEN_SKIP_THIS
Georgios Pinitasd8734b52017-12-22 15:27:52 +0000148 // Inherited methods overridden
149 virtual void visit(INode &n) override
150 {
151 default_visit();
152 }
153 virtual void visit(ActivationLayerNode &n) override
154 {
155 default_visit();
156 }
157 virtual void visit(BatchNormalizationLayerNode &n) override
158 {
159 default_visit();
160 }
Georgios Pinitase2220552018-07-20 13:23:44 +0100161 virtual void visit(ConcatenateLayerNode &n) override
162 {
163 default_visit();
164 }
Georgios Pinitasd8734b52017-12-22 15:27:52 +0000165 virtual void visit(ConstNode &n) override
166 {
167 default_visit();
168 }
169 virtual void visit(ConvolutionLayerNode &n) override
170 {
171 default_visit();
172 }
Georgios Pinitasd8734b52017-12-22 15:27:52 +0000173 virtual void visit(DepthwiseConvolutionLayerNode &n) override
174 {
175 default_visit();
176 }
177 virtual void visit(EltwiseLayerNode &n) override
178 {
179 default_visit();
180 }
181 virtual void visit(FlattenLayerNode &n) override
182 {
183 default_visit();
184 }
185 virtual void visit(FullyConnectedLayerNode &n) override
186 {
187 default_visit();
188 }
189 virtual void visit(InputNode &n) override
190 {
191 default_visit();
192 }
193 virtual void visit(NormalizationLayerNode &n) override
194 {
195 default_visit();
196 }
197 virtual void visit(OutputNode &n) override
198 {
199 default_visit();
200 }
Georgios Pinitas57c48242018-08-02 13:41:49 +0100201 virtual void visit(PermuteLayerNode &n) override
202 {
203 default_visit();
204 }
Georgios Pinitasd8734b52017-12-22 15:27:52 +0000205 virtual void visit(PoolingLayerNode &n) override
206 {
207 default_visit();
208 }
Pablo Tello32521432018-11-15 14:43:10 +0000209 virtual void visit(PriorBoxLayerNode &n) override
210 {
211 default_visit();
212 }
Georgios Pinitasd8734b52017-12-22 15:27:52 +0000213 virtual void visit(ReshapeLayerNode &n) override
214 {
215 default_visit();
216 }
217 virtual void visit(SoftmaxLayerNode &n) override
218 {
219 default_visit();
220 }
Georgios Pinitasee33ea52018-03-08 16:01:29 +0000221 virtual void visit(SplitLayerNode &n) override
222 {
223 default_visit();
224 }
Alex Gildayc357c472018-03-21 13:54:09 +0000225#endif /* DOXYGEN_SKIP_THIS */
Georgios Pinitasd8734b52017-12-22 15:27:52 +0000226
227 /** Function to be overloaded by the client and implement default behavior for the
228 * non-overloaded visitors
229 */
230 virtual void default_visit() = 0;
231};
Georgios Pinitasd9eb2752018-04-03 13:44:29 +0100232} // namespace graph
Georgios Pinitasd8734b52017-12-22 15:27:52 +0000233} // namespace arm_compute
Georgios Pinitasd9eb2752018-04-03 13:44:29 +0100234#endif /* __ARM_COMPUTE_GRAPH_INODEVISITOR_H__ */