Skip to content

Commit f9d24b4

Browse files
billishyahaoylc
authored andcommitted
This patch is to fix some minor typos in project. (apache#9852)
1 parent f369b0a commit f9d24b4

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

docs/arch/inferbound.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ Therefore, let's review the Range and IterVar classes:
4040
public:
4141
Expr min;
4242
Expr extent;
43-
// remainder ommitted
43+
// remainder omitted
4444
};
4545
}}
4646
@@ -49,7 +49,7 @@ Therefore, let's review the Range and IterVar classes:
4949
public:
5050
Range dom;
5151
Var var;
52-
// remainder ommitted
52+
// remainder omitted
5353
};
5454
}
5555
@@ -413,7 +413,7 @@ If stage C is computed at axis j of stage D, we say that C is *attached* to ax
413413
414414
class StageNode : public Node {
415415
public:
416-
// ommitted
416+
// omitted
417417
418418
// For compute_at, attach_type = kScope
419419
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
425425
// The stage passed to compute_at, e.g., D
426426
Stage attach_stage;
427427
428-
// ommitted
428+
// omitted
429429
};
430430
431431
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 of D's j.

version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ def sync_version(pub_ver, local_ver, dry_run):
205205

206206
def main():
207207
logging.basicConfig(level=logging.INFO)
208-
parser = argparse.ArgumentParser(description="Detect and sychnronize version.")
208+
parser = argparse.ArgumentParser(description="Detect and synchronize version.")
209209
parser.add_argument(
210210
"--print-version",
211211
action="store_true",

0 commit comments

Comments
 (0)