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. 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. 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 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. */