Fix typo in Toy tutorial Ch1
authorPavel Krajcevski <krajcevski@google.com>
Wed, 9 Jun 2021 16:07:56 +0000 (16:07 +0000)
committerMehdi Amini <joker.eph@gmail.com>
Wed, 9 Jun 2021 16:09:01 +0000 (16:09 +0000)
This aligns the website with the actual test case in the repo.

Reviewed By: mehdi_amini

Differential Revision: https://reviews.llvm.org/D84193

mlir/docs/Tutorials/Toy/Ch-1.md

index 2734bad..c851f18 100644 (file)
@@ -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.