aboutsummaryrefslogtreecommitdiff
path: root/ethosu/vela/tflite/ShapeOptions.py
diff options
context:
space:
mode:
Diffstat (limited to 'ethosu/vela/tflite/ShapeOptions.py')
-rw-r--r--ethosu/vela/tflite/ShapeOptions.py21
1 files changed, 12 insertions, 9 deletions
diff --git a/ethosu/vela/tflite/ShapeOptions.py b/ethosu/vela/tflite/ShapeOptions.py
index 6a9d6f90..92079352 100644
--- a/ethosu/vela/tflite/ShapeOptions.py
+++ b/ethosu/vela/tflite/ShapeOptions.py
@@ -35,12 +35,15 @@ class ShapeOptions(object):
return self._tab.Get(flatbuffers.number_types.Int8Flags, o + self._tab.Pos)
return 0
-def ShapeOptionsStart(builder): builder.StartObject(1)
-def Start(builder):
- return ShapeOptionsStart(builder)
-def ShapeOptionsAddOutType(builder, outType): builder.PrependInt8Slot(0, outType, 0)
-def AddOutType(builder, outType):
- return ShapeOptionsAddOutType(builder, outType)
-def ShapeOptionsEnd(builder): return builder.EndObject()
-def End(builder):
- return ShapeOptionsEnd(builder) \ No newline at end of file
+def Start(builder): builder.StartObject(1)
+def ShapeOptionsStart(builder):
+ """This method is deprecated. Please switch to Start."""
+ return Start(builder)
+def AddOutType(builder, outType): builder.PrependInt8Slot(0, outType, 0)
+def ShapeOptionsAddOutType(builder, outType):
+ """This method is deprecated. Please switch to AddOutType."""
+ return AddOutType(builder, outType)
+def End(builder): return builder.EndObject()
+def ShapeOptionsEnd(builder):
+ """This method is deprecated. Please switch to End."""
+ return End(builder) \ No newline at end of file