aboutsummaryrefslogtreecommitdiff
path: root/delegate/classic/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/classic/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/classic/src/armnn_delegate.cpp')
-rw-r--r--delegate/classic/src/armnn_delegate.cpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/delegate/classic/src/armnn_delegate.cpp b/delegate/classic/src/armnn_delegate.cpp
index 05bf9b2ee7..52621ee6c1 100644
--- a/delegate/classic/src/armnn_delegate.cpp
+++ b/delegate/classic/src/armnn_delegate.cpp
@@ -34,6 +34,7 @@
#include "Resize.hpp"
#include "ReverseV2.hpp"
#include "Round.hpp"
+#include "ScatterNd.hpp"
#include "Shape.hpp"
#include "Slice.hpp"
#include "StridedSlice.hpp"
@@ -1070,6 +1071,12 @@ TfLiteStatus ArmnnSubgraph::VisitNode(DelegateData& delegateData,
tfLiteNode,
nodeIndex,
kTfLiteBuiltinTransposeConv);
+ case kTfLiteBuiltinScatterNd:
+ return VisitScatterNdOperator(delegateData,
+ tfLiteContext,
+ tfLiteNode,
+ nodeIndex,
+ kTfLiteBuiltinScatterNd);
case kTfLiteBuiltinSoftmax:
return VisitSoftmaxOperator(delegateData,
tfLiteContext,