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