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.fbs16
1 files changed, 14 insertions, 2 deletions
diff --git a/src/armnnSerializer/ArmnnSchema.fbs b/src/armnnSerializer/ArmnnSchema.fbs
index 0756784cd3..bad95cfc56 100644
--- a/src/armnnSerializer/ArmnnSchema.fbs
+++ b/src/armnnSerializer/ArmnnSchema.fbs
@@ -144,7 +144,8 @@ enum LayerType : uint {
DepthToSpace = 49,
InstanceNormalization = 50,
LogSoftmax = 51,
- Comparison = 52
+ Comparison = 52,
+ StandIn = 53
}
// Base layer table to be used as part of other layers
@@ -731,6 +732,16 @@ table StackDescriptor {
inputShape:[uint];
}
+table StandInDescriptor {
+ numInputs:uint;
+ numOutputs:uint;
+}
+
+table StandInLayer {
+ base:LayerBase;
+ descriptor:StandInDescriptor;
+}
+
union Layer {
ActivationLayer,
AdditionLayer,
@@ -784,7 +795,8 @@ union Layer {
DepthToSpaceLayer,
InstanceNormalizationLayer,
LogSoftmaxLayer,
- ComparisonLayer
+ ComparisonLayer,
+ StandInLayer
}
table AnyLayer {