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