aboutsummaryrefslogtreecommitdiff
path: root/src/armnnSerializer/ArmnnSchema.fbs
diff options
context:
space:
mode:
authorDavid Monahan <david.monahan@arm.com>2023-07-25 12:08:10 +0100
committerDavid Monahan <david.monahan@arm.com>2023-07-25 11:49:01 +0000
commit616b22f52b169db10992fd70f4584365fd3db463 (patch)
tree5f4e4550848ac7c4800e6137466b3970c68565f4 /src/armnnSerializer/ArmnnSchema.fbs
parent79a06a59bafadf736ca53c4240e87f9bbb657260 (diff)
downloadarmnn-616b22f52b169db10992fd70f4584365fd3db463.tar.gz
IVGCVSW-7884 - Add Tile to Serializer and Deserializer
* Added parsing functions to the serializer and deserializer * Added Tile and its Descriptor to the ArmnnSchema.fbs * Added a Unittest Signed-off-by: David Monahan <david.monahan@arm.com> Change-Id: I72e638d26038c9b118cd82f633af462fd19e2b34
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 75dd252e68..bd0bd0380d 100644
--- a/src/armnnSerializer/ArmnnSchema.fbs
+++ b/src/armnnSerializer/ArmnnSchema.fbs
@@ -187,6 +187,7 @@ enum LayerType : uint {
BatchMatMul = 68,
ElementwiseBinary = 69,
ReverseV2 = 70,
+ Tile = 71,
}
// Base layer table to be used as part of other layers
@@ -1053,6 +1054,15 @@ table BatchMatMulLayer {
descriptor:BatchMatMulDescriptor;
}
+table TileDescriptor {
+ m_Multiples:[uint];
+}
+
+table TileLayer {
+ base:LayerBase;
+ descriptor:TileDescriptor;
+}
+
union Layer {
ActivationLayer,
AdditionLayer,
@@ -1125,6 +1135,7 @@ union Layer {
BatchMatMulLayer,
ElementwiseBinaryLayer,
ReverseV2Layer,
+ TileLayer,
}
table AnyLayer {