aboutsummaryrefslogtreecommitdiff
path: root/ethosu/vela/tflite/PadOptions.py
diff options
context:
space:
mode:
Diffstat (limited to 'ethosu/vela/tflite/PadOptions.py')
-rw-r--r--ethosu/vela/tflite/PadOptions.py12
1 files changed, 11 insertions, 1 deletions
diff --git a/ethosu/vela/tflite/PadOptions.py b/ethosu/vela/tflite/PadOptions.py
index 58d33e54..b73f51d8 100644
--- a/ethosu/vela/tflite/PadOptions.py
+++ b/ethosu/vela/tflite/PadOptions.py
@@ -3,18 +3,24 @@
# namespace: tflite
import flatbuffers
+from flatbuffers.compat import import_numpy
+np = import_numpy()
class PadOptions(object):
__slots__ = ['_tab']
@classmethod
- def GetRootAsPadOptions(cls, buf, offset):
+ def GetRootAs(cls, buf, offset=0):
n = flatbuffers.encode.Get(flatbuffers.packer.uoffset, buf, offset)
x = PadOptions()
x.Init(buf, n + offset)
return x
@classmethod
+ def GetRootAsPadOptions(cls, buf, offset=0):
+ """This method is deprecated. Please switch to GetRootAs."""
+ return cls.GetRootAs(buf, offset)
+ @classmethod
def PadOptionsBufferHasIdentifier(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 PadOptions(object):
self._tab = flatbuffers.table.Table(buf, pos)
def PadOptionsStart(builder): builder.StartObject(0)
+def Start(builder):
+ return PadOptionsStart(builder)
def PadOptionsEnd(builder): return builder.EndObject()
+def End(builder):
+ return PadOptionsEnd(builder) \ No newline at end of file