aboutsummaryrefslogtreecommitdiff
path: root/ethosu/vela/tflite/SVDFOptions.py
diff options
context:
space:
mode:
Diffstat (limited to 'ethosu/vela/tflite/SVDFOptions.py')
-rw-r--r--ethosu/vela/tflite/SVDFOptions.py16
1 files changed, 15 insertions, 1 deletions
diff --git a/ethosu/vela/tflite/SVDFOptions.py b/ethosu/vela/tflite/SVDFOptions.py
index b5e59038..3dbbad90 100644
--- a/ethosu/vela/tflite/SVDFOptions.py
+++ b/ethosu/vela/tflite/SVDFOptions.py
@@ -10,13 +10,17 @@ class SVDFOptions(object):
__slots__ = ['_tab']
@classmethod
- def GetRootAsSVDFOptions(cls, buf, offset):
+ def GetRootAs(cls, buf, offset=0):
n = flatbuffers.encode.Get(flatbuffers.packer.uoffset, buf, offset)
x = SVDFOptions()
x.Init(buf, n + offset)
return x
@classmethod
+ def GetRootAsSVDFOptions(cls, buf, offset=0):
+ """This method is deprecated. Please switch to GetRootAs."""
+ return cls.GetRootAs(buf, offset)
+ @classmethod
def SVDFOptionsBufferHasIdentifier(cls, buf, offset, size_prefixed=False):
return flatbuffers.util.BufferHasIdentifier(buf, offset, b"\x54\x46\x4C\x33", size_prefixed=size_prefixed)
@@ -46,7 +50,17 @@ class SVDFOptions(object):
return False
def SVDFOptionsStart(builder): builder.StartObject(3)
+def Start(builder):
+ return SVDFOptionsStart(builder)
def SVDFOptionsAddRank(builder, rank): builder.PrependInt32Slot(0, rank, 0)
+def AddRank(builder, rank):
+ return SVDFOptionsAddRank(builder, rank)
def SVDFOptionsAddFusedActivationFunction(builder, fusedActivationFunction): builder.PrependInt8Slot(1, fusedActivationFunction, 0)
+def AddFusedActivationFunction(builder, fusedActivationFunction):
+ return SVDFOptionsAddFusedActivationFunction(builder, fusedActivationFunction)
def SVDFOptionsAddAsymmetricQuantizeInputs(builder, asymmetricQuantizeInputs): builder.PrependBoolSlot(2, asymmetricQuantizeInputs, 0)
+def AddAsymmetricQuantizeInputs(builder, asymmetricQuantizeInputs):
+ return SVDFOptionsAddAsymmetricQuantizeInputs(builder, asymmetricQuantizeInputs)
def SVDFOptionsEnd(builder): return builder.EndObject()
+def End(builder):
+ return SVDFOptionsEnd(builder) \ No newline at end of file