[Mlir-commits] [mlir] acc3ca3 - Fix typo in Toy tutorial Ch1
Mehdi Amini
llvmlistbot at llvm.org
Wed Jun 9 09:10:05 PDT 2021
Author: Pavel Krajcevski
Date: 2021-06-09T16:09:01Z
New Revision: acc3ca3b7a08dc8d2690953af41a82652bb4f73b
URL: https://github.com/llvm/llvm-project/commit/acc3ca3b7a08dc8d2690953af41a82652bb4f73b
DIFF: https://github.com/llvm/llvm-project/commit/acc3ca3b7a08dc8d2690953af41a82652bb4f73b.diff
LOG: Fix typo in Toy tutorial Ch1
This aligns the website with the actual test case in the repo.
Reviewed By: mehdi_amini
Differential Revision: https://reviews.llvm.org/D84193
Added:
Modified:
mlir/docs/Tutorials/Toy/Ch-1.md
Removed:
################################################################################
diff --git a/mlir/docs/Tutorials/Toy/Ch-1.md b/mlir/docs/Tutorials/Toy/Ch-1.md
index 2734bad5cf4a4..c851f18bf1cb2 100644
--- a/mlir/docs/Tutorials/Toy/Ch-1.md
+++ b/mlir/docs/Tutorials/Toy/Ch-1.md
@@ -59,7 +59,7 @@ def main() {
# A new call with <3, 2> (instead of <2, 3>) for both dimensions will
# trigger another specialization of `multiply_transpose`.
- var e = multiply_transpose(c, d);
+ var e = multiply_transpose(b, c);
# Finally, calling into `multiply_transpose` with incompatible shape will
# trigger a shape inference error.
More information about the Mlir-commits
mailing list