aboutsummaryrefslogtreecommitdiff
path: root/delegate/opaque/src/armnn_delegate.cpp
diff options
context:
space:
mode:
authorKevin May <kevin.may@arm.com>2024-03-11 09:31:10 +0000
committerTeresaARM <teresa.charlinreyes@arm.com>2024-03-12 18:23:16 +0000
commit93bbf00d968101fb9a9174ad011b655ca7100546 (patch)
tree324a08f34ce1e2de285942c6bfbc25aba1c77dcb /delegate/opaque/src/armnn_delegate.cpp
parente3cc71663e39a2d46bad3ef7e6c146ff9a9e5b0e (diff)
downloadarmnn-93bbf00d968101fb9a9174ad011b655ca7100546.tar.gz
IVGCVSW-8232 ScatterNd added to delegate and opaque delegate
Signed-off-by: Kevin May <kevin.may@arm.com> Signed-off-by: Teresa Charlin <teresa.charlinreyes@arm.com> Change-Id: I5839f54c71f74eaa6819333393bb3054db9db5be
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 4ed0a78013..9e047f6a68 100644
--- a/delegate/opaque/src/armnn_delegate.cpp
+++ b/delegate/opaque/src/armnn_delegate.cpp
@@ -33,6 +33,7 @@
#include "Resize.hpp"
#include "ReverseV2.hpp"
#include "Round.hpp"
+#include "ScatterNd.hpp"
#include "Shape.hpp"
#include "Slice.hpp"
#include "StridedSlice.hpp"
@@ -1154,6 +1155,12 @@ TfLiteStatus ArmnnSubgraph::VisitNode(DelegateData& delegateData,
nodeIndex,
kTfLiteBuiltinRsqrt,
armnn::UnaryOperation::Rsqrt);
+ case kTfLiteBuiltinScatterNd:
+ return VisitScatterNdOperator(delegateData,
+ tfLiteContext,
+ tfLiteNode,
+ nodeIndex,
+ kTfLiteBuiltinScatterNd);
case kTfLiteBuiltinShape:
return VisitShapeOperator(delegateData,
tfLiteContext,