[Doc] Misc doc fix (#5672)
authorZhao Wu <zhaowu@apache.org>
Tue, 26 May 2020 15:15:44 +0000 (23:15 +0800)
committerGitHub <noreply@github.com>
Tue, 26 May 2020 15:15:44 +0000 (08:15 -0700)
docs/dev/convert_layout.rst
tutorials/frontend/deploy_prequantized_tflite.py

index ee5350c..07ebc20 100644 (file)
@@ -246,7 +246,7 @@ In order to specify the layouts to convert to, we create a mapping of heavily-la
     # RemoveUnunsedFunctions is used to clean up the graph.
     seq = tvm.transform.Sequential([relay.transform.RemoveUnusedFunctions(),
                                     relay.transform.ConvertLayout(desired_layouts)])
-    with relay.transform.PassContext(opt_level=3):
+    with tvm.transform.PassContext(opt_level=3):
         mod = seq(mod)
 
     # Call relay compilation
index 3cdd423..5fd6837 100644 (file)
@@ -18,6 +18,7 @@
 Deploy a Framework-prequantized Model with TVM - Part 3 (TFLite)
 ================================================================
 **Author**: `Siju Samuel <https://github.com/siju-samuel>`_
+
 Welcome to part 3 of the Deploy Framework-Prequantized Model with TVM tutorial.
 In this part, we will start with a Quantized TFLite graph and then compile and execute it via TVM.