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 --- src/graph/backends/CL/CLFunctionsFactory.cpp | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/graph/backends/CL/CLFunctionsFactory.cpp') diff --git a/src/graph/backends/CL/CLFunctionsFactory.cpp b/src/graph/backends/CL/CLFunctionsFactory.cpp index 838977e75c..c67f6a538b 100644 --- a/src/graph/backends/CL/CLFunctionsFactory.cpp +++ b/src/graph/backends/CL/CLFunctionsFactory.cpp @@ -318,6 +318,8 @@ std::unique_ptr CLFunctionFactory::create(INode *node, GraphContext & return detail::create_stack_layer(*polymorphic_downcast(node)); case NodeType::StridedSliceLayer: return detail::create_strided_slice_layer(*polymorphic_downcast(node)); + case NodeType::FusedConvolutionBatchNormalizationLayerWithPostOpsLayer: + return detail::create_fused_convolution_batch_normalization_with_post_op(*polymorphic_downcast(node), ctx); default: return nullptr; } -- cgit v1.2.1