From b27c49e84a8d1a2a1ec3341b7ad91164ce65c70e Mon Sep 17 00:00:00 2001 From: Wilber Date: Tue, 8 Oct 2024 00:38:32 +0800 Subject: [PATCH] Fix cute doc (#1529) --- media/docs/cute/0x_gemm_tutorial.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/media/docs/cute/0x_gemm_tutorial.md b/media/docs/cute/0x_gemm_tutorial.md index 533d4b4be0..451e52e4ed 100644 --- a/media/docs/cute/0x_gemm_tutorial.md +++ b/media/docs/cute/0x_gemm_tutorial.md @@ -150,7 +150,7 @@ This `local_tile` is simply shorthand for 1. apply the tiler via [`zipped_divide`](./02_layout_algebra.md#zipped-tiled-flat-divides) ```cpp // ((BLK_M,BLK_K),(m,k)) -Tensor gA_mk = zipped_divide(gA, select<0,2>(cta_tiler)); +Tensor gA_mk = zipped_divide(mA, select<0,2>(cta_tiler)); ``` 2. apply the coord to the second mode, the "Rest" mode, to extract out the correct tiles for this CTA. ```cpp