This is an automated email from the ASF dual-hosted git repository.
leandron 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 818bd48 This patch is to fix some minor typos in project. (#9852)
818bd48 is described below
commit 818bd4880bc18b2c00ac8d6d26e5e27e4a667782
Author: billishyahao <[email protected]>
AuthorDate: Thu Jan 6 23:19:26 2022 +0800
This patch is to fix some minor typos in project. (#9852)
---
docs/arch/inferbound.rst | 8 ++++----
version.py | 2 +-
2 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/docs/arch/inferbound.rst b/docs/arch/inferbound.rst
index 28e034d..9c78a9d 100644
--- a/docs/arch/inferbound.rst
+++ b/docs/arch/inferbound.rst
@@ -40,7 +40,7 @@ Therefore, let's review the Range and IterVar classes:
public:
Expr min;
Expr extent;
- // remainder ommitted
+ // remainder omitted
};
}}
@@ -49,7 +49,7 @@ Therefore, let's review the Range and IterVar classes:
public:
Range dom;
Var var;
- // remainder ommitted
+ // remainder omitted
};
}
@@ -413,7 +413,7 @@ If stage C is computed at axis j of stage D, we say that C
is *attached* to ax
class StageNode : public Node {
public:
- // ommitted
+ // omitted
// For compute_at, attach_type = kScope
AttachType attach_type;
@@ -425,7 +425,7 @@ If stage C is computed at axis j of stage D, we say that C
is *attached* to ax
// The stage passed to compute_at, e.g., D
Stage attach_stage;
- // ommitted
+ // omitted
};
Consider the above examples again. In order for InferBound to determine how
many elements of C must be computed, it is important to know whether the
computation of C occurs within the scope of a leaf variable of D, or above that
scope. For example, in Ex. 1, the computation of C occurs *above* the scopes
of all of D's leaf variables. In Ex. 2, the computation of C occurs *within*
the scope of all of D's leaf variables. In Ex. 3, C occurs within the scope of
D's i, but above the scope [...]
diff --git a/version.py b/version.py
index f6b8c6b..4c65b95 100644
--- a/version.py
+++ b/version.py
@@ -205,7 +205,7 @@ def sync_version(pub_ver, local_ver, dry_run):
def main():
logging.basicConfig(level=logging.INFO)
- parser = argparse.ArgumentParser(description="Detect and sychnronize
version.")
+ parser = argparse.ArgumentParser(description="Detect and synchronize
version.")
parser.add_argument(
"--print-version",
action="store_true",