aboutsummaryrefslogtreecommitdiff
path: root/delegate/opaque/src/armnn_delegate.cpp
diff options
context:
space:
mode:
authorTracy Narine <tracy.narine@arm.com>2023-07-17 16:06:26 +0100
committerTracy Narine <tracy.narine@arm.com>2023-07-18 16:15:46 +0100
commit7306bbef8b06cb9689108ff56bd67036d02ca79d (patch)
tree1b3f1a06e7aad3a37d3f3eab5c8afcc3797c0519 /delegate/opaque/src/armnn_delegate.cpp
parent121ccd56155e14bd8c31a1caacf254511222b256 (diff)
downloadarmnn-7306bbef8b06cb9689108ff56bd67036d02ca79d.tar.gz
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 <tracy.narine@arm.com> Change-Id: I8b41b7e71f2e28e5ea8dddbd00657900e6d7ab9a
Diffstat (limited to 'delegate/opaque/src/armnn_delegate.cpp')
-rw-r--r--delegate/opaque/src/armnn_delegate.cpp7
1 files changed, 7 insertions, 0 deletions
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,