From d2048ce58a88853cee6cdd67fe0d6f09c3e212b0 Mon Sep 17 00:00:00 2001 From: Manuel Bottini Date: Tue, 23 Oct 2018 17:00:42 +0100 Subject: COMPMID-1638 - Add BBoxTransform to the graph API Change-Id: I67cbbce59d61d907fc4dc4c3997e96b347dfe895 --- 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 43fe706b9a..ea4e89e5c1 100644 --- a/src/graph/backends/CL/CLFunctionsFactory.cpp +++ b/src/graph/backends/CL/CLFunctionsFactory.cpp @@ -83,6 +83,8 @@ std::unique_ptr CLFunctionFactory::create(INode *node, GraphContext & return detail::create_activation_layer(*polymorphic_downcast(node)); case NodeType::BatchNormalizationLayer: return detail::create_batch_normalization_layer(*polymorphic_downcast(node)); + case NodeType::BoundingBoxTransformLayer: + return detail::create_bounding_box_transform_layer(*polymorphic_downcast(node)); case NodeType::ChannelShuffleLayer: return detail::create_channel_shuffle_layer(*polymorphic_downcast(node)); case NodeType::ConvolutionLayer: -- cgit v1.2.1