aboutsummaryrefslogtreecommitdiff
path: root/src/graph/printers/DotGraphPrinter.cpp
diff options
context:
space:
mode:
authorramelg01 <ramy.elgammal@arm.com>2021-11-26 19:12:40 +0000
committerRamy Elgammal <ramy.elgammal@arm.com>2021-12-09 13:55:06 +0000
commitb75d62430e9871fcc6f19cf82879f65d2e7fb201 (patch)
tree5914cb360f90f1f34ca1eb27ef6946b4b55e257a /src/graph/printers/DotGraphPrinter.cpp
parent78baa48308cba4101b4bcb4680f2f4ca90aeefd7 (diff)
downloadComputeLibrary-b75d62430e9871fcc6f19cf82879f65d2e7fb201.tar.gz
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 <ramy.elgammal@arm.com> Change-Id: I5b2d32cad00f710fd744cb5aa2d59fd7e5c97e0a Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/6766 Tested-by: Arm Jenkins <bsgcomp@arm.com> Comments-Addressed: Arm Jenkins <bsgcomp@arm.com> Reviewed-by: Sheri Zhang <sheri.zhang@arm.com>
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);