aboutsummaryrefslogtreecommitdiff
path: root/ethosu/vela/tflite/AssignVariableOptions.py
diff options
context:
space:
mode:
authorRickard Bolin <rickard.bolin@arm.com>2021-12-20 08:35:23 +0000
committerpatrik.gustavsson <patrik.gustavsson@arm.com>2022-01-21 12:45:02 +0000
commit2de898a85d800f0e812cc13eff6363e27a377cf5 (patch)
tree4c4b81cf5c4c521d33af59234deffce00611ba78 /ethosu/vela/tflite/AssignVariableOptions.py
parent3c25ff658cf847ccfcb2d4d5796ffbe13a511894 (diff)
downloadethos-u-vela-2de898a85d800f0e812cc13eff6363e27a377cf5.tar.gz
MLBEDSW-4870: Update to TensorFlow 2.7
Update the flatbuffers generated code to comply with TensorFlow 2.7 Signed-off-by: Rickard Bolin <rickard.bolin@arm.com> Change-Id: Iff29b05a6e145245861329b4ff9fc9fbd968da53
Diffstat (limited to 'ethosu/vela/tflite/AssignVariableOptions.py')
-rw-r--r--ethosu/vela/tflite/AssignVariableOptions.py36
1 files changed, 36 insertions, 0 deletions
diff --git a/ethosu/vela/tflite/AssignVariableOptions.py b/ethosu/vela/tflite/AssignVariableOptions.py
new file mode 100644
index 00000000..a06c6291
--- /dev/null
+++ b/ethosu/vela/tflite/AssignVariableOptions.py
@@ -0,0 +1,36 @@
+# automatically generated by the FlatBuffers compiler, do not modify
+
+# namespace: tflite
+
+import flatbuffers
+from flatbuffers.compat import import_numpy
+np = import_numpy()
+
+class AssignVariableOptions(object):
+ __slots__ = ['_tab']
+
+ @classmethod
+ def GetRootAs(cls, buf, offset=0):
+ n = flatbuffers.encode.Get(flatbuffers.packer.uoffset, buf, offset)
+ x = AssignVariableOptions()
+ x.Init(buf, n + offset)
+ return x
+
+ @classmethod
+ def GetRootAsAssignVariableOptions(cls, buf, offset=0):
+ """This method is deprecated. Please switch to GetRootAs."""
+ return cls.GetRootAs(buf, offset)
+ @classmethod
+ def AssignVariableOptionsBufferHasIdentifier(cls, buf, offset, size_prefixed=False):
+ return flatbuffers.util.BufferHasIdentifier(buf, offset, b"\x54\x46\x4C\x33", size_prefixed=size_prefixed)
+
+ # AssignVariableOptions
+ def Init(self, buf, pos):
+ self._tab = flatbuffers.table.Table(buf, pos)
+
+def AssignVariableOptionsStart(builder): builder.StartObject(0)
+def Start(builder):
+ return AssignVariableOptionsStart(builder)
+def AssignVariableOptionsEnd(builder): return builder.EndObject()
+def End(builder):
+ return AssignVariableOptionsEnd(builder) \ No newline at end of file