From b75d62430e9871fcc6f19cf82879f65d2e7fb201 Mon Sep 17 00:00:00 2001 From: ramelg01 Date: Fri, 26 Nov 2021 19:12:40 +0000 Subject: Graph Fusion With Post Ops Fix - Fusing ConvolutionBatchNormalization Nodes with post ops (activation or element wise ops) Resolves: COMPMID-4982 Signed-off-by: Ramy Elgammal Change-Id: I5b2d32cad00f710fd744cb5aa2d59fd7e5c97e0a Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/6766 Tested-by: Arm Jenkins Comments-Addressed: Arm Jenkins Reviewed-by: Sheri Zhang --- src/graph/printers/DotGraphPrinter.cpp | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'src/graph/printers/DotGraphPrinter.cpp') 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); -- cgit v1.2.1