Skip to content

Commit

Permalink
fixed it yayy
Browse files Browse the repository at this point in the history
  • Loading branch information
CircleSpin committed Dec 18, 2021
1 parent 51475dd commit 2b87c16
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 7 deletions.
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ def git_describe_version(original_version):
"introduction.py",
"install.py",
"tvmc_command_line_driver.py",
"tvmc_python.py"
"tvmc_python.py",
"autotvm_relay_x86.py",
"tensor_expr_get_started.py",
"autotvm_matmul_x86.py",
Expand Down
1 change: 0 additions & 1 deletion docs/how_to/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ schedule with tesor expressions?"
:maxdepth: 1

compile_models/index
use_tvms_python_api/index
deploy/index
work_with_relay/index
work_with_schedules/index
Expand Down
10 changes: 5 additions & 5 deletions gallery/tutorial/tvmc_python.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
**Author**:
`Jocelyn Shiue <https://github.com/CircleSpin>`_
Hi! Here we explain the scripting tool designed for the complete TVM beginner. 🙂
Hi! Here we explain the scripting tool designed for the complete TVM beginner. 🙂
Before we get started let's get an example model if you don't already have one.
Follow the steps to download a resnet model via the terminal:
Expand Down Expand Up @@ -129,9 +129,9 @@
# tvmc.tune(model, target="llvm") #Step 1.5: Optional Tune
#
# The terminal output should look like:
#
#
# .. code-block:: python
#
#
# [Task 1/13] Current/Best: 82.00/ 106.29 GFLOPS | Progress: (48/769) | 18.56 s
# [Task 1/13] Current/Best: 54.47/ 113.50 GFLOPS | Progress: (240/769) | 85.36 s
# .....
Expand All @@ -143,7 +143,7 @@
# results into compile if you want the results to apply.
#
# .. code-block:: python
#
#
# #tvmc.compile(model, target="llvm", tuning_records = "records.log") #Step 2: Compile

################################################################################
Expand Down Expand Up @@ -215,7 +215,7 @@
# Use the next generation of tvm to enable potentially faster run speed results.
# The search space of the schedules is automatically generated unlike
# previously where they needed to be hand written. (Learn more:
# `1 <https://tvm.apache.org/2021/03/03/intro-auto-scheduler>`_,
# `1 <https://tvm.apache.org/2021/03/03/intro-auto-scheduler>`_,
# `2 <https://arxiv.org/abs/2006.06762>`_)
#
# .. code-block:: python
Expand Down

0 comments on commit 2b87c16

Please sign in to comment.