Skip to content

Commit bd9c903

Browse files
committed
fix lint
1 parent 61af63c commit bd9c903

File tree

3 files changed

+5
-6
lines changed

3 files changed

+5
-6
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
AutoScheduler : Template-free Auto Scheduling
2-
-----------
2+
---------------------------------------------

tutorials/auto_scheduler/tune_matmul_x86.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ def matmul_add(N, L, M, dtype):
7878
# * see :any:`auto_schedule.TuningOptions`: for more parameters
7979

8080
tune_option = auto_scheduler.TuningOptions(
81-
num_measure_trials=10, measure_callbacks=[auto_scheduler.RecordToFile('matmul.json')]
81+
num_measure_trials=10, measure_callbacks=[auto_scheduler.RecordToFile("matmul.json")]
8282
)
8383

8484
######################################################################
@@ -97,7 +97,7 @@ def matmul_add(N, L, M, dtype):
9797

9898
######################################################################
9999
# Check correctness
100-
# ^^^^^^^^^^^^^^^^^^^^^^^^^^^
100+
# ^^^^^^^^^^^^^^^^^
101101
# We build the binary and check its correctness
102102

103103
func = tvm.build(sch, args)
@@ -115,7 +115,7 @@ def matmul_add(N, L, M, dtype):
115115
# Using the record file
116116
# ^^^^^^^^^^^^^^^^^^^^^
117117
# During the search, all measuremnt records is dumpped into the record
118-
# file "matmul.json". The measurement records can be used to resume the
118+
# file "matmul.json". The measurement records can be used to resume the
119119
# search, re-apply search results and other analysis.
120120
#
121121
# Here we show an example where we load the best schedule from a file,
@@ -131,4 +131,3 @@ def matmul_add(N, L, M, dtype):
131131
# log file without reruning the search again.
132132
sch, args = task.compute_dag.apply_steps_from_state(inp.state)
133133
func = tvm.build(sch, args)
134-

tutorials/autotvm/README.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
.. _tutorials-autotvm-sec:
22

33
AutoTVM : Template-based Auto Tuning
4-
-----------
4+
------------------------------------

0 commit comments

Comments
 (0)