From 3603aff36444e01083b93e603e8b9b0a254d4911 Mon Sep 17 00:00:00 2001 From: thecha01 Date: Tue, 1 Sep 2020 14:52:38 +0100 Subject: Add L2Normalize layer node to Graph API Signed-off-by: thecha01 Change-Id: I5cd26a8829060563d63d8c53e5148631ee053eca Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/3912 Tested-by: Arm Jenkins Reviewed-by: Michele Di Giorgio Comments-Addressed: Arm Jenkins --- src/graph/backends/NEON/NEFunctionFactory.cpp | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/graph/backends/NEON/NEFunctionFactory.cpp') diff --git a/src/graph/backends/NEON/NEFunctionFactory.cpp b/src/graph/backends/NEON/NEFunctionFactory.cpp index 953697fee3..686468e0a4 100644 --- a/src/graph/backends/NEON/NEFunctionFactory.cpp +++ b/src/graph/backends/NEON/NEFunctionFactory.cpp @@ -165,6 +165,8 @@ std::unique_ptr NEFunctionFactory::create(INode *node, GraphContext & return detail::create_fused_convolution_batch_normalization_layer(*polymorphic_downcast(node), ctx); case NodeType::FusedDepthwiseConvolutionBatchNormalizationLayer: return detail::create_fused_depthwise_convolution_batch_normalization_layer(*polymorphic_downcast(node), ctx); + case NodeType::L2NormalizeLayer: + return detail::create_l2_normalize_layer(*polymorphic_downcast(node), ctx); case NodeType::NormalizationLayer: return detail::create_normalization_layer(*polymorphic_downcast(node), ctx); case NodeType::PadLayer: -- cgit v1.2.1