You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tvm.apache.org by gr...@apache.org on 2022/11/29 15:39:37 UTC

[tvm] branch main updated: [Docs][Bug] Fix broken link to tvmc python (#13499)

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

gromero pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/tvm.git


The following commit(s) were added to refs/heads/main by this push:
     new b9f89a2eb9 [Docs][Bug] Fix broken link to tvmc python (#13499)
b9f89a2eb9 is described below

commit b9f89a2eb9c37cedfaaa4f316fd86ed5ba5dcf1f
Author: Benson Muite <bk...@users.noreply.github.com>
AuthorDate: Tue Nov 29 18:39:26 2022 +0300

    [Docs][Bug] Fix broken link to tvmc python (#13499)
    
    Ensure correct link is generated to the next page in the documentation.
    Update description to indicate next section introduces Python API, and
    the section after that discusses the same material but using Python
    rather than the command line interface.
---
 gallery/tutorial/tvmc_command_line_driver.py | 8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)

diff --git a/gallery/tutorial/tvmc_command_line_driver.py b/gallery/tutorial/tvmc_command_line_driver.py
index 39e5f06311..3f4413e848 100644
--- a/gallery/tutorial/tvmc_command_line_driver.py
+++ b/gallery/tutorial/tvmc_command_line_driver.py
@@ -518,6 +518,8 @@ testing.utils.install_request_hook(depth=3)
 # To see what other options are available, please have a look at ``tvmc
 # --help``.
 #
-# In the next tutorial, `Compiling and Optimizing a Model with the Python
-# Interface <auto_tuning_with_pyton>`_, we will cover the same compilation
-# and optimization steps using the Python interface.
+# In the `next tutorial <tvmc_python>`, we introduce the Python interface to TVM,
+# and in the tutorial after that,
+# `Compiling and Optimizing a Model with the Python Interface <autotvm_relay_x86>`,
+# we will cover the same compilation and optimization steps using the Python
+# interface.