aboutsummaryrefslogtreecommitdiff
path: root/src/armnnSerializer/Schema.fbs
diff options
context:
space:
mode:
Diffstat (limited to 'src/armnnSerializer/Schema.fbs')
-rw-r--r--src/armnnSerializer/Schema.fbs8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/armnnSerializer/Schema.fbs b/src/armnnSerializer/Schema.fbs
index 2527f6d0f6..5d6388d944 100644
--- a/src/armnnSerializer/Schema.fbs
+++ b/src/armnnSerializer/Schema.fbs
@@ -65,7 +65,8 @@ table OutputSlot {
enum LayerType : uint {
Addition = 0,
Input = 1,
- Output = 2
+ Multiplication = 2,
+ Output = 3
}
// Base layer table to be used as part of other layers
@@ -91,6 +92,10 @@ table InputLayer {
base:BindableLayerBase;
}
+table MultiplicationLayer {
+ base:LayerBase;
+}
+
table OutputLayer {
base:BindableLayerBase;
}
@@ -98,6 +103,7 @@ table OutputLayer {
union Layer {
AdditionLayer,
InputLayer,
+ MultiplicationLayer,
OutputLayer
}