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.fbs9
1 files changed, 7 insertions, 2 deletions
diff --git a/src/armnnSerializer/ArmnnSchema.fbs b/src/armnnSerializer/ArmnnSchema.fbs
index 0f8a816093..be6616d1e9 100644
--- a/src/armnnSerializer/ArmnnSchema.fbs
+++ b/src/armnnSerializer/ArmnnSchema.fbs
@@ -826,11 +826,16 @@ table AnyLayer {
layer:Layer;
}
+table FeatureCompatibilityVersions {
+ bindingIdsScheme:uint = 0;
+}
+
// Root type for serialized data is the graph of the network
table SerializedGraph {
layers:[AnyLayer];
- inputIds:[uint];
- outputIds:[uint];
+ inputIds:[int];
+ outputIds:[int];
+ featureVersions:FeatureCompatibilityVersions;
}
root_type SerializedGraph;