aboutsummaryrefslogtreecommitdiff
path: root/src/graph/printers/DotGraphPrinter.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/graph/printers/DotGraphPrinter.cpp')
-rw-r--r--src/graph/printers/DotGraphPrinter.cpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/graph/printers/DotGraphPrinter.cpp b/src/graph/printers/DotGraphPrinter.cpp
index 47371e34d5..1071d50197 100644
--- a/src/graph/printers/DotGraphPrinter.cpp
+++ b/src/graph/printers/DotGraphPrinter.cpp
@@ -85,6 +85,14 @@ void DotGraphVisitor::visit(FusedConvolutionBatchNormalizationNode &n)
_info = ss.str();
}
+void DotGraphVisitor::visit(FusedConvolutionBatchNormalizationWithPostOpsNode &n)
+{
+ ARM_COMPUTE_UNUSED(n);
+ std::stringstream ss;
+ ss << "FusedConvolutionBatchNormalizationWithPostOpsNode";
+ _info = ss.str();
+}
+
void DotGraphVisitor::visit(FusedConvolutionWithPostOpNode &n)
{
ARM_COMPUTE_UNUSED(n);