aboutsummaryrefslogtreecommitdiff
path: root/ethosu/vela/tflite/UniqueOptions.py
diff options
context:
space:
mode:
Diffstat (limited to 'ethosu/vela/tflite/UniqueOptions.py')
-rw-r--r--ethosu/vela/tflite/UniqueOptions.py21
1 files changed, 12 insertions, 9 deletions
diff --git a/ethosu/vela/tflite/UniqueOptions.py b/ethosu/vela/tflite/UniqueOptions.py
index 7b21d095..3d0612f9 100644
--- a/ethosu/vela/tflite/UniqueOptions.py
+++ b/ethosu/vela/tflite/UniqueOptions.py
@@ -35,12 +35,15 @@ class UniqueOptions(object):
return self._tab.Get(flatbuffers.number_types.Int8Flags, o + self._tab.Pos)
return 2
-def UniqueOptionsStart(builder): builder.StartObject(1)
-def Start(builder):
- return UniqueOptionsStart(builder)
-def UniqueOptionsAddIdxOutType(builder, idxOutType): builder.PrependInt8Slot(0, idxOutType, 2)
-def AddIdxOutType(builder, idxOutType):
- return UniqueOptionsAddIdxOutType(builder, idxOutType)
-def UniqueOptionsEnd(builder): return builder.EndObject()
-def End(builder):
- return UniqueOptionsEnd(builder) \ No newline at end of file
+def Start(builder): builder.StartObject(1)
+def UniqueOptionsStart(builder):
+ """This method is deprecated. Please switch to Start."""
+ return Start(builder)
+def AddIdxOutType(builder, idxOutType): builder.PrependInt8Slot(0, idxOutType, 2)
+def UniqueOptionsAddIdxOutType(builder, idxOutType):
+ """This method is deprecated. Please switch to AddIdxOutType."""
+ return AddIdxOutType(builder, idxOutType)
+def End(builder): return builder.EndObject()
+def UniqueOptionsEnd(builder):
+ """This method is deprecated. Please switch to End."""
+ return End(builder) \ No newline at end of file