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.py14
1 files changed, 13 insertions, 1 deletions
diff --git a/ethosu/vela/tflite/Uint8Vector.py b/ethosu/vela/tflite/Uint8Vector.py
index ce3895e..1f29c60 100644
--- a/ethosu/vela/tflite/Uint8Vector.py
+++ b/ethosu/vela/tflite/Uint8Vector.py
@@ -10,13 +10,17 @@ class Uint8Vector(object):
__slots__ = ['_tab']
@classmethod
- def GetRootAsUint8Vector(cls, buf, offset):
+ def GetRootAs(cls, buf, offset=0):
n = flatbuffers.encode.Get(flatbuffers.packer.uoffset, buf, offset)
x = Uint8Vector()
x.Init(buf, n + offset)
return x
@classmethod
+ def GetRootAsUint8Vector(cls, buf, offset=0):
+ """This method is deprecated. Please switch to GetRootAs."""
+ return cls.GetRootAs(buf, offset)
+ @classmethod
def Uint8VectorBufferHasIdentifier(cls, buf, offset, size_prefixed=False):
return flatbuffers.util.BufferHasIdentifier(buf, offset, b"\x54\x46\x4C\x33", size_prefixed=size_prefixed)
@@ -52,6 +56,14 @@ class Uint8Vector(object):
return o == 0
def Uint8VectorStart(builder): builder.StartObject(1)
+def Start(builder):
+ return Uint8VectorStart(builder)
def Uint8VectorAddValues(builder, values): builder.PrependUOffsetTRelativeSlot(0, flatbuffers.number_types.UOffsetTFlags.py_type(values), 0)
+def AddValues(builder, values):
+ return Uint8VectorAddValues(builder, values)
def Uint8VectorStartValuesVector(builder, numElems): return builder.StartVector(1, numElems, 1)
+def StartValuesVector(builder, numElems):
+ return Uint8VectorStartValuesVector(builder, numElems)
def Uint8VectorEnd(builder): return builder.EndObject()
+def End(builder):
+ return Uint8VectorEnd(builder) \ No newline at end of file