aboutsummaryrefslogtreecommitdiff
path: root/src/armnnDeserializer/Deserializer.hpp
diff options
context:
space:
mode:
authorKevin May <kevin.may@arm.com>2024-02-26 09:12:23 +0000
committerTeresaARM <teresa.charlinreyes@arm.com>2024-03-12 16:59:29 +0000
commite3cc71663e39a2d46bad3ef7e6c146ff9a9e5b0e (patch)
tree2559295d707eb88b0370370ccca36f250856a6a5 /src/armnnDeserializer/Deserializer.hpp
parent70dc5e9dc375c2feb306c7e709078c9f61ef8b1a (diff)
downloadarmnn-e3cc71663e39a2d46bad3ef7e6c146ff9a9e5b0e.tar.gz
IVGCVSW-8230 Add ScatterNd to Serializer and Deserializer
* Added parsing functions to the serializer and deserializer * Added ScatterNd and its Descriptor to the ArmnnSchema.fbs * Added Unittest for Serializer and Deserializer Signed-off-by: Kevin May <kevin.may@arm.com> Change-Id: I1ed674dc32d2e2d0d84dca4c7018984ea367ea50
Diffstat (limited to 'src/armnnDeserializer/Deserializer.hpp')
-rw-r--r--src/armnnDeserializer/Deserializer.hpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/armnnDeserializer/Deserializer.hpp b/src/armnnDeserializer/Deserializer.hpp
index 7e427d6dfa..4b29a70752 100644
--- a/src/armnnDeserializer/Deserializer.hpp
+++ b/src/armnnDeserializer/Deserializer.hpp
@@ -1,5 +1,5 @@
//
-// Copyright © 2017,2019-2023 Arm Ltd and Contributors. All rights reserved.
+// Copyright © 2017,2019-2024 Arm Ltd and Contributors. All rights reserved.
// SPDX-License-Identifier: MIT
//
@@ -138,6 +138,7 @@ private:
void ParseResizeBilinear(GraphPtr graph, unsigned int layerIndex);
void ParseReverseV2(GraphPtr graph, unsigned int layerIndex);
void ParseRsqrt(GraphPtr graph, unsigned int layerIndex);
+ void ParseScatterNd(GraphPtr graph, unsigned int layerIndex);
void ParseShape(GraphPtr graph, unsigned int layerIndex);
void ParseSlice(GraphPtr graph, unsigned int layerIndex);
void ParseSoftmax(GraphPtr graph, unsigned int layerIndex);