This is an automated email from the ASF dual-hosted git repository.
syfeng 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 20aeebdec0 [#14992][DOC][TUTORIAL] Fix typo for the 'Making your
Hardware Accelerator TVM-ready with UMA' (#15055)
20aeebdec0 is described below
commit 20aeebdec093db0597eb7b3ccdd20c40a0a3ccfa
Author: Neo Chien <[email protected]>
AuthorDate: Thu Jun 8 13:06:10 2023 +0800
[#14992][DOC][TUTORIAL] Fix typo for the 'Making your Hardware Accelerator
TVM-ready with UMA' (#15055)
[#14992][DOC][TUTORIAL]Fix typo for the 'Making your Hardware Accelerator
TVM-ready with UMA'
---
gallery/tutorial/uma.py | 2 +-
src/relay/printer/relay_text_printer.cc | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/gallery/tutorial/uma.py b/gallery/tutorial/uma.py
index 5380aa116f..a62a860453 100644
--- a/gallery/tutorial/uma.py
+++ b/gallery/tutorial/uma.py
@@ -79,7 +79,7 @@ Making your Hardware Accelerator TVM-ready with UMA
#
################################################################################
-# uma_cli.py generates these files in the directory ``vanilla_accelerator``
which we are going to revist.
+# uma_cli.py generates these files in the directory ``vanilla_accelerator``
which we are going to revisit.
#
# .. code-block:: bash
#
diff --git a/src/relay/printer/relay_text_printer.cc
b/src/relay/printer/relay_text_printer.cc
index f6a5b2926a..618e8fe138 100644
--- a/src/relay/printer/relay_text_printer.cc
+++ b/src/relay/printer/relay_text_printer.cc
@@ -555,7 +555,7 @@ Doc RelayTextPrinter::VisitExpr_(const MatchNode* op) {
Doc clause_doc;
clause_doc << PrintPattern(clause->lhs, false) << " => ";
Doc rhs_doc = PrintScope(clause->rhs);
- // TODO(@jroesch): This is unsound right now, and we need to revist it.
+ // TODO(@jroesch): This is unsound right now, and we need to revisit it.
// if (clause->rhs.as<LetNode>()) {
// only add braces if there are multiple lines on the rhs
rhs_doc = Doc::Brace("{", rhs_doc, "}");