This is an automated email from the ASF dual-hosted git repository.
masahi 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 1acb907346 [FIX] Fix Typos in Docs and Comments (#13793)
1acb907346 is described below
commit 1acb907346e102009e07441ff4df0723b77b06f9
Author: QuqqU <[email protected]>
AuthorDate: Tue Jan 17 08:21:42 2023 +0900
[FIX] Fix Typos in Docs and Comments (#13793)
* [Fix] Fix Typo in relay/expr.h
* [Fix] Remove Duplicated Right Angle Bracket
* [Fix] Add WhiteSpace
* [Fix] Fix Parameter Values
---
docs/dev/how_to/debugging_tvm.rst | 2 +-
gallery/tutorial/autotvm_relay_x86.py | 2 +-
gallery/tutorial/tvmc_command_line_driver.py | 2 +-
include/tvm/relay/expr.h | 2 +-
4 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/docs/dev/how_to/debugging_tvm.rst
b/docs/dev/how_to/debugging_tvm.rst
index 8e31610770..9df54af4f6 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 ``<file_name>=<level>``. Here are some
specializations:
- The special filename ``DEFAULT`` sets the VLOG level setting for all
files.
- - ``<level>>`` can be set to ``-1`` to disable VLOG in that file.
+ - ``<level>`` can be set to ``-1`` to disable VLOG in that file.
- ``<file_name>`` 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.
diff --git a/gallery/tutorial/autotvm_relay_x86.py
b/gallery/tutorial/autotvm_relay_x86.py
index b7e9cebb5d..ef8fa4a113 100644
--- a/gallery/tutorial/autotvm_relay_x86.py
+++ b/gallery/tutorial/autotvm_relay_x86.py
@@ -344,7 +344,7 @@ tuning_option = {
# .. 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.
diff --git a/gallery/tutorial/tvmc_command_line_driver.py
b/gallery/tutorial/tvmc_command_line_driver.py
index 27302b721b..a462e24dc7 100644
--- a/gallery/tutorial/tvmc_command_line_driver.py
+++ b/gallery/tutorial/tvmc_command_line_driver.py
@@ -52,7 +52,7 @@ capabilities, and set the stage for understanding how TVM
works.
# 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
diff --git a/include/tvm/relay/expr.h b/include/tvm/relay/expr.h
index bd094a7f69..6847a53caa 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.
*/