aboutsummaryrefslogtreecommitdiff
path: root/src/armnnSerializer/ArmnnSchema.fbs
diff options
context:
space:
mode:
authorTracy Narine <tracy.narine@arm.com>2023-07-04 15:08:57 +0100
committerTracy Narine <tracy.narine@arm.com>2023-07-07 10:05:28 +0000
commit944fb508b1c30415e423b8916849c66a13867ea4 (patch)
treeb4a3c96425184965415f0adc3a9cd7a0011e97cd /src/armnnSerializer/ArmnnSchema.fbs
parent8e9747ab5211460e8dcc5e81d97e567152a0b710 (diff)
downloadarmnn-944fb508b1c30415e423b8916849c66a13867ea4.tar.gz
IVGCVSW-7832 Add REVERSE_V2 to Serializer and Deserializer
* Support for ReverseV2 for the serializer and deserializer added * Tests added * CMake files updated for the build * Fixed an issue with the operator_list documentation for Resize and ReverseV2 Signed-off-by: Tracy Narine <tracy.narine@arm.com> Change-Id: If396f55ecdd763d6f91c51707809f4bd58715cec
Diffstat (limited to 'src/armnnSerializer/ArmnnSchema.fbs')
-rw-r--r--src/armnnSerializer/ArmnnSchema.fbs11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/armnnSerializer/ArmnnSchema.fbs b/src/armnnSerializer/ArmnnSchema.fbs
index 84149bd60d..76a1c12787 100644
--- a/src/armnnSerializer/ArmnnSchema.fbs
+++ b/src/armnnSerializer/ArmnnSchema.fbs
@@ -184,6 +184,7 @@ enum LayerType : uint {
GatherNd = 67,
BatchMatMul = 68,
ElementwiseBinary = 69,
+ ReverseV2 = 70,
}
// Base layer table to be used as part of other layers
@@ -979,6 +980,15 @@ table ResizeDescriptor {
halfPixelCenters:bool;
}
+table ReverseV2Layer {
+ base:LayerBase;
+ descriptor:ReverseV2Descriptor;
+}
+
+table ReverseV2Descriptor {
+ axis:[int];
+}
+
table StackLayer {
base:LayerBase;
descriptor:StackDescriptor;
@@ -1117,6 +1127,7 @@ union Layer {
GatherNdLayer,
BatchMatMulLayer,
ElementwiseBinaryLayer,
+ ReverseV2Layer,
}
table AnyLayer {