aboutsummaryrefslogtreecommitdiff
path: root/ethosu/vela/tflite/Uint8Vector.py
diff options
context:
space:
mode:
Diffstat (limited to 'ethosu/vela/tflite/Uint8Vector.py')
-rw-r--r--ethosu/vela/tflite/Uint8Vector.py11
1 files changed, 11 insertions, 0 deletions
diff --git a/ethosu/vela/tflite/Uint8Vector.py b/ethosu/vela/tflite/Uint8Vector.py
index dc475f9f..ce3895e1 100644
--- a/ethosu/vela/tflite/Uint8Vector.py
+++ b/ethosu/vela/tflite/Uint8Vector.py
@@ -3,6 +3,8 @@
# namespace: tflite
import flatbuffers
+from flatbuffers.compat import import_numpy
+np = import_numpy()
class Uint8Vector(object):
__slots__ = ['_tab']
@@ -14,6 +16,10 @@ class Uint8Vector(object):
x.Init(buf, n + offset)
return x
+ @classmethod
+ def Uint8VectorBufferHasIdentifier(cls, buf, offset, size_prefixed=False):
+ return flatbuffers.util.BufferHasIdentifier(buf, offset, b"\x54\x46\x4C\x33", size_prefixed=size_prefixed)
+
# Uint8Vector
def Init(self, buf, pos):
self._tab = flatbuffers.table.Table(buf, pos)
@@ -40,6 +46,11 @@ class Uint8Vector(object):
return self._tab.VectorLen(o)
return 0
+ # Uint8Vector
+ def ValuesIsNone(self):
+ o = flatbuffers.number_types.UOffsetTFlags.py_type(self._tab.Offset(4))
+ return o == 0
+
def Uint8VectorStart(builder): builder.StartObject(1)
def Uint8VectorAddValues(builder, values): builder.PrependUOffsetTRelativeSlot(0, flatbuffers.number_types.UOffsetTFlags.py_type(values), 0)
def Uint8VectorStartValuesVector(builder, numElems): return builder.StartVector(1, numElems, 1)