aboutsummaryrefslogtreecommitdiff
path: root/ethosu/vela/tflite/SpaceToBatchNDOptions.py
diff options
context:
space:
mode:
Diffstat (limited to 'ethosu/vela/tflite/SpaceToBatchNDOptions.py')
-rw-r--r--ethosu/vela/tflite/SpaceToBatchNDOptions.py14
1 files changed, 8 insertions, 6 deletions
diff --git a/ethosu/vela/tflite/SpaceToBatchNDOptions.py b/ethosu/vela/tflite/SpaceToBatchNDOptions.py
index 18031b7e..02ede8a8 100644
--- a/ethosu/vela/tflite/SpaceToBatchNDOptions.py
+++ b/ethosu/vela/tflite/SpaceToBatchNDOptions.py
@@ -28,9 +28,11 @@ class SpaceToBatchNDOptions(object):
def Init(self, buf, pos):
self._tab = flatbuffers.table.Table(buf, pos)
-def SpaceToBatchNDOptionsStart(builder): builder.StartObject(0)
-def Start(builder):
- return SpaceToBatchNDOptionsStart(builder)
-def SpaceToBatchNDOptionsEnd(builder): return builder.EndObject()
-def End(builder):
- return SpaceToBatchNDOptionsEnd(builder) \ No newline at end of file
+def Start(builder): builder.StartObject(0)
+def SpaceToBatchNDOptionsStart(builder):
+ """This method is deprecated. Please switch to Start."""
+ return Start(builder)
+def End(builder): return builder.EndObject()
+def SpaceToBatchNDOptionsEnd(builder):
+ """This method is deprecated. Please switch to End."""
+ return End(builder) \ No newline at end of file