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