diff options
author | Jack Xia <cijie@ualberta.ca> | 2021-06-23 11:17:00 +0800 |
---|---|---|
committer | Mehdi Amini <joker.eph@gmail.com> | 2021-06-23 03:33:34 +0000 |
commit | 4666f309df8bffa602d055f8ccd2bc93d1a24888 (patch) | |
tree | edc469650147e4358acf6d9be7c94d3bd05c3e3e | |
parent | 84bd07aff901e4f35b48ae46699dd9424d16f90c (diff) | |
download | llvm-4666f309df8bffa602d055f8ccd2bc93d1a24888.zip llvm-4666f309df8bffa602d055f8ccd2bc93d1a24888.tar.gz llvm-4666f309df8bffa602d055f8ccd2bc93d1a24888.tar.bz2 |
Fix typo in Toy Tutorial Ch-4
multiple_transpose -> multiply_transpose
-rw-r--r-- | mlir/docs/Tutorials/Toy/Ch-4.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mlir/docs/Tutorials/Toy/Ch-4.md b/mlir/docs/Tutorials/Toy/Ch-4.md index 76102d2..5eaa215 100644 --- a/mlir/docs/Tutorials/Toy/Ch-4.md +++ b/mlir/docs/Tutorials/Toy/Ch-4.md @@ -172,7 +172,7 @@ func @main() { } ``` -We have two calls to multiple_transpose that we would like to inline into main, +We have two calls to multiply_transpose that we would like to inline into main, but if we look at the output nothing has changed. We are missing one last subtle piece: there is a hidden type conversion on the edge of the call. If we look at the above, the operands to the generic_call are of type `tensor<2x3xf64>`, while |