aboutsummaryrefslogtreecommitdiff
path: root/ethosu/vela/tflite/RNNOptions.py
diff options
context:
space:
mode:
Diffstat (limited to 'ethosu/vela/tflite/RNNOptions.py')
-rw-r--r--ethosu/vela/tflite/RNNOptions.py14
1 files changed, 13 insertions, 1 deletions
diff --git a/ethosu/vela/tflite/RNNOptions.py b/ethosu/vela/tflite/RNNOptions.py
index 67bbe78..c891508 100644
--- a/ethosu/vela/tflite/RNNOptions.py
+++ b/ethosu/vela/tflite/RNNOptions.py
@@ -10,13 +10,17 @@ class RNNOptions(object):
__slots__ = ['_tab']
@classmethod
- def GetRootAsRNNOptions(cls, buf, offset):
+ def GetRootAs(cls, buf, offset=0):
n = flatbuffers.encode.Get(flatbuffers.packer.uoffset, buf, offset)
x = RNNOptions()
x.Init(buf, n + offset)
return x
@classmethod
+ def GetRootAsRNNOptions(cls, buf, offset=0):
+ """This method is deprecated. Please switch to GetRootAs."""
+ return cls.GetRootAs(buf, offset)
+ @classmethod
def RNNOptionsBufferHasIdentifier(cls, buf, offset, size_prefixed=False):
return flatbuffers.util.BufferHasIdentifier(buf, offset, b"\x54\x46\x4C\x33", size_prefixed=size_prefixed)
@@ -39,6 +43,14 @@ class RNNOptions(object):
return False
def RNNOptionsStart(builder): builder.StartObject(2)
+def Start(builder):
+ return RNNOptionsStart(builder)
def RNNOptionsAddFusedActivationFunction(builder, fusedActivationFunction): builder.PrependInt8Slot(0, fusedActivationFunction, 0)
+def AddFusedActivationFunction(builder, fusedActivationFunction):
+ return RNNOptionsAddFusedActivationFunction(builder, fusedActivationFunction)
def RNNOptionsAddAsymmetricQuantizeInputs(builder, asymmetricQuantizeInputs): builder.PrependBoolSlot(1, asymmetricQuantizeInputs, 0)
+def AddAsymmetricQuantizeInputs(builder, asymmetricQuantizeInputs):
+ return RNNOptionsAddAsymmetricQuantizeInputs(builder, asymmetricQuantizeInputs)
def RNNOptionsEnd(builder): return builder.EndObject()
+def End(builder):
+ return RNNOptionsEnd(builder) \ No newline at end of file