aboutsummaryrefslogtreecommitdiff
path: root/src/armnnSerializer/ArmnnSchema.fbs
diff options
context:
space:
mode:
Diffstat (limited to 'src/armnnSerializer/ArmnnSchema.fbs')
-rw-r--r--src/armnnSerializer/ArmnnSchema.fbs17
1 files changed, 14 insertions, 3 deletions
diff --git a/src/armnnSerializer/ArmnnSchema.fbs b/src/armnnSerializer/ArmnnSchema.fbs
index 532c12c706..18415ce785 100644
--- a/src/armnnSerializer/ArmnnSchema.fbs
+++ b/src/armnnSerializer/ArmnnSchema.fbs
@@ -156,7 +156,8 @@ enum LayerType : uint {
StandIn = 53,
ElementwiseUnary = 54,
Transpose = 55,
- QLstm = 56
+ QLstm = 56,
+ Fill = 57
}
// Base layer table to be used as part of other layers
@@ -284,6 +285,15 @@ table EqualLayer {
base:LayerBase;
}
+table FillLayer {
+ base:LayerBase;
+ descriptor:FillDescriptor;
+}
+
+table FillDescriptor {
+ value:float;
+}
+
table FloorLayer{
base:LayerBase;
}
@@ -901,7 +911,8 @@ union Layer {
StandInLayer,
ElementwiseUnaryLayer,
TransposeLayer,
- QLstmLayer
+ QLstmLayer,
+ FillLayer
}
table AnyLayer {
@@ -920,4 +931,4 @@ table SerializedGraph {
featureVersions:FeatureCompatibilityVersions;
}
-root_type SerializedGraph;
+root_type SerializedGraph; \ No newline at end of file