You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tvm.apache.org by wu...@apache.org on 2020/01/27 00:41:57 UTC

[incubator-tvm] branch master updated: Update tune_simple_template.py (#4778)

This is an automated email from the ASF dual-hosted git repository.

wuwei pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-tvm.git


The following commit(s) were added to refs/heads/master by this push:
     new 9056fc4  Update tune_simple_template.py (#4778)
9056fc4 is described below

commit 9056fc40e0b928a0fdf7cdaba3efadabf7f2905c
Author: Kaiyan Chang <89...@qq.com>
AuthorDate: Mon Jan 27 08:41:46 2020 +0800

    Update tune_simple_template.py (#4778)
    
    fixed a spelling mistake.
---
 tutorials/autotvm/tune_simple_template.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tutorials/autotvm/tune_simple_template.py b/tutorials/autotvm/tune_simple_template.py
index 2e877b4..b6ad7e9 100644
--- a/tutorials/autotvm/tune_simple_template.py
+++ b/tutorials/autotvm/tune_simple_template.py
@@ -172,7 +172,7 @@ def matmul_v1(N, L, M, dtype):
 # However, we also provide another set of API to make the space definition
 # easier and smarter. It is recommended to use this set of high level API.
 #
-# In the flowing example, we use :any:`ConfigSpace.define_split` to define a split
+# In the following example, we use :any:`ConfigSpace.define_split` to define a split
 # knob. It will enumerate all the possible ways to split an axis and construct
 # the space.
 #