aboutsummaryrefslogtreecommitdiff
path: root/ethosu/vela/tflite/PackOptions.py
diff options
context:
space:
mode:
Diffstat (limited to 'ethosu/vela/tflite/PackOptions.py')
-rw-r--r--ethosu/vela/tflite/PackOptions.py32
1 files changed, 27 insertions, 5 deletions
diff --git a/ethosu/vela/tflite/PackOptions.py b/ethosu/vela/tflite/PackOptions.py
index 6a8ee2bb..89bf80aa 100644
--- a/ethosu/vela/tflite/PackOptions.py
+++ b/ethosu/vela/tflite/PackOptions.py
@@ -3,17 +3,27 @@
# namespace: tflite
import flatbuffers
+from flatbuffers.compat import import_numpy
+np = import_numpy()
class PackOptions(object):
__slots__ = ['_tab']
@classmethod
- def GetRootAsPackOptions(cls, buf, offset):
+ def GetRootAs(cls, buf, offset=0):
n = flatbuffers.encode.Get(flatbuffers.packer.uoffset, buf, offset)
x = PackOptions()
x.Init(buf, n + offset)
return x
+ @classmethod
+ def GetRootAsPackOptions(cls, buf, offset=0):
+ """This method is deprecated. Please switch to GetRootAs."""
+ return cls.GetRootAs(buf, offset)
+ @classmethod
+ def PackOptionsBufferHasIdentifier(cls, buf, offset, size_prefixed=False):
+ return flatbuffers.util.BufferHasIdentifier(buf, offset, b"\x54\x46\x4C\x33", size_prefixed=size_prefixed)
+
# PackOptions
def Init(self, buf, pos):
self._tab = flatbuffers.table.Table(buf, pos)
@@ -32,7 +42,19 @@ class PackOptions(object):
return self._tab.Get(flatbuffers.number_types.Int32Flags, o + self._tab.Pos)
return 0
-def PackOptionsStart(builder): builder.StartObject(2)
-def PackOptionsAddValuesCount(builder, valuesCount): builder.PrependInt32Slot(0, valuesCount, 0)
-def PackOptionsAddAxis(builder, axis): builder.PrependInt32Slot(1, axis, 0)
-def PackOptionsEnd(builder): return builder.EndObject()
+def Start(builder): builder.StartObject(2)
+def PackOptionsStart(builder):
+ """This method is deprecated. Please switch to Start."""
+ return Start(builder)
+def AddValuesCount(builder, valuesCount): builder.PrependInt32Slot(0, valuesCount, 0)
+def PackOptionsAddValuesCount(builder, valuesCount):
+ """This method is deprecated. Please switch to AddValuesCount."""
+ return AddValuesCount(builder, valuesCount)
+def AddAxis(builder, axis): builder.PrependInt32Slot(1, axis, 0)
+def PackOptionsAddAxis(builder, axis):
+ """This method is deprecated. Please switch to AddAxis."""
+ return AddAxis(builder, axis)
+def End(builder): return builder.EndObject()
+def PackOptionsEnd(builder):
+ """This method is deprecated. Please switch to End."""
+ return End(builder) \ No newline at end of file