[Mlir-commits] [mlir] 4666f30 - Fix typo in Toy Tutorial Ch-4

Mehdi Amini llvmlistbot at llvm.org
Tue Jun 22 20:33:43 PDT 2021


Author: Jack Xia
Date: 2021-06-23T03:33:34Z
New Revision: 4666f309df8bffa602d055f8ccd2bc93d1a24888

URL: https://github.com/llvm/llvm-project/commit/4666f309df8bffa602d055f8ccd2bc93d1a24888
DIFF: https://github.com/llvm/llvm-project/commit/4666f309df8bffa602d055f8ccd2bc93d1a24888.diff

LOG: Fix typo in Toy Tutorial Ch-4

multiple_transpose -> multiply_transpose

Added: 
    

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

Removed: 
    


################################################################################
diff  --git a/mlir/docs/Tutorials/Toy/Ch-4.md b/mlir/docs/Tutorials/Toy/Ch-4.md
index 76102d2a222d..5eaa2156a845 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


        


More information about the Mlir-commits mailing list