From 12539a88b54bdf1f301810ac611c50d7ad71f65d Mon Sep 17 00:00:00 2001 From: QuqqU Date: Tue, 17 Jan 2023 02:01:03 +0900 Subject: [PATCH 1/4] [Fix] Fix Typo in relay/expr.h --- include/tvm/relay/expr.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/tvm/relay/expr.h b/include/tvm/relay/expr.h index bd094a7f6905..6847a53caad4 100644 --- a/include/tvm/relay/expr.h +++ b/include/tvm/relay/expr.h @@ -265,7 +265,7 @@ class Var : public Expr { }; /*! - * \brief Returns \p vor with the given properties. A null property denotes 'no change'. + * \brief Returns \p var with the given properties. A null property denotes 'no change'. * Returns \p var if all properties are unchanged. Otherwise, returns a copy with the new * fields. */ From e2cc3309f493c6685bb040ecd9f9d924cd0e89f9 Mon Sep 17 00:00:00 2001 From: QuqqU Date: Tue, 17 Jan 2023 02:15:20 +0900 Subject: [PATCH 2/4] [Fix] Remove Duplicated Right Angle Bracket --- docs/dev/how_to/debugging_tvm.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/dev/how_to/debugging_tvm.rst b/docs/dev/how_to/debugging_tvm.rst index 8e3161077053..9df54af4f691 100644 --- a/docs/dev/how_to/debugging_tvm.rst +++ b/docs/dev/how_to/debugging_tvm.rst @@ -53,7 +53,7 @@ optimization). To enable VLOGging, do the following: level assignments of the form ``=``. Here are some specializations: - The special filename ``DEFAULT`` sets the VLOG level setting for all files. - - ``>`` can be set to ``-1`` to disable VLOG in that file. + - ```` can be set to ``-1`` to disable VLOG in that file. - ```` is the name of the c++ source file (e.g. ``.cc``, not ``.h``) relative to the ``src/`` directory in the TVM repo. You do not need to supply ``src/`` when specifying the file path, but if you do, VLOG will still interpret the path correctly. From 25ab989021f0ad09d50fe877e2c07a6110f0e6c6 Mon Sep 17 00:00:00 2001 From: QuqqU Date: Tue, 17 Jan 2023 02:15:48 +0900 Subject: [PATCH 3/4] [Fix] Add WhiteSpace --- gallery/tutorial/tvmc_command_line_driver.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gallery/tutorial/tvmc_command_line_driver.py b/gallery/tutorial/tvmc_command_line_driver.py index 27302b721bc1..a462e24dc7b8 100644 --- a/gallery/tutorial/tvmc_command_line_driver.py +++ b/gallery/tutorial/tvmc_command_line_driver.py @@ -52,7 +52,7 @@ # will vary depending on your platform and installation method. # # Alternatively, if you have TVM as a Python module on your -# ``$PYTHONPATH``,you can access the command line driver functionality +# ``$PYTHONPATH``, you can access the command line driver functionality # via the executable python module, ``python -m tvm.driver.tvmc``. # # For simplicity, this tutorial will mention TVMC command line using From 138a8354d06adfb49ee74e7d6ee90b4495925112 Mon Sep 17 00:00:00 2001 From: QuqqU Date: Tue, 17 Jan 2023 02:17:34 +0900 Subject: [PATCH 4/4] [Fix] Fix Parameter Values --- gallery/tutorial/autotvm_relay_x86.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gallery/tutorial/autotvm_relay_x86.py b/gallery/tutorial/autotvm_relay_x86.py index b7e9cebb5d6a..ef8fa4a113c3 100644 --- a/gallery/tutorial/autotvm_relay_x86.py +++ b/gallery/tutorial/autotvm_relay_x86.py @@ -344,7 +344,7 @@ # .. admonition:: Setting Tuning Parameters # # In this example, in the interest of time, we set the number of trials and -# early stopping to 10. You will likely see more performance improvements if +# early stopping to 20 and 100. You will likely see more performance improvements if # you set these values to be higher but this comes at the expense of time # spent tuning. The number of trials required for convergence will vary # depending on the specifics of the model and the target platform.