From acce504ec4aebe5e5da470c1cfc3cee401ff11f3 Mon Sep 17 00:00:00 2001 From: giuros01 Date: Thu, 21 Feb 2019 17:32:34 +0000 Subject: COMPMID-1740: Fuse batch normalization with Convolution Layer at graph level Change-Id: I77ca51c2c72783cc26a099a6a9c3210cdbbe822d Signed-off-by: giuros01 Reviewed-on: https://review.mlplatform.org/c/797 Tested-by: Arm Jenkins Reviewed-by: Michele Di Giorgio Reviewed-by: Georgios Pinitas --- src/graph/printers/DotGraphPrinter.cpp | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) (limited to 'src/graph/printers/DotGraphPrinter.cpp') diff --git a/src/graph/printers/DotGraphPrinter.cpp b/src/graph/printers/DotGraphPrinter.cpp index ef156ea252..c939de1b64 100644 --- a/src/graph/printers/DotGraphPrinter.cpp +++ b/src/graph/printers/DotGraphPrinter.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018 ARM Limited. + * Copyright (c) 2018-2019 ARM Limited. * * SPDX-License-Identifier: MIT * @@ -77,6 +77,14 @@ void DotGraphVisitor::visit(EltwiseLayerNode &n) _info = ss.str(); } +void DotGraphVisitor::visit(FusedConvolutionBatchNormalizationNode &n) +{ + ARM_COMPUTE_UNUSED(n); + std::stringstream ss; + ss << "FusedConvolutionBatchNormalizationNode"; + _info = ss.str(); +} + void DotGraphVisitor::visit(NormalizationLayerNode &n) { std::stringstream ss; -- cgit v1.2.1