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.fbs10
1 files changed, 8 insertions, 2 deletions
diff --git a/src/armnnSerializer/ArmnnSchema.fbs b/src/armnnSerializer/ArmnnSchema.fbs
index 2cceaae031..7ac83598e1 100644
--- a/src/armnnSerializer/ArmnnSchema.fbs
+++ b/src/armnnSerializer/ArmnnSchema.fbs
@@ -116,7 +116,8 @@ enum LayerType : uint {
L2Normalization = 31,
Splitter = 32,
DetectionPostProcess = 33,
- Lstm = 34
+ Lstm = 34,
+ Quantize = 35
}
// Base layer table to be used as part of other layers
@@ -265,6 +266,10 @@ table Pooling2dDescriptor {
dataLayout:DataLayout;
}
+table QuantizeLayer {
+ base:LayerBase;
+}
+
table SoftmaxLayer {
base:LayerBase;
descriptor:SoftmaxDescriptor;
@@ -549,7 +554,8 @@ union Layer {
L2NormalizationLayer,
SplitterLayer,
DetectionPostProcessLayer,
- LstmLayer
+ LstmLayer,
+ QuantizeLayer
}
table AnyLayer {