diff options
| author | River Riddle <riverriddle@google.com> | 2019-04-04 18:34:41 -0700 |
|---|---|---|
| committer | Mehdi Amini <joker.eph@gmail.com> | 2019-04-05 07:43:05 -0700 |
| commit | fde21c6fafb39a46132a4ba32e9ea4e738440deb (patch) | |
| tree | df9e7f443942cc1576a02eb4efe697d964caaab8 /mlir/test/Examples | |
| parent | d33a9dcc73252ee129c58bd975f43e7e7b198050 (diff) | |
| download | bcm5719-llvm-fde21c6fafb39a46132a4ba32e9ea4e738440deb.tar.gz bcm5719-llvm-fde21c6fafb39a46132a4ba32e9ea4e738440deb.zip | |
NFC: Fix a few typos in the tutorials and one in the comment of FunctionAttr::dropFunctionReference.
--
PiperOrigin-RevId: 242050934
Diffstat (limited to 'mlir/test/Examples')
| -rw-r--r-- | mlir/test/Examples/Toy/Ch1/ast.toy | 2 | ||||
| -rw-r--r-- | mlir/test/Examples/Toy/Ch2/ast.toy | 2 | ||||
| -rw-r--r-- | mlir/test/Examples/Toy/Ch3/ast.toy | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/mlir/test/Examples/Toy/Ch1/ast.toy b/mlir/test/Examples/Toy/Ch1/ast.toy index 00698696b8e..dd315ea8db5 100644 --- a/mlir/test/Examples/Toy/Ch1/ast.toy +++ b/mlir/test/Examples/Toy/Ch1/ast.toy @@ -10,7 +10,7 @@ def main() { # Define a variable `a` with shape <2, 3>, initialized with the literal value. # The shape is inferred from the supplied literal. var a = [[1, 2, 3], [4, 5, 6]]; - # b is identical to a, the literal array is implicitely reshaped: defining new + # b is identical to a, the literal array is implicitly reshaped: defining new # variables is the way to reshape arrays (element count must match). var b<2, 3> = [1, 2, 3, 4, 5, 6]; # This call will specialize `multiply_transpose` with <2, 3> for both diff --git a/mlir/test/Examples/Toy/Ch2/ast.toy b/mlir/test/Examples/Toy/Ch2/ast.toy index 91f26b78d2b..1287ee16495 100644 --- a/mlir/test/Examples/Toy/Ch2/ast.toy +++ b/mlir/test/Examples/Toy/Ch2/ast.toy @@ -10,7 +10,7 @@ def main() { # Define a variable `a` with shape <2, 3>, initialized with the literal value. # The shape is inferred from the supplied literal. var a = [[1, 2, 3], [4, 5, 6]]; - # b is identical to a, the literal array is implicitely reshaped: defining new + # b is identical to a, the literal array is implicitly reshaped: defining new # variables is the way to reshape arrays (element count must match). var b<2, 3> = [1, 2, 3, 4, 5, 6]; # This call will specialize `multiply_transpose` with <2, 3> for both diff --git a/mlir/test/Examples/Toy/Ch3/ast.toy b/mlir/test/Examples/Toy/Ch3/ast.toy index 0c904216757..19400f1080a 100644 --- a/mlir/test/Examples/Toy/Ch3/ast.toy +++ b/mlir/test/Examples/Toy/Ch3/ast.toy @@ -10,7 +10,7 @@ def main() { # Define a variable `a` with shape <2, 3>, initialized with the literal value. # The shape is inferred from the supplied literal. var a = [[1, 2, 3], [4, 5, 6]]; - # b is identical to a, the literal array is implicitely reshaped: defining new + # b is identical to a, the literal array is implicitly reshaped: defining new # variables is the way to reshape arrays (element count must match). var b<2, 3> = [1, 2, 3, 4, 5, 6]; # This call will specialize `multiply_transpose` with <2, 3> for both |

