aboutsummaryrefslogtreecommitdiff
path: root/arm_compute/graph/INodeVisitor.h
diff options
context:
space:
mode:
Diffstat (limited to 'arm_compute/graph/INodeVisitor.h')
-rw-r--r--arm_compute/graph/INodeVisitor.h11
1 files changed, 10 insertions, 1 deletions
diff --git a/arm_compute/graph/INodeVisitor.h b/arm_compute/graph/INodeVisitor.h
index 573d642892..842ca4bfb3 100644
--- a/arm_compute/graph/INodeVisitor.h
+++ b/arm_compute/graph/INodeVisitor.h
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2018 ARM Limited.
+ * Copyright (c) 2018-2019 ARM Limited.
*
* SPDX-License-Identifier: MIT
*
@@ -91,6 +91,11 @@ public:
* @param[in] n Node to visit.
*/
virtual void visit(FullyConnectedLayerNode &n) = 0;
+ /** Visit FusedConvolutionBatchNormalizationNode.
+ *
+ * @param[in] n Node to visit.
+ */
+ virtual void visit(FusedConvolutionBatchNormalizationNode &n) = 0;
/** Visit InputNode.
*
* @param[in] n Node to visit.
@@ -195,6 +200,10 @@ public:
{
default_visit();
}
+ virtual void visit(FusedConvolutionBatchNormalizationNode &n) override
+ {
+ default_visit();
+ }
virtual void visit(InputNode &n) override
{
default_visit();