aboutsummaryrefslogtreecommitdiff
path: root/ethosu/vela/tflite/UniqueOptions.py
diff options
context:
space:
mode:
Diffstat (limited to 'ethosu/vela/tflite/UniqueOptions.py')
-rw-r--r--ethosu/vela/tflite/UniqueOptions.py12
1 files changed, 11 insertions, 1 deletions
diff --git a/ethosu/vela/tflite/UniqueOptions.py b/ethosu/vela/tflite/UniqueOptions.py
index 1088ef7d..7b21d095 100644
--- a/ethosu/vela/tflite/UniqueOptions.py
+++ b/ethosu/vela/tflite/UniqueOptions.py
@@ -10,13 +10,17 @@ class UniqueOptions(object):
__slots__ = ['_tab']
@classmethod
- def GetRootAsUniqueOptions(cls, buf, offset):
+ def GetRootAs(cls, buf, offset=0):
n = flatbuffers.encode.Get(flatbuffers.packer.uoffset, buf, offset)
x = UniqueOptions()
x.Init(buf, n + offset)
return x
@classmethod
+ def GetRootAsUniqueOptions(cls, buf, offset=0):
+ """This method is deprecated. Please switch to GetRootAs."""
+ return cls.GetRootAs(buf, offset)
+ @classmethod
def UniqueOptionsBufferHasIdentifier(cls, buf, offset, size_prefixed=False):
return flatbuffers.util.BufferHasIdentifier(buf, offset, b"\x54\x46\x4C\x33", size_prefixed=size_prefixed)
@@ -32,5 +36,11 @@ class UniqueOptions(object):
return 2
def UniqueOptionsStart(builder): builder.StartObject(1)
+def Start(builder):
+ return UniqueOptionsStart(builder)
def UniqueOptionsAddIdxOutType(builder, idxOutType): builder.PrependInt8Slot(0, idxOutType, 2)
+def AddIdxOutType(builder, idxOutType):
+ return UniqueOptionsAddIdxOutType(builder, idxOutType)
def UniqueOptionsEnd(builder): return builder.EndObject()
+def End(builder):
+ return UniqueOptionsEnd(builder) \ No newline at end of file