aboutsummaryrefslogtreecommitdiff
path: root/ethosu/vela/tflite/VarHandleOptions.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/VarHandleOptions.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/VarHandleOptions.py')
-rw-r--r--ethosu/vela/tflite/VarHandleOptions.py56
1 files changed, 56 insertions, 0 deletions
diff --git a/ethosu/vela/tflite/VarHandleOptions.py b/ethosu/vela/tflite/VarHandleOptions.py
new file mode 100644
index 00000000..57305602
--- /dev/null
+++ b/ethosu/vela/tflite/VarHandleOptions.py
@@ -0,0 +1,56 @@
+# automatically generated by the FlatBuffers compiler, do not modify
+
+# namespace: tflite
+
+import flatbuffers
+from flatbuffers.compat import import_numpy
+np = import_numpy()
+
+class VarHandleOptions(object):
+ __slots__ = ['_tab']
+
+ @classmethod
+ def GetRootAs(cls, buf, offset=0):
+ n = flatbuffers.encode.Get(flatbuffers.packer.uoffset, buf, offset)
+ x = VarHandleOptions()
+ x.Init(buf, n + offset)
+ return x
+
+ @classmethod
+ def GetRootAsVarHandleOptions(cls, buf, offset=0):
+ """This method is deprecated. Please switch to GetRootAs."""
+ return cls.GetRootAs(buf, offset)
+ @classmethod
+ def VarHandleOptionsBufferHasIdentifier(cls, buf, offset, size_prefixed=False):
+ return flatbuffers.util.BufferHasIdentifier(buf, offset, b"\x54\x46\x4C\x33", size_prefixed=size_prefixed)
+
+ # VarHandleOptions
+ def Init(self, buf, pos):
+ self._tab = flatbuffers.table.Table(buf, pos)
+
+ # VarHandleOptions
+ def Container(self):
+ o = flatbuffers.number_types.UOffsetTFlags.py_type(self._tab.Offset(4))
+ if o != 0:
+ return self._tab.String(o + self._tab.Pos)
+ return None
+
+ # VarHandleOptions
+ def SharedName(self):
+ o = flatbuffers.number_types.UOffsetTFlags.py_type(self._tab.Offset(6))
+ if o != 0:
+ return self._tab.String(o + self._tab.Pos)
+ return None
+
+def VarHandleOptionsStart(builder): builder.StartObject(2)
+def Start(builder):
+ return VarHandleOptionsStart(builder)
+def VarHandleOptionsAddContainer(builder, container): builder.PrependUOffsetTRelativeSlot(0, flatbuffers.number_types.UOffsetTFlags.py_type(container), 0)
+def AddContainer(builder, container):
+ return VarHandleOptionsAddContainer(builder, container)
+def VarHandleOptionsAddSharedName(builder, sharedName): builder.PrependUOffsetTRelativeSlot(1, flatbuffers.number_types.UOffsetTFlags.py_type(sharedName), 0)
+def AddSharedName(builder, sharedName):
+ return VarHandleOptionsAddSharedName(builder, sharedName)
+def VarHandleOptionsEnd(builder): return builder.EndObject()
+def End(builder):
+ return VarHandleOptionsEnd(builder) \ No newline at end of file