Fix typo in Toy Tutorial Ch-4

multiple_transpose -> multiply_transpose
This commit is contained in:
Jack Xia 2021-06-23 11:17:00 +08:00 committed by Mehdi Amini
parent 84bd07aff9
commit 4666f309df
1 changed files with 1 additions and 1 deletions

View 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