From 7c9541ccd4c98d7e9a456ee67c3ceecce8531ffb Mon Sep 17 00:00:00 2001 From: Michalis Spyrou Date: Thu, 20 Sep 2018 17:40:04 +0100 Subject: COMPMID-1596 Create UpsampleLayer for NEON Change-Id: I82d95c4f1c5fed13b213a2591cc2b4e0d0e02a54 Reviewed-on: https://eu-gerrit-1.euhpc.arm.com/149676 Reviewed-by: Georgios Pinitas Reviewed-by: Pablo Tello Tested-by: bsgcomp --- 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 ec70a5ae93..508e4e8ec4 100644 --- a/src/graph/backends/NEON/NEFunctionFactory.cpp +++ b/src/graph/backends/NEON/NEFunctionFactory.cpp @@ -215,6 +215,8 @@ std::unique_ptr NEFunctionFactory::create(INode *node, GraphContext & return detail::create_resize_layer(*polymorphic_downcast(node)); case NodeType::SoftmaxLayer: return detail::create_softmax_layer(*polymorphic_downcast(node), ctx); + case NodeType::UpsampleLayer: + return detail::create_upsample_layer(*polymorphic_downcast(node), ctx); default: return nullptr; } -- cgit v1.2.1