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