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 6b07510a21..6450d16ca8 100644
--- a/src/armnnSerializer/ArmnnSchema.fbs
+++ b/src/armnnSerializer/ArmnnSchema.fbs
@@ -140,7 +140,8 @@ enum LayerType : uint {
QuantizedLstm = 45,
Abs = 46,
ArgMinMax = 47,
- Slice = 48
+ Slice = 48,
+ DepthToSpace = 49
}
// Base layer table to be used as part of other layers
@@ -213,6 +214,16 @@ table Convolution2dDescriptor {
dataLayout:DataLayout = NCHW;
}
+table DepthToSpaceLayer {
+ base:LayerBase;
+ descriptor:DepthToSpaceDescriptor;
+}
+
+table DepthToSpaceDescriptor {
+ blockSize:uint;
+ dataLayout:DataLayout;
+}
+
table DivisionLayer {
base:LayerBase;
}
@@ -722,7 +733,8 @@ union Layer {
StackLayer,
AbsLayer,
ArgMinMaxLayer,
- SliceLayer
+ SliceLayer,
+ DepthToSpaceLayer
}
table AnyLayer {