Skip to content

Commit

Permalink
fix typo (#1853)
Browse files Browse the repository at this point in the history
  • Loading branch information
sijialouintel authored Oct 23, 2024
1 parent f3a3bfc commit ea69cc2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions media/docs/cute/0x_gemm_tutorial.md
Original file line number Diff line number Diff line change
Expand Up @@ -106,10 +106,10 @@ How do we translate this into the BLAS user's experience?

| BLAS | A Majorness | A Layout | B Majorness | B Layout |
| --- | --- | --- | --- | --- |
| NT | M-major | `(M,K):(1,ldA)` | N-major | `(N,K):(1,ldA)` |
| NT | M-major | `(M,K):(1,ldA)` | N-major | `(N,K):(1,ldB)` |
| TN | K-major | `(M,K):(ldA,1)` | K-major | `(N,K):(ldB,1)` |
| NN | M-major | `(M,K):(1,ldA)` | K-major | `(N,K):(ldB,1)` |
| TT | K-major | `(M,K):(ldA,1)` | N-major | `(N,K):(1,ldA)` |
| TT | K-major | `(M,K):(ldA,1)` | N-major | `(N,K):(1,ldB)` |

Regardless, we'll still use the BLAS "NT" and "TN" notations for high-level descriptions of kernels when it's appropriate.

Expand Down

0 comments on commit ea69cc2

Please sign in to comment.