Fix typo in Toy Tutorial Ch-4
authorJack Xia <cijie@ualberta.ca>
Wed, 23 Jun 2021 03:17:00 +0000 (11:17 +0800)
committerMehdi Amini <joker.eph@gmail.com>
Wed, 23 Jun 2021 03:33:34 +0000 (03:33 +0000)
multiple_transpose -> multiply_transpose

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

index 76102d2..5eaa215 100644 (file)
@@ -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