summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--mlir/g3doc/Tutorials/Toy/Ch-1.md2
-rw-r--r--mlir/test/Examples/Toy/Ch1/ast.toy4
-rw-r--r--mlir/test/Examples/Toy/Ch2/ast.toy4
-rw-r--r--mlir/test/Examples/Toy/Ch3/ast.toy4
-rw-r--r--mlir/test/Examples/Toy/Ch4/ast.toy4
-rw-r--r--mlir/test/Examples/Toy/Ch5/ast.toy4
-rw-r--r--mlir/test/Examples/Toy/Ch6/ast.toy4
-rw-r--r--mlir/test/Examples/Toy/Ch7/ast.toy4
8 files changed, 15 insertions, 15 deletions
diff --git a/mlir/g3doc/Tutorials/Toy/Ch-1.md b/mlir/g3doc/Tutorials/Toy/Ch-1.md
index 650a135619e..b8beff8d3f5 100644
--- a/mlir/g3doc/Tutorials/Toy/Ch-1.md
+++ b/mlir/g3doc/Tutorials/Toy/Ch-1.md
@@ -145,7 +145,7 @@ Module:
var: b @test/ast.toy:21:30
var: c @test/ast.toy:21:33
]
- VarDecl e<> @test/ast.toy:24:3
+ VarDecl f<> @test/ast.toy:24:3
Call 'multiply_transpose' [ @test/ast.toy:24:11
Call 'transpose' [ @test/ast.toy:24:30
var: a @test/ast.toy:24:40
diff --git a/mlir/test/Examples/Toy/Ch1/ast.toy b/mlir/test/Examples/Toy/Ch1/ast.toy
index df6e1a60ca9..f13d690a7d0 100644
--- a/mlir/test/Examples/Toy/Ch1/ast.toy
+++ b/mlir/test/Examples/Toy/Ch1/ast.toy
@@ -25,7 +25,7 @@ def main() {
var e = multiply_transpose(b, c);
# Finally, calling into `multiply_transpose` with incompatible shape will
# trigger a shape inference error.
- var e = multiply_transpose(transpose(a), c);
+ var f = multiply_transpose(transpose(a), c);
}
@@ -66,7 +66,7 @@ def main() {
# CHECK-NEXT: var: b @{{.*}}ast.toy:25:30
# CHECK-NEXT: var: c @{{.*}}ast.toy:25:33
# CHECK-NEXT: ]
-# CHECK-NEXT: VarDecl e<> @{{.*}}ast.toy:28:3
+# CHECK-NEXT: VarDecl f<> @{{.*}}ast.toy:28:3
# CHECK-NEXT: Call 'multiply_transpose' [ @{{.*}}ast.toy:28:11
# CHECK-NEXT: Call 'transpose' [ @{{.*}}ast.toy:28:30
# CHECK-NEXT: var: a @{{.*}}ast.toy:28:40
diff --git a/mlir/test/Examples/Toy/Ch2/ast.toy b/mlir/test/Examples/Toy/Ch2/ast.toy
index 55b9efc7314..5f399372f60 100644
--- a/mlir/test/Examples/Toy/Ch2/ast.toy
+++ b/mlir/test/Examples/Toy/Ch2/ast.toy
@@ -25,7 +25,7 @@ def main() {
var e = multiply_transpose(b, c);
# Finally, calling into `multiply_transpose` with incompatible shape will
# trigger a shape inference error.
- var e = multiply_transpose(transpose(a), c);
+ var f = multiply_transpose(transpose(a), c);
}
@@ -66,7 +66,7 @@ def main() {
# CHECK-NEXT: var: b @{{.*}}ast.toy:25:30
# CHECK-NEXT: var: c @{{.*}}ast.toy:25:33
# CHECK-NEXT: ]
-# CHECK-NEXT: VarDecl e<> @{{.*}}ast.toy:28:3
+# CHECK-NEXT: VarDecl f<> @{{.*}}ast.toy:28:3
# CHECK-NEXT: Call 'multiply_transpose' [ @{{.*}}ast.toy:28:11
# CHECK-NEXT: Call 'transpose' [ @{{.*}}ast.toy:28:30
# CHECK-NEXT: var: a @{{.*}}ast.toy:28:40
diff --git a/mlir/test/Examples/Toy/Ch3/ast.toy b/mlir/test/Examples/Toy/Ch3/ast.toy
index e1f5bee8126..b8e4eb0bccc 100644
--- a/mlir/test/Examples/Toy/Ch3/ast.toy
+++ b/mlir/test/Examples/Toy/Ch3/ast.toy
@@ -25,7 +25,7 @@ def main() {
var e = multiply_transpose(b, c);
# Finally, calling into `multiply_transpose` with incompatible shape will
# trigger a shape inference error.
- var e = multiply_transpose(transpose(a), c);
+ var f = multiply_transpose(transpose(a), c);
}
@@ -66,7 +66,7 @@ def main() {
# CHECK-NEXT: var: b @{{.*}}ast.toy:25:30
# CHECK-NEXT: var: c @{{.*}}ast.toy:25:33
# CHECK-NEXT: ]
-# CHECK-NEXT: VarDecl e<> @{{.*}}ast.toy:28:3
+# CHECK-NEXT: VarDecl f<> @{{.*}}ast.toy:28:3
# CHECK-NEXT: Call 'multiply_transpose' [ @{{.*}}ast.toy:28:11
# CHECK-NEXT: Call 'transpose' [ @{{.*}}ast.toy:28:30
# CHECK-NEXT: var: a @{{.*}}ast.toy:28:40
diff --git a/mlir/test/Examples/Toy/Ch4/ast.toy b/mlir/test/Examples/Toy/Ch4/ast.toy
index 18a88e5e6bb..c991cc130cd 100644
--- a/mlir/test/Examples/Toy/Ch4/ast.toy
+++ b/mlir/test/Examples/Toy/Ch4/ast.toy
@@ -25,7 +25,7 @@ def main() {
var e = multiply_transpose(b, c);
# Finally, calling into `multiply_transpose` with incompatible shape will
# trigger a shape inference error.
- var e = multiply_transpose(transpose(a), c);
+ var f = multiply_transpose(transpose(a), c);
}
@@ -66,7 +66,7 @@ def main() {
# CHECK-NEXT: var: b @{{.*}}ast.toy:25:30
# CHECK-NEXT: var: c @{{.*}}ast.toy:25:33
# CHECK-NEXT: ]
-# CHECK-NEXT: VarDecl e<> @{{.*}}ast.toy:28:3
+# CHECK-NEXT: VarDecl f<> @{{.*}}ast.toy:28:3
# CHECK-NEXT: Call 'multiply_transpose' [ @{{.*}}ast.toy:28:11
# CHECK-NEXT: Call 'transpose' [ @{{.*}}ast.toy:28:30
# CHECK-NEXT: var: a @{{.*}}ast.toy:28:40
diff --git a/mlir/test/Examples/Toy/Ch5/ast.toy b/mlir/test/Examples/Toy/Ch5/ast.toy
index ba7456d27a3..4f45c30f0ad 100644
--- a/mlir/test/Examples/Toy/Ch5/ast.toy
+++ b/mlir/test/Examples/Toy/Ch5/ast.toy
@@ -25,7 +25,7 @@ def main() {
var e = multiply_transpose(b, c);
# Finally, calling into `multiply_transpose` with incompatible shape will
# trigger a shape inference error.
- var e = multiply_transpose(transpose(a), c);
+ var f = multiply_transpose(transpose(a), c);
}
@@ -66,7 +66,7 @@ def main() {
# CHECK-NEXT: var: b @{{.*}}ast.toy:25:30
# CHECK-NEXT: var: c @{{.*}}ast.toy:25:33
# CHECK-NEXT: ]
-# CHECK-NEXT: VarDecl e<> @{{.*}}ast.toy:28:3
+# CHECK-NEXT: VarDecl f<> @{{.*}}ast.toy:28:3
# CHECK-NEXT: Call 'multiply_transpose' [ @{{.*}}ast.toy:28:11
# CHECK-NEXT: Call 'transpose' [ @{{.*}}ast.toy:28:30
# CHECK-NEXT: var: a @{{.*}}ast.toy:28:40
diff --git a/mlir/test/Examples/Toy/Ch6/ast.toy b/mlir/test/Examples/Toy/Ch6/ast.toy
index cc7e5698fe6..38eaa1c4280 100644
--- a/mlir/test/Examples/Toy/Ch6/ast.toy
+++ b/mlir/test/Examples/Toy/Ch6/ast.toy
@@ -25,7 +25,7 @@ def main() {
var e = multiply_transpose(b, c);
# Finally, calling into `multiply_transpose` with incompatible shape will
# trigger a shape inference error.
- var e = multiply_transpose(transpose(a), c);
+ var f = multiply_transpose(transpose(a), c);
}
@@ -66,7 +66,7 @@ def main() {
# CHECK-NEXT: var: b @{{.*}}ast.toy:25:30
# CHECK-NEXT: var: c @{{.*}}ast.toy:25:33
# CHECK-NEXT: ]
-# CHECK-NEXT: VarDecl e<> @{{.*}}ast.toy:28:3
+# CHECK-NEXT: VarDecl f<> @{{.*}}ast.toy:28:3
# CHECK-NEXT: Call 'multiply_transpose' [ @{{.*}}ast.toy:28:11
# CHECK-NEXT: Call 'transpose' [ @{{.*}}ast.toy:28:30
# CHECK-NEXT: var: a @{{.*}}ast.toy:28:40
diff --git a/mlir/test/Examples/Toy/Ch7/ast.toy b/mlir/test/Examples/Toy/Ch7/ast.toy
index b32410e58e7..05cde0339ae 100644
--- a/mlir/test/Examples/Toy/Ch7/ast.toy
+++ b/mlir/test/Examples/Toy/Ch7/ast.toy
@@ -25,7 +25,7 @@ def main() {
var e = multiply_transpose(b, c);
# Finally, calling into `multiply_transpose` with incompatible shape will
# trigger a shape inference error.
- var e = multiply_transpose(transpose(a), c);
+ var f = multiply_transpose(transpose(a), c);
}
@@ -66,7 +66,7 @@ def main() {
# CHECK-NEXT: var: b @{{.*}}ast.toy:25:30
# CHECK-NEXT: var: c @{{.*}}ast.toy:25:33
# CHECK-NEXT: ]
-# CHECK-NEXT: VarDecl e<> @{{.*}}ast.toy:28:3
+# CHECK-NEXT: VarDecl f<> @{{.*}}ast.toy:28:3
# CHECK-NEXT: Call 'multiply_transpose' [ @{{.*}}ast.toy:28:11
# CHECK-NEXT: Call 'transpose' [ @{{.*}}ast.toy:28:30
# CHECK-NEXT: var: a @{{.*}}ast.toy:28:40
OpenPOWER on IntegriCloud