blob: 59eddda4aa8b63260794833bd2fe944cad75b1b2 [file] [log] [blame]
Georgios Pinitasd8734b52017-12-22 15:27:52 +00001/*
giuros01acce5042019-02-21 17:32:34 +00002 * Copyright (c) 2018-2019 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_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;
Isabella Gottardicd4e9ab2019-11-05 17:50:27 +000074 /** Visit DequantizationLayerNode.
75 *
76 * @param[in] n Node to visit.
77 */
78 virtual void visit(DequantizationLayerNode &n) = 0;
Isabella Gottardi7234ed82018-11-27 08:51:10 +000079 /** Visit DetectionOutputLayerNode.
80 *
81 * @param[in] n Node to visit.
82 */
83 virtual void visit(DetectionOutputLayerNode &n) = 0;
Isabella Gottardia7acb3c2019-01-08 13:48:44 +000084 /** Visit DetectionPostProcessLayerNode.
85 *
86 * @param[in] n Node to visit.
87 */
88 virtual void visit(DetectionPostProcessLayerNode &n) = 0;
Alex Gildayc357c472018-03-21 13:54:09 +000089 /** Visit EltwiseLayerNode.
90 *
91 * @param[in] n Node to visit.
92 */
93 virtual void visit(EltwiseLayerNode &n) = 0;
94 /** Visit FlattenLayerNode.
95 *
96 * @param[in] n Node to visit.
97 */
98 virtual void visit(FlattenLayerNode &n) = 0;
99 /** Visit FullyConnectedLayerNode.
100 *
101 * @param[in] n Node to visit.
102 */
103 virtual void visit(FullyConnectedLayerNode &n) = 0;
giuros01acce5042019-02-21 17:32:34 +0000104 /** Visit FusedConvolutionBatchNormalizationNode.
105 *
106 * @param[in] n Node to visit.
107 */
108 virtual void visit(FusedConvolutionBatchNormalizationNode &n) = 0;
Manuel Bottinibffb41e2019-06-20 16:00:27 +0100109 /** Visit FusedDepthwiseConvolutionBatchNormalizationNode.
110 *
111 * @param[in] n Node to visit.
112 */
113 virtual void visit(FusedDepthwiseConvolutionBatchNormalizationNode &n) = 0;
Alex Gildayc357c472018-03-21 13:54:09 +0000114 /** Visit InputNode.
115 *
116 * @param[in] n Node to visit.
117 */
118 virtual void visit(InputNode &n) = 0;
119 /** Visit NormalizationLayerNode.
120 *
121 * @param[in] n Node to visit.
122 */
123 virtual void visit(NormalizationLayerNode &n) = 0;
124 /** Visit OutputNode.
125 *
126 * @param[in] n Node to visit.
127 */
128 virtual void visit(OutputNode &n) = 0;
Georgios Pinitas57c48242018-08-02 13:41:49 +0100129 /** Visit PermuteLayerNode.
130 *
131 * @param[in] n Node to visit.
132 */
133 virtual void visit(PermuteLayerNode &n) = 0;
Alex Gildayc357c472018-03-21 13:54:09 +0000134 /** Visit PoolingLayerNode.
135 *
136 * @param[in] n Node to visit.
137 */
138 virtual void visit(PoolingLayerNode &n) = 0;
Pablo Tello32521432018-11-15 14:43:10 +0000139 /** Visit PriorBoxLayerNode.
140 *
141 * @param[in] n Node to visit.
142 */
143 virtual void visit(PriorBoxLayerNode &n) = 0;
Isabella Gottardi3db1ba92019-05-17 12:35:20 +0100144 /** Visit QuantizationLayerNode.
145 *
146 * @param[in] n Node to visit.
147 */
148 virtual void visit(QuantizationLayerNode &n) = 0;
Alex Gildayc357c472018-03-21 13:54:09 +0000149 /** Visit ReshapeLayerNode.
150 *
151 * @param[in] n Node to visit.
152 */
153 virtual void visit(ReshapeLayerNode &n) = 0;
154 /** Visit SoftmaxLayerNode.
155 *
156 * @param[in] n Node to visit.
157 */
158 virtual void visit(SoftmaxLayerNode &n) = 0;
Georgios Pinitasee33ea52018-03-08 16:01:29 +0000159 /** Visit SplitLayerNode.
160 *
161 * @param[in] n Node to visit.
162 */
163 virtual void visit(SplitLayerNode &n) = 0;
Michele Di Giorgioec699752019-03-22 15:25:32 +0000164 /** Visit StackLayerNode.
165 *
166 * @param[in] n Node to visit.
167 */
168 virtual void visit(StackLayerNode &n) = 0;
Georgios Pinitasd8734b52017-12-22 15:27:52 +0000169};
170
171/** Default visitor implementation
172 *
173 * Implements visit methods by calling a default function.
174 * Inherit from DefaultNodeVisitor if you don't want to provide specific implementation for all nodes.
175 */
176class DefaultNodeVisitor : public INodeVisitor
177{
178public:
Alex Gildayc357c472018-03-21 13:54:09 +0000179 /** Default destructor */
Georgios Pinitasd8734b52017-12-22 15:27:52 +0000180 virtual ~DefaultNodeVisitor() = default;
181
Alex Gildayc357c472018-03-21 13:54:09 +0000182#ifndef DOXYGEN_SKIP_THIS
Georgios Pinitasd8734b52017-12-22 15:27:52 +0000183 // Inherited methods overridden
Michalis Spyrou6bff1952019-10-02 17:22:11 +0100184 virtual void visit(INode &) override
Georgios Pinitasd8734b52017-12-22 15:27:52 +0000185 {
186 default_visit();
187 }
Michalis Spyrou6bff1952019-10-02 17:22:11 +0100188 virtual void visit(ActivationLayerNode &) override
Georgios Pinitasd8734b52017-12-22 15:27:52 +0000189 {
190 default_visit();
191 }
Michalis Spyrou6bff1952019-10-02 17:22:11 +0100192 virtual void visit(BatchNormalizationLayerNode &) override
Georgios Pinitasd8734b52017-12-22 15:27:52 +0000193 {
194 default_visit();
195 }
Michalis Spyrou6bff1952019-10-02 17:22:11 +0100196 virtual void visit(ConcatenateLayerNode &) override
Georgios Pinitase2220552018-07-20 13:23:44 +0100197 {
198 default_visit();
199 }
Michalis Spyrou6bff1952019-10-02 17:22:11 +0100200 virtual void visit(ConstNode &) override
Georgios Pinitasd8734b52017-12-22 15:27:52 +0000201 {
202 default_visit();
203 }
Michalis Spyrou6bff1952019-10-02 17:22:11 +0100204 virtual void visit(ConvolutionLayerNode &) override
Georgios Pinitasd8734b52017-12-22 15:27:52 +0000205 {
206 default_visit();
207 }
Isabella Gottardicd4e9ab2019-11-05 17:50:27 +0000208 virtual void visit(DequantizationLayerNode &) override
209 {
210 default_visit();
211 }
Michalis Spyrou6bff1952019-10-02 17:22:11 +0100212 virtual void visit(DetectionOutputLayerNode &) override
Isabella Gottardi7234ed82018-11-27 08:51:10 +0000213 {
214 default_visit();
215 }
Michalis Spyrou6bff1952019-10-02 17:22:11 +0100216 virtual void visit(DetectionPostProcessLayerNode &) override
Isabella Gottardia7acb3c2019-01-08 13:48:44 +0000217 {
218 default_visit();
219 }
Michalis Spyrou6bff1952019-10-02 17:22:11 +0100220 virtual void visit(DepthwiseConvolutionLayerNode &) override
Georgios Pinitasd8734b52017-12-22 15:27:52 +0000221 {
222 default_visit();
223 }
Michalis Spyrou6bff1952019-10-02 17:22:11 +0100224 virtual void visit(EltwiseLayerNode &) override
Georgios Pinitasd8734b52017-12-22 15:27:52 +0000225 {
226 default_visit();
227 }
Michalis Spyrou6bff1952019-10-02 17:22:11 +0100228 virtual void visit(FlattenLayerNode &) override
Georgios Pinitasd8734b52017-12-22 15:27:52 +0000229 {
230 default_visit();
231 }
Michalis Spyrou6bff1952019-10-02 17:22:11 +0100232 virtual void visit(FullyConnectedLayerNode &) override
Georgios Pinitasd8734b52017-12-22 15:27:52 +0000233 {
234 default_visit();
235 }
Michalis Spyrou6bff1952019-10-02 17:22:11 +0100236 virtual void visit(FusedConvolutionBatchNormalizationNode &) override
giuros01acce5042019-02-21 17:32:34 +0000237 {
238 default_visit();
239 }
Michalis Spyrou6bff1952019-10-02 17:22:11 +0100240 virtual void visit(FusedDepthwiseConvolutionBatchNormalizationNode &) override
Manuel Bottinibffb41e2019-06-20 16:00:27 +0100241 {
242 default_visit();
243 }
Michalis Spyrou6bff1952019-10-02 17:22:11 +0100244 virtual void visit(InputNode &) override
Georgios Pinitasd8734b52017-12-22 15:27:52 +0000245 {
246 default_visit();
247 }
Michalis Spyrou6bff1952019-10-02 17:22:11 +0100248 virtual void visit(NormalizationLayerNode &) override
Georgios Pinitasd8734b52017-12-22 15:27:52 +0000249 {
250 default_visit();
251 }
Michalis Spyrou6bff1952019-10-02 17:22:11 +0100252 virtual void visit(OutputNode &) override
Georgios Pinitasd8734b52017-12-22 15:27:52 +0000253 {
254 default_visit();
255 }
Michalis Spyrou6bff1952019-10-02 17:22:11 +0100256 virtual void visit(PermuteLayerNode &) override
Georgios Pinitas57c48242018-08-02 13:41:49 +0100257 {
258 default_visit();
259 }
Michalis Spyrou6bff1952019-10-02 17:22:11 +0100260 virtual void visit(PoolingLayerNode &) override
Georgios Pinitasd8734b52017-12-22 15:27:52 +0000261 {
262 default_visit();
263 }
Michalis Spyrou6bff1952019-10-02 17:22:11 +0100264 virtual void visit(PriorBoxLayerNode &) override
Pablo Tello32521432018-11-15 14:43:10 +0000265 {
266 default_visit();
267 }
Michalis Spyrou6bff1952019-10-02 17:22:11 +0100268 virtual void visit(QuantizationLayerNode &) override
Isabella Gottardi3db1ba92019-05-17 12:35:20 +0100269 {
270 default_visit();
271 }
Michalis Spyrou6bff1952019-10-02 17:22:11 +0100272 virtual void visit(ReshapeLayerNode &) override
Georgios Pinitasd8734b52017-12-22 15:27:52 +0000273 {
274 default_visit();
275 }
Michalis Spyrou6bff1952019-10-02 17:22:11 +0100276 virtual void visit(SoftmaxLayerNode &) override
Georgios Pinitasd8734b52017-12-22 15:27:52 +0000277 {
278 default_visit();
279 }
Michalis Spyrou6bff1952019-10-02 17:22:11 +0100280 virtual void visit(SplitLayerNode &) override
Georgios Pinitasee33ea52018-03-08 16:01:29 +0000281 {
282 default_visit();
283 }
Michalis Spyrou6bff1952019-10-02 17:22:11 +0100284 virtual void visit(StackLayerNode &) override
Michele Di Giorgioec699752019-03-22 15:25:32 +0000285 {
286 default_visit();
287 }
Alex Gildayc357c472018-03-21 13:54:09 +0000288#endif /* DOXYGEN_SKIP_THIS */
Georgios Pinitasd8734b52017-12-22 15:27:52 +0000289
290 /** Function to be overloaded by the client and implement default behavior for the
291 * non-overloaded visitors
292 */
293 virtual void default_visit() = 0;
294};
Georgios Pinitasd9eb2752018-04-03 13:44:29 +0100295} // namespace graph
Georgios Pinitasd8734b52017-12-22 15:27:52 +0000296} // namespace arm_compute
Michalis Spyrouf4643372019-11-29 16:17:13 +0000297#endif /* ARM_COMPUTE_GRAPH_INODEVISITOR_H */