From: Pavel Krajcevski Date: Wed, 9 Jun 2021 16:07:56 +0000 (+0000) Subject: Fix typo in Toy tutorial Ch1 X-Git-Tag: llvmorg-14-init~4427 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=acc3ca3b7a08dc8d2690953af41a82652bb4f73b;p=platform%2Fupstream%2Fllvm.git 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 --- diff --git a/mlir/docs/Tutorials/Toy/Ch-1.md b/mlir/docs/Tutorials/Toy/Ch-1.md index 2734bad..c851f18 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.