From 57c48243af8fd4b503fe629166531299c1b083d3 Mon Sep 17 00:00:00 2001 From: Georgios Pinitas Date: Thu, 2 Aug 2018 13:41:49 +0100 Subject: MLCE-37: Adds PermuteNode support in graph Change-Id: Iaa93a497e7913c27f2fd09e974125cda5f04bc4b Reviewed-on: https://eu-gerrit-1.euhpc.arm.com/142463 Reviewed-by: Anthony Barbier Tested-by: Jenkins --- src/graph/backends/NEON/NENodeValidator.cpp | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/graph/backends/NEON/NENodeValidator.cpp') diff --git a/src/graph/backends/NEON/NENodeValidator.cpp b/src/graph/backends/NEON/NENodeValidator.cpp index 58589d5449..58ffaf024b 100644 --- a/src/graph/backends/NEON/NENodeValidator.cpp +++ b/src/graph/backends/NEON/NENodeValidator.cpp @@ -57,6 +57,8 @@ Status NENodeValidator::validate(INode *node) case NodeType::DepthwiseConvolutionLayer: return detail::validate_depthwise_convolution_layer(*polymorphic_downcast(node)); + case NodeType::PermuteLayer: + return detail::validate_permute_layer(*polymorphic_downcast(node)); default: return Status{}; } -- cgit v1.2.1