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 --- arm_compute/graph/TypePrinter.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'arm_compute/graph/TypePrinter.h') diff --git a/arm_compute/graph/TypePrinter.h b/arm_compute/graph/TypePrinter.h index a8a20c9de8..8f97bbf845 100644 --- a/arm_compute/graph/TypePrinter.h +++ b/arm_compute/graph/TypePrinter.h @@ -116,6 +116,9 @@ inline ::std::ostream &operator<<(::std::ostream &os, const NodeType &node_type) case NodeType::FusedConvolutionBatchNormalizationLayer: os << "FusedConvolutionBatchNormalizationLayer"; break; + case NodeType::FusedConvolutionBatchNormalizationLayerWithPostOpsLayer: + os << "FusedConvolutionBatchNormalizationLayerWithPostOpsLayer"; + break; case NodeType::FusedConvolutionWithPostOp: os << "FusedConvolutionWithPostOp"; break; -- cgit v1.2.1