aboutsummaryrefslogtreecommitdiff
path: root/ethosu/vela/tflite/HashtableFindOptions.py
diff options
context:
space:
mode:
Diffstat (limited to 'ethosu/vela/tflite/HashtableFindOptions.py')
-rw-r--r--ethosu/vela/tflite/HashtableFindOptions.py12
1 files changed, 11 insertions, 1 deletions
diff --git a/ethosu/vela/tflite/HashtableFindOptions.py b/ethosu/vela/tflite/HashtableFindOptions.py
index cc74ace2..9078d60b 100644
--- a/ethosu/vela/tflite/HashtableFindOptions.py
+++ b/ethosu/vela/tflite/HashtableFindOptions.py
@@ -3,18 +3,24 @@
# namespace: tflite
import flatbuffers
+from flatbuffers.compat import import_numpy
+np = import_numpy()
class HashtableFindOptions(object):
__slots__ = ['_tab']
@classmethod
- def GetRootAsHashtableFindOptions(cls, buf, offset):
+ def GetRootAs(cls, buf, offset=0):
n = flatbuffers.encode.Get(flatbuffers.packer.uoffset, buf, offset)
x = HashtableFindOptions()
x.Init(buf, n + offset)
return x
@classmethod
+ def GetRootAsHashtableFindOptions(cls, buf, offset=0):
+ """This method is deprecated. Please switch to GetRootAs."""
+ return cls.GetRootAs(buf, offset)
+ @classmethod
def HashtableFindOptionsBufferHasIdentifier(cls, buf, offset, size_prefixed=False):
return flatbuffers.util.BufferHasIdentifier(buf, offset, b"\x54\x46\x4C\x33", size_prefixed=size_prefixed)
@@ -23,4 +29,8 @@ class HashtableFindOptions(object):
self._tab = flatbuffers.table.Table(buf, pos)
def HashtableFindOptionsStart(builder): builder.StartObject(0)
+def Start(builder):
+ return HashtableFindOptionsStart(builder)
def HashtableFindOptionsEnd(builder): return builder.EndObject()
+def End(builder):
+ return HashtableFindOptionsEnd(builder) \ No newline at end of file