[TUTORIAL] Fix Some Failed Tutorials of The Issue #6453 (#6534)
authorQiang Zhang <johnson9009@163.com>
Wed, 23 Sep 2020 15:18:40 +0000 (23:18 +0800)
committerGitHub <noreply@github.com>
Wed, 23 Sep 2020 15:18:40 +0000 (08:18 -0700)
tutorials/get_started/tensor_expr_get_started.py
tutorials/language/reduction.py
tutorials/language/scan.py
tutorials/topi/intro_topi.py

index 76e0262..0ca2243 100644 (file)
@@ -30,6 +30,7 @@ the tensor expression language.
 from __future__ import absolute_import, print_function
 
 import tvm
+import tvm.testing
 from tvm import te
 import numpy as np
 
index ecefc28..cffa10e 100644 (file)
@@ -28,6 +28,7 @@ In this tutorial, we will demonstrate how to do reduction in TVM.
 from __future__ import absolute_import, print_function
 
 import tvm
+import tvm.testing
 from tvm import te
 import numpy as np
 
index fdb6ec9..5f51320 100644 (file)
@@ -25,6 +25,7 @@ Recurrent computing is a typical pattern in neural networks.
 from __future__ import absolute_import, print_function
 
 import tvm
+import tvm.testing
 from tvm import te
 import numpy as np
 
index c9812ff..2459cf2 100644 (file)
@@ -26,6 +26,7 @@ In this tutorial, we will see how TOPI can save us from writing boilerplates cod
 from __future__ import absolute_import, print_function
 
 import tvm
+import tvm.testing
 from tvm import te
 from tvm import topi
 import numpy as np