aboutsummaryrefslogtreecommitdiff
path: root/arm_compute/graph/TypePrinter.h
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 /arm_compute/graph/TypePrinter.h
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 'arm_compute/graph/TypePrinter.h')
-rw-r--r--arm_compute/graph/TypePrinter.h3
1 files changed, 3 insertions, 0 deletions
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;