aboutsummaryrefslogtreecommitdiff
path: root/src/graph/printers/DotGraphPrinter.cpp
diff options
context:
space:
mode:
authorManuel Bottini <manuel.bottini@arm.com>2019-06-20 16:00:27 +0100
committerManuel Bottini <manuel.bottini@arm.com>2019-07-11 16:52:18 +0000
commitbffb41e06c1276af00e1605ef934d05fa61f7127 (patch)
tree7c9cfe90e82a8107ad8e32272c4e40c4b63182ef /src/graph/printers/DotGraphPrinter.cpp
parentc1b76faf6be5c33dbf3269faea95e185ac37992f (diff)
downloadComputeLibrary-bffb41e06c1276af00e1605ef934d05fa61f7127.tar.gz
COMPMID-2273: Fuse Batch Normalization with Depthwise Convolution layer at graph level (only for CL)
Change-Id: I1d941c6e66722f39583bf68148c980bb28ff89a1 Signed-off-by: Manuel Bottini <manuel.bottini@arm.com> Reviewed-on: https://review.mlplatform.org/c/1423 Comments-Addressed: Arm Jenkins <bsgcomp@arm.com> Reviewed-by: Michele Di Giorgio <michele.digiorgio@arm.com> Tested-by: Arm Jenkins <bsgcomp@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 c939de1b64..46f6ee828e 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(FusedDepthwiseConvolutionBatchNormalizationNode &n)
+{
+ ARM_COMPUTE_UNUSED(n);
+ std::stringstream ss;
+ ss << "FusedDepthwiseConvolutionBatchNormalizationNode";
+ _info = ss.str();
+}
+
void DotGraphVisitor::visit(NormalizationLayerNode &n)
{
std::stringstream ss;