aboutsummaryrefslogtreecommitdiff
path: root/ethosu/vela/tflite/NotEqualOptions.py
diff options
context:
space:
mode:
Diffstat (limited to 'ethosu/vela/tflite/NotEqualOptions.py')
-rw-r--r--ethosu/vela/tflite/NotEqualOptions.py16
1 files changed, 15 insertions, 1 deletions
diff --git a/ethosu/vela/tflite/NotEqualOptions.py b/ethosu/vela/tflite/NotEqualOptions.py
index 4c511e93..a1c6dba1 100644
--- a/ethosu/vela/tflite/NotEqualOptions.py
+++ b/ethosu/vela/tflite/NotEqualOptions.py
@@ -3,20 +3,34 @@
# namespace: tflite
import flatbuffers
+from flatbuffers.compat import import_numpy
+np = import_numpy()
class NotEqualOptions(object):
__slots__ = ['_tab']
@classmethod
- def GetRootAsNotEqualOptions(cls, buf, offset):
+ def GetRootAs(cls, buf, offset=0):
n = flatbuffers.encode.Get(flatbuffers.packer.uoffset, buf, offset)
x = NotEqualOptions()
x.Init(buf, n + offset)
return x
+ @classmethod
+ def GetRootAsNotEqualOptions(cls, buf, offset=0):
+ """This method is deprecated. Please switch to GetRootAs."""
+ return cls.GetRootAs(buf, offset)
+ @classmethod
+ def NotEqualOptionsBufferHasIdentifier(cls, buf, offset, size_prefixed=False):
+ return flatbuffers.util.BufferHasIdentifier(buf, offset, b"\x54\x46\x4C\x33", size_prefixed=size_prefixed)
+
# NotEqualOptions
def Init(self, buf, pos):
self._tab = flatbuffers.table.Table(buf, pos)
def NotEqualOptionsStart(builder): builder.StartObject(0)
+def Start(builder):
+ return NotEqualOptionsStart(builder)
def NotEqualOptionsEnd(builder): return builder.EndObject()
+def End(builder):
+ return NotEqualOptionsEnd(builder) \ No newline at end of file