aboutsummaryrefslogtreecommitdiff
path: root/src/armnnSerializer/ArmnnSchema.fbs
diff options
context:
space:
mode:
authorTee Jung <tee.ty.jung@openedges.com>2019-11-05 10:48:25 +0000
committerDerek Lamberti <derek.lamberti@arm.com>2020-02-04 13:50:36 +0000
commitaa920c56838c2a0b31bd4e3c54bd57ff2f20969e (patch)
treed029c5685fd3a622fd94c2e9707821aa0b47ca06 /src/armnnSerializer/ArmnnSchema.fbs
parent9a61fa6bdc8724cc66eba532360e0e48b6b1a60e (diff)
downloadarmnn-experimental/QuantizerStuff.tar.gz
Build graph->inputIds/outputIds with layerBindingId instead of layerIndexexperimental/QuantizerStuff
Signed-off-by: Jung Tae-young tee.ty.jung@openedges.com Signed-off-by: Matteo Martincigh <matteo.martincigh@arm.com> Change-Id: I25ceeca70e72fad88ab039aed5a5ab6a7cc08c6c Signed-off-by: Derek Lamberti <derek.lamberti@arm.com>
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;