From 7306bbef8b06cb9689108ff56bd67036d02ca79d Mon Sep 17 00:00:00 2001 From: Tracy Narine Date: Mon, 17 Jul 2023 16:06:26 +0100 Subject: IVGCVSW-7834 Add REVERSE_V2 to classic and opaque delegates * Adding support for ReverseV2 in the classic and opaque delegates * CMake files updated * Tests added * Gpu/Cpu Acc tests compiled out until functionality is written Signed-off-by: Tracy Narine Change-Id: I8b41b7e71f2e28e5ea8dddbd00657900e6d7ab9a --- delegate/opaque/src/armnn_delegate.cpp | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'delegate/opaque/src/armnn_delegate.cpp') diff --git a/delegate/opaque/src/armnn_delegate.cpp b/delegate/opaque/src/armnn_delegate.cpp index f32a6f43b8..510352eae9 100644 --- a/delegate/opaque/src/armnn_delegate.cpp +++ b/delegate/opaque/src/armnn_delegate.cpp @@ -30,6 +30,7 @@ #include "Redefine.hpp" #include "Reduce.hpp" #include "Resize.hpp" +#include "ReverseV2.hpp" #include "Round.hpp" #include "Shape.hpp" #include "Slice.hpp" @@ -1032,6 +1033,12 @@ TfLiteStatus ArmnnSubgraph::VisitNode(DelegateData& delegateData, tfLiteNode, nodeIndex, kTfLiteBuiltinResizeBilinear); + case kTfLiteBuiltinReverseV2: + return VisitReverseV2Operator(delegateData, + tfLiteContext, + tfLiteNode, + nodeIndex, + kTfLiteBuiltinReverseV2); case kTfLiteBuiltinRsqrt: return VisitElementwiseUnaryOperator(delegateData, tfLiteContext, -- cgit v1.2.1