From 79d37b4d0b0b6059d4ec0eba9f2f41793d4aa6bf Mon Sep 17 00:00:00 2001 From: Vidyasagar Date: Thu, 2 Oct 2025 11:16:25 -0700 Subject: [PATCH] Updates based on PR feedback 2 --- client_example/01_gemm/README.md | 6 ++---- client_example/02_gemm_add_add_fastgelu/README.md | 6 ++---- client_example/03_gemm_layernorm/README.md | 6 ++---- client_example/04_contraction/README.md | 6 ++---- client_example/05_layernorm/README.md | 6 ++---- client_example/06_softmax/README.md | 6 ++---- client_example/07_grouped_convnd_fwd/README.md | 6 ++---- client_example/08_fused_attention/README.md | 6 ++---- client_example/09_quantization/README.md | 6 ++---- client_example/10_grouped_convnd_bwd_data/README.md | 6 ++---- client_example/11_grouped_conv_bwd_weight/README.md | 6 ++---- client_example/12_elementwise_normalization/README.md | 6 ++---- client_example/13_batchnorm/README.md | 6 ++---- client_example/14_instance_id/README.md | 6 ++---- client_example/15_convnd_bwd_data/README.md | 6 ++---- client_example/16_convnd_fwd/README.md | 6 ++---- client_example/17_grouped_gemm_fastgelu/README.md | 6 ++---- client_example/18_groupnorm/README.md | 6 ++---- client_example/19_pool/README.md | 6 ++---- client_example/20_splitk_gemm/README.md | 6 ++---- client_example/21_grouped_gemm_bias/README.md | 6 ++---- client_example/22_grouped_gemm/README.md | 6 ++---- client_example/23_elementwise_transpose/README.md | 6 ++---- client_example/24_grouped_conv_activation/README.md | 6 ++---- client_example/26_reduce/README.md | 6 ++---- client_example/27_im2col_col2im/README.md | 6 ++---- client_example/29_gemm_add_multiply/README.md | 6 ++---- example/04_gemm_add_add_fastgelu/README.md | 6 ++---- example/09_convnd_fwd/README.md | 6 ++---- example/10_convnd_fwd_multiple_d_multiple_reduce/README.md | 6 ++---- example/11_convnd_fwd_bias/README.md | 6 ++---- example/12_reduce/README.md | 6 ++---- example/13_pool2d_fwd/README.md | 6 ++---- example/14_gemm_quantization/README.md | 6 ++---- example/15_grouped_gemm/README.md | 6 ++---- example/16_gemm_multi_d_multi_reduces/README.md | 6 ++---- example/21_gemm_layernorm/README.md | 6 ++---- example/23_softmax/README.md | 6 ++---- example/24_batched_gemm/README.md | 6 ++---- example/25_gemm_bias_e_permute/README.md | 6 ++---- example/27_layernorm2d_fwd/README.md | 6 ++---- example/32_batched_gemm_scale_softmax_gemm/README.md | 6 ++---- example/34_batchnorm/README.md | 6 ++---- example/39_permute/README.md | 6 ++---- example/40_conv2d_fwd_quantization/README.md | 6 ++---- example/44_elementwise_permute/README.md | 6 ++---- example/46_gemm_add_multiply/README.md | 6 ++---- 47 files changed, 94 insertions(+), 188 deletions(-) diff --git a/client_example/01_gemm/README.md b/client_example/01_gemm/README.md index d5adbd2eb2..6ff4958cee 100644 --- a/client_example/01_gemm/README.md +++ b/client_example/01_gemm/README.md @@ -145,10 +145,8 @@ Table of supported cases by instance factory with XDL instruction for Row/Row/Ro ## How to Run ### Prerequisites -```bash -cd composable_kernel/build -make -j install -``` + +Please follow the instructions in the main [Build Guide](../../README.md#building-ck) section as a prerequisite to building and running this example. ### Build and run ```bash diff --git a/client_example/02_gemm_add_add_fastgelu/README.md b/client_example/02_gemm_add_add_fastgelu/README.md index 489f3654e7..791cca83ae 100644 --- a/client_example/02_gemm_add_add_fastgelu/README.md +++ b/client_example/02_gemm_add_add_fastgelu/README.md @@ -27,10 +27,8 @@ where $\sigma$ is the sigmoid function. ## How to Run ### Prerequisites -```bash -cd composable_kernel/build -make -j install -``` + +Please follow the instructions in the main [Build Guide](../../README.md#building-ck) section as a prerequisite to building and running this example. ### Build and run ```bash diff --git a/client_example/03_gemm_layernorm/README.md b/client_example/03_gemm_layernorm/README.md index 8590dc8722..6b4f4b6ab4 100644 --- a/client_example/03_gemm_layernorm/README.md +++ b/client_example/03_gemm_layernorm/README.md @@ -20,10 +20,8 @@ $\mu$, $\sigma^2$ are mean and variance over the normalization axis; $\gamma$, $ ## How to Run ### Prerequisites -```bash -cd composable_kernel/build -make -j install -``` + +Please follow the instructions in the main [Build Guide](../../README.md#building-ck) section as a prerequisite to building and running this example. ### Build and run ```bash diff --git a/client_example/04_contraction/README.md b/client_example/04_contraction/README.md index 1f8d76153a..affb150a7f 100644 --- a/client_example/04_contraction/README.md +++ b/client_example/04_contraction/README.md @@ -16,10 +16,8 @@ This client example demonstrates **general tensor contraction** operations, incl ## How to Run ### Prerequisites -```bash -cd composable_kernel/build -make -j install -``` + +Please follow the instructions in the main [Build Guide](../../README.md#building-ck) section as a prerequisite to building and running this example. ### Build and run ```bash diff --git a/client_example/05_layernorm/README.md b/client_example/05_layernorm/README.md index 51e05617e8..ed33a1949d 100644 --- a/client_example/05_layernorm/README.md +++ b/client_example/05_layernorm/README.md @@ -21,10 +21,8 @@ $\gamma$, $\beta$ are learnable scale and shift parameters. ## How to Run ### Prerequisites -```bash -cd composable_kernel/build -make -j install -``` + +Please follow the instructions in the main [Build Guide](../../README.md#building-ck) section as a prerequisite to building and running this example. ### Build and run ```bash diff --git a/client_example/06_softmax/README.md b/client_example/06_softmax/README.md index a6542d3acb..6ad6da5703 100644 --- a/client_example/06_softmax/README.md +++ b/client_example/06_softmax/README.md @@ -21,10 +21,8 @@ $$ ## How to Run ### Prerequisites -```bash -cd composable_kernel/build -make -j install -``` + +Please follow the instructions in the main [Build Guide](../../README.md#building-ck) section as a prerequisite to building and running this example. ### Build and run ```bash diff --git a/client_example/07_grouped_convnd_fwd/README.md b/client_example/07_grouped_convnd_fwd/README.md index c419ff2748..d8229fef84 100644 --- a/client_example/07_grouped_convnd_fwd/README.md +++ b/client_example/07_grouped_convnd_fwd/README.md @@ -84,10 +84,8 @@ Table of supported cases by instance factory with fused elementwise operation: ## How to Run ### Prerequisites -```bash -cd composable_kernel/build -make -j install -``` + +Please follow the instructions in the main [Build Guide](../../README.md#building-ck) section as a prerequisite to building and running this example. ### Build and run ```bash diff --git a/client_example/08_fused_attention/README.md b/client_example/08_fused_attention/README.md index a4994d3d33..44a819104a 100644 --- a/client_example/08_fused_attention/README.md +++ b/client_example/08_fused_attention/README.md @@ -31,10 +31,8 @@ $$ ## How to Run ### Prerequisites -```bash -cd composable_kernel/build -make -j install -``` + +Please follow the instructions in the main [Build Guide](../../README.md#building-ck) section as a prerequisite to building and running this example. ### Build and run ```bash diff --git a/client_example/09_quantization/README.md b/client_example/09_quantization/README.md index 0af4b4bede..3fde30a974 100644 --- a/client_example/09_quantization/README.md +++ b/client_example/09_quantization/README.md @@ -20,10 +20,8 @@ This client example demonstrates **quantized GEMM and 2D convolution** operation ## How to Run ### Prerequisites -```bash -cd composable_kernel/build -make -j install -``` + +Please follow the instructions in the main [Build Guide](../../README.md#building-ck) section as a prerequisite to building and running this example. ### Build and run ```bash diff --git a/client_example/10_grouped_convnd_bwd_data/README.md b/client_example/10_grouped_convnd_bwd_data/README.md index 2e732b1133..824cd9ce55 100644 --- a/client_example/10_grouped_convnd_bwd_data/README.md +++ b/client_example/10_grouped_convnd_bwd_data/README.md @@ -66,10 +66,8 @@ $$ ## How to Run ### Prerequisites -```bash -cd composable_kernel/build -make -j install -``` + +Please follow the instructions in the main [Build Guide](../../README.md#building-ck) section as a prerequisite to building and running this example. ### Build and run ```bash diff --git a/client_example/11_grouped_conv_bwd_weight/README.md b/client_example/11_grouped_conv_bwd_weight/README.md index 389b80c75a..03507252f6 100644 --- a/client_example/11_grouped_conv_bwd_weight/README.md +++ b/client_example/11_grouped_conv_bwd_weight/README.md @@ -81,10 +81,8 @@ $$ ## How to Run ### Prerequisites -```bash -cd composable_kernel/build -make -j install -``` + +Please follow the instructions in the main [Build Guide](../../README.md#building-ck) section as a prerequisite to building and running this example. ### Build and run ```bash diff --git a/client_example/12_elementwise_normalization/README.md b/client_example/12_elementwise_normalization/README.md index 3498b50060..f48b398498 100644 --- a/client_example/12_elementwise_normalization/README.md +++ b/client_example/12_elementwise_normalization/README.md @@ -21,10 +21,8 @@ $\gamma$, $\beta$ are learnable scale and shift parameters. ## How to Run ### Prerequisites -```bash -cd composable_kernel/build -make -j install -``` + +Please follow the instructions in the main [Build Guide](../../README.md#building-ck) section as a prerequisite to building and running this example. ### Build and run ```bash diff --git a/client_example/13_batchnorm/README.md b/client_example/13_batchnorm/README.md index fdef24a6ab..85bdd53cc4 100644 --- a/client_example/13_batchnorm/README.md +++ b/client_example/13_batchnorm/README.md @@ -21,10 +21,8 @@ $\gamma_c$, $\beta_c$ are learnable scale and shift parameters per channel. ## How to Run ### Prerequisites -```bash -cd composable_kernel/build -make -j install -``` + +Please follow the instructions in the main [Build Guide](../../README.md#building-ck) section as a prerequisite to building and running this example. ### Build and run ```bash diff --git a/client_example/14_instance_id/README.md b/client_example/14_instance_id/README.md index 8a9d0c45c8..ce15cbddac 100644 --- a/client_example/14_instance_id/README.md +++ b/client_example/14_instance_id/README.md @@ -15,10 +15,8 @@ See [BatchNorm Theory](../13_batchnorm/README.md) for the mathematical details o ## How to Run ### Prerequisites -```bash -cd composable_kernel/build -make -j install -``` + +Please follow the instructions in the main [Build Guide](../../README.md#building-ck) section as a prerequisite to building and running this example. ### Build and run ```bash diff --git a/client_example/15_convnd_bwd_data/README.md b/client_example/15_convnd_bwd_data/README.md index 01ab17f847..be6019c315 100644 --- a/client_example/15_convnd_bwd_data/README.md +++ b/client_example/15_convnd_bwd_data/README.md @@ -20,10 +20,8 @@ $$ ## How to Run ### Prerequisites -```bash -cd composable_kernel/build -make -j install -``` + +Please follow the instructions in the main [Build Guide](../../README.md#building-ck) section as a prerequisite to building and running this example. ### Build and run ```bash diff --git a/client_example/16_convnd_fwd/README.md b/client_example/16_convnd_fwd/README.md index f79baad06a..c2c41d7251 100644 --- a/client_example/16_convnd_fwd/README.md +++ b/client_example/16_convnd_fwd/README.md @@ -20,10 +20,8 @@ $$ ## How to Run ### Prerequisites -```bash -cd composable_kernel/build -make -j install -``` + +Please follow the instructions in the main [Build Guide](../../README.md#building-ck) section as a prerequisite to building and running this example. ### Build and run ```bash diff --git a/client_example/17_grouped_gemm_fastgelu/README.md b/client_example/17_grouped_gemm_fastgelu/README.md index 6f22a3433d..80cae43522 100644 --- a/client_example/17_grouped_gemm_fastgelu/README.md +++ b/client_example/17_grouped_gemm_fastgelu/README.md @@ -23,10 +23,8 @@ where $\sigma$ is the sigmoid function. ## How to Run ### Prerequisites -```bash -cd composable_kernel/build -make -j install -``` + +Please follow the instructions in the main [Build Guide](../../README.md#building-ck) section as a prerequisite to building and running this example. ### Build and run ```bash diff --git a/client_example/18_groupnorm/README.md b/client_example/18_groupnorm/README.md index 54ade883a6..e60b10b354 100644 --- a/client_example/18_groupnorm/README.md +++ b/client_example/18_groupnorm/README.md @@ -24,10 +24,8 @@ $\gamma$, $\beta$ are learnable scale and shift parameters. ## How to Run ### Prerequisites -```bash -cd composable_kernel/build -make -j install -``` + +Please follow the instructions in the main [Build Guide](../../README.md#building-ck) section as a prerequisite to building and running this example. ### Build and run ```bash diff --git a/client_example/19_pool/README.md b/client_example/19_pool/README.md index 77ae6777fd..59a071dc3a 100644 --- a/client_example/19_pool/README.md +++ b/client_example/19_pool/README.md @@ -18,10 +18,8 @@ Where $s_H, s_W, s_D$ are strides, $k_H, k_W, k_D$ are kernel sizes. ## How to Run ### Prerequisites -```bash -cd composable_kernel/build -make -j install -``` + +Please follow the instructions in the main [Build Guide](../../README.md#building-ck) section as a prerequisite to building and running this example. ### Build and run ```bash diff --git a/client_example/20_splitk_gemm/README.md b/client_example/20_splitk_gemm/README.md index 1715bc499e..e8d421b136 100644 --- a/client_example/20_splitk_gemm/README.md +++ b/client_example/20_splitk_gemm/README.md @@ -19,10 +19,8 @@ This client example demonstrates **Split-K GEMM**, a technique for parallelizing ## How to Run ### Prerequisites -```bash -cd composable_kernel/build -make -j install -``` + +Please follow the instructions in the main [Build Guide](../../README.md#building-ck) section as a prerequisite to building and running this example. ### Build and run ```bash diff --git a/client_example/21_grouped_gemm_bias/README.md b/client_example/21_grouped_gemm_bias/README.md index 2a524a68ff..ee17d11312 100644 --- a/client_example/21_grouped_gemm_bias/README.md +++ b/client_example/21_grouped_gemm_bias/README.md @@ -17,10 +17,8 @@ For $G$ groups, each with its own $A_g$, $B_g$, $b_g$: ## How to Run ### Prerequisites -```bash -cd composable_kernel/build -make -j install -``` + +Please follow the instructions in the main [Build Guide](../../README.md#building-ck) section as a prerequisite to building and running this example. ### Build and run ```bash diff --git a/client_example/22_grouped_gemm/README.md b/client_example/22_grouped_gemm/README.md index 140dadd6e8..7213dbee6c 100644 --- a/client_example/22_grouped_gemm/README.md +++ b/client_example/22_grouped_gemm/README.md @@ -16,10 +16,8 @@ For $G$ groups, each with its own $A_g$, $B_g$: ## How to Run ### Prerequisites -```bash -cd composable_kernel/build -make -j install -``` + +Please follow the instructions in the main [Build Guide](../../README.md#building-ck) section as a prerequisite to building and running this example. ### Build and run ```bash diff --git a/client_example/23_elementwise_transpose/README.md b/client_example/23_elementwise_transpose/README.md index 297212ebfb..b59f1de566 100644 --- a/client_example/23_elementwise_transpose/README.md +++ b/client_example/23_elementwise_transpose/README.md @@ -17,10 +17,8 @@ This client example demonstrates **elementwise operations fused with 3D tensor t ## How to Run ### Prerequisites -```bash -cd composable_kernel/build -make -j install -``` + +Please follow the instructions in the main [Build Guide](../../README.md#building-ck) section as a prerequisite to building and running this example. ### Build and run ```bash diff --git a/client_example/24_grouped_conv_activation/README.md b/client_example/24_grouped_conv_activation/README.md index 4762232bff..825bdd3d18 100644 --- a/client_example/24_grouped_conv_activation/README.md +++ b/client_example/24_grouped_conv_activation/README.md @@ -18,10 +18,8 @@ For each group $g$: ## How to Run ### Prerequisites -```bash -cd composable_kernel/build -make -j install -``` + +Please follow the instructions in the main [Build Guide](../../README.md#building-ck) section as a prerequisite to building and running this example. ### Build and run ```bash diff --git a/client_example/26_reduce/README.md b/client_example/26_reduce/README.md index c05b8ebfb2..c58e8fecb1 100644 --- a/client_example/26_reduce/README.md +++ b/client_example/26_reduce/README.md @@ -17,10 +17,8 @@ Given a tensor $X[N, H, W, C]$ and a reduction axis (e.g., channel $C$): ## How to Run ### Prerequisites -```bash -cd composable_kernel/build -make -j install -``` + +Please follow the instructions in the main [Build Guide](../../README.md#building-ck) section as a prerequisite to building and running this example. ### Build and run ```bash diff --git a/client_example/27_im2col_col2im/README.md b/client_example/27_im2col_col2im/README.md index bab8d60493..211464acfa 100644 --- a/client_example/27_im2col_col2im/README.md +++ b/client_example/27_im2col_col2im/README.md @@ -16,10 +16,8 @@ This client example demonstrates **im2col (image-to-column) and col2im (column-t ## How to Run ### Prerequisites -```bash -cd composable_kernel/build -make -j install -``` + +Please follow the instructions in the main [Build Guide](../../README.md#building-ck) section as a prerequisite to building and running this example. ### Build and run ```bash diff --git a/client_example/29_gemm_add_multiply/README.md b/client_example/29_gemm_add_multiply/README.md index 08dfc9a52e..2f5190ccba 100644 --- a/client_example/29_gemm_add_multiply/README.md +++ b/client_example/29_gemm_add_multiply/README.md @@ -18,10 +18,8 @@ This client example demonstrates **GEMM fused with addition and multiplication o ## How to Run ### Prerequisites -```bash -cd composable_kernel/build -make -j install -``` + +Please follow the instructions in the main [Build Guide](../../README.md#building-ck) section as a prerequisite to building and running this example. ### Build and run ```bash diff --git a/example/04_gemm_add_add_fastgelu/README.md b/example/04_gemm_add_add_fastgelu/README.md index 64d8897e75..39b3c62740 100644 --- a/example/04_gemm_add_add_fastgelu/README.md +++ b/example/04_gemm_add_add_fastgelu/README.md @@ -27,10 +27,8 @@ where $\sigma$ is the sigmoid function. ## How to Run ### Prerequisites -```bash -cd composable_kernel/build -make -j install -``` + +Please follow the instructions in the main [Build Guide](../../README.md#building-ck) section as a prerequisite to building and running this example. ### Build and run ```bash diff --git a/example/09_convnd_fwd/README.md b/example/09_convnd_fwd/README.md index f4071fe9dc..8891149524 100644 --- a/example/09_convnd_fwd/README.md +++ b/example/09_convnd_fwd/README.md @@ -24,10 +24,8 @@ Stride, padding, and dilation parameters control the mapping between input and o ## How to Run ### Prerequisites -```bash -cd composable_kernel/build -make -j install -``` + +Please follow the instructions in the main [Build Guide](../../README.md#building-ck) section as a prerequisite to building and running this example. ### Build and run ```bash diff --git a/example/10_convnd_fwd_multiple_d_multiple_reduce/README.md b/example/10_convnd_fwd_multiple_d_multiple_reduce/README.md index b640c586e5..92d3b25cd6 100644 --- a/example/10_convnd_fwd_multiple_d_multiple_reduce/README.md +++ b/example/10_convnd_fwd_multiple_d_multiple_reduce/README.md @@ -19,10 +19,8 @@ The convolution computes the standard output as well as additional outputs or st ## How to Run ### Prerequisites -```bash -cd composable_kernel/build -make -j install -``` + +Please follow the instructions in the main [Build Guide](../../README.md#building-ck) section as a prerequisite to building and running this example. ### Build and run ```bash diff --git a/example/11_convnd_fwd_bias/README.md b/example/11_convnd_fwd_bias/README.md index 0db9aeb058..faa11e1096 100644 --- a/example/11_convnd_fwd_bias/README.md +++ b/example/11_convnd_fwd_bias/README.md @@ -19,10 +19,8 @@ $$ ## How to Run ### Prerequisites -```bash -cd composable_kernel/build -make -j install -``` + +Please follow the instructions in the main [Build Guide](../../README.md#building-ck) section as a prerequisite to building and running this example. ### Build and run ```bash diff --git a/example/12_reduce/README.md b/example/12_reduce/README.md index cfb7027d31..49ba52a7e1 100644 --- a/example/12_reduce/README.md +++ b/example/12_reduce/README.md @@ -20,10 +20,8 @@ $$ ## How to Run ### Prerequisites -```bash -cd composable_kernel/build -make -j install -``` + +Please follow the instructions in the main [Build Guide](../../README.md#building-ck) section as a prerequisite to building and running this example. ### Build and run ```bash diff --git a/example/13_pool2d_fwd/README.md b/example/13_pool2d_fwd/README.md index 66f098d61d..212a91e66c 100644 --- a/example/13_pool2d_fwd/README.md +++ b/example/13_pool2d_fwd/README.md @@ -22,10 +22,8 @@ For each output position: ## How to Run ### Prerequisites -```bash -cd composable_kernel/build -make -j install -``` + +Please follow the instructions in the main [Build Guide](../../README.md#building-ck) section as a prerequisite to building and running this example. ### Build and run ```bash diff --git a/example/14_gemm_quantization/README.md b/example/14_gemm_quantization/README.md index 05d9d37ebd..a6d7efd6ee 100644 --- a/example/14_gemm_quantization/README.md +++ b/example/14_gemm_quantization/README.md @@ -18,10 +18,8 @@ This example demonstrates **GEMM (General Matrix Multiplication) with quantized ## How to Run ### Prerequisites -```bash -cd composable_kernel/build -make -j install -``` + +Please follow the instructions in the main [Build Guide](../../README.md#building-ck) section as a prerequisite to building and running this example. ### Build and run ```bash diff --git a/example/15_grouped_gemm/README.md b/example/15_grouped_gemm/README.md index 032d53ee2f..14429e213a 100644 --- a/example/15_grouped_gemm/README.md +++ b/example/15_grouped_gemm/README.md @@ -21,10 +21,8 @@ $$ ## How to Run ### Prerequisites -```bash -cd composable_kernel/build -make -j install -``` + +Please follow the instructions in the main [Build Guide](../../README.md#building-ck) section as a prerequisite to building and running this example. ### Build and run ```bash diff --git a/example/16_gemm_multi_d_multi_reduces/README.md b/example/16_gemm_multi_d_multi_reduces/README.md index 226f85a854..4d4a44b718 100644 --- a/example/16_gemm_multi_d_multi_reduces/README.md +++ b/example/16_gemm_multi_d_multi_reduces/README.md @@ -18,10 +18,8 @@ The kernel computes the main GEMM output and additional reductions or statistics ## How to Run ### Prerequisites -```bash -cd composable_kernel/build -make -j install -``` + +Please follow the instructions in the main [Build Guide](../../README.md#building-ck) section as a prerequisite to building and running this example. ### Build and run ```bash diff --git a/example/21_gemm_layernorm/README.md b/example/21_gemm_layernorm/README.md index d7a370cf32..197ae2a86e 100644 --- a/example/21_gemm_layernorm/README.md +++ b/example/21_gemm_layernorm/README.md @@ -19,10 +19,8 @@ This example demonstrates **GEMM fused with layer normalization**. This pattern ## How to Run ### Prerequisites -```bash -cd composable_kernel/build -make -j install -``` + +Please follow the instructions in the main [Build Guide](../../README.md#building-ck) section as a prerequisite to building and running this example. ### Build and run ```bash diff --git a/example/23_softmax/README.md b/example/23_softmax/README.md index 09247b16d4..d50bb0789c 100644 --- a/example/23_softmax/README.md +++ b/example/23_softmax/README.md @@ -20,10 +20,8 @@ $$ ## How to Run ### Prerequisites -```bash -cd composable_kernel/build -make -j install -``` + +Please follow the instructions in the main [Build Guide](../../README.md#building-ck) section as a prerequisite to building and running this example. ### Build and run ```bash diff --git a/example/24_batched_gemm/README.md b/example/24_batched_gemm/README.md index 07f201e4c1..fddfae8db8 100644 --- a/example/24_batched_gemm/README.md +++ b/example/24_batched_gemm/README.md @@ -21,10 +21,8 @@ $$ ## How to Run ### Prerequisites -```bash -cd composable_kernel/build -make -j install -``` + +Please follow the instructions in the main [Build Guide](../../README.md#building-ck) section as a prerequisite to building and running this example. ### Build and run ```bash diff --git a/example/25_gemm_bias_e_permute/README.md b/example/25_gemm_bias_e_permute/README.md index e92c4afc7e..34849ddf6c 100644 --- a/example/25_gemm_bias_e_permute/README.md +++ b/example/25_gemm_bias_e_permute/README.md @@ -18,10 +18,8 @@ This example demonstrates **GEMM fused with bias addition, elementwise operation ## How to Run ### Prerequisites -```bash -cd composable_kernel/build -make -j install -``` + +Please follow the instructions in the main [Build Guide](../../README.md#building-ck) section as a prerequisite to building and running this example. ### Build and run ```bash diff --git a/example/27_layernorm2d_fwd/README.md b/example/27_layernorm2d_fwd/README.md index 7e26952894..d43e5b49fa 100644 --- a/example/27_layernorm2d_fwd/README.md +++ b/example/27_layernorm2d_fwd/README.md @@ -21,10 +21,8 @@ $\gamma$, $\beta$ are learnable scale and shift parameters. ## How to Run ### Prerequisites -```bash -cd composable_kernel/build -make -j install -``` + +Please follow the instructions in the main [Build Guide](../../README.md#building-ck) section as a prerequisite to building and running this example. ### Build and run ```bash diff --git a/example/32_batched_gemm_scale_softmax_gemm/README.md b/example/32_batched_gemm_scale_softmax_gemm/README.md index 2fda8bf084..904e965ec9 100644 --- a/example/32_batched_gemm_scale_softmax_gemm/README.md +++ b/example/32_batched_gemm_scale_softmax_gemm/README.md @@ -19,10 +19,8 @@ This example demonstrates the **fused attention mechanism** used in transformer ## How to Run ### Prerequisites -```bash -cd composable_kernel/build -make -j install -``` + +Please follow the instructions in the main [Build Guide](../../README.md#building-ck) section as a prerequisite to building and running this example. ### Build and run ```bash diff --git a/example/34_batchnorm/README.md b/example/34_batchnorm/README.md index 36e147fd04..1d0a800b3c 100644 --- a/example/34_batchnorm/README.md +++ b/example/34_batchnorm/README.md @@ -21,10 +21,8 @@ $\gamma_c$, $\beta_c$ are learnable scale and shift parameters per channel. ## How to Run ### Prerequisites -```bash -cd composable_kernel/build -make -j install -``` + +Please follow the instructions in the main [Build Guide](../../README.md#building-ck) section as a prerequisite to building and running this example. ### Build and run ```bash diff --git a/example/39_permute/README.md b/example/39_permute/README.md index a223ded707..9555b878c9 100644 --- a/example/39_permute/README.md +++ b/example/39_permute/README.md @@ -17,10 +17,8 @@ $$ ## How to Run ### Prerequisites -```bash -cd composable_kernel/build -make -j install -``` + +Please follow the instructions in the main [Build Guide](../../README.md#building-ck) section as a prerequisite to building and running this example. ### Build and run ```bash diff --git a/example/40_conv2d_fwd_quantization/README.md b/example/40_conv2d_fwd_quantization/README.md index f53ddf1871..8467dfdc15 100644 --- a/example/40_conv2d_fwd_quantization/README.md +++ b/example/40_conv2d_fwd_quantization/README.md @@ -19,10 +19,8 @@ This example demonstrates **2D convolution forward with quantized weights or act ## How to Run ### Prerequisites -```bash -cd composable_kernel/build -make -j install -``` + +Please follow the instructions in the main [Build Guide](../../README.md#building-ck) section as a prerequisite to building and running this example. ### Build and run ```bash diff --git a/example/44_elementwise_permute/README.md b/example/44_elementwise_permute/README.md index 4cd529f118..1c2c68c1fc 100644 --- a/example/44_elementwise_permute/README.md +++ b/example/44_elementwise_permute/README.md @@ -17,10 +17,8 @@ This example demonstrates **elementwise operations fused with tensor permutation ## How to Run ### Prerequisites -```bash -cd composable_kernel/build -make -j install -``` + +Please follow the instructions in the main [Build Guide](../../README.md#building-ck) section as a prerequisite to building and running this example. ### Build and run ```bash diff --git a/example/46_gemm_add_multiply/README.md b/example/46_gemm_add_multiply/README.md index f454d50be5..42b34326f5 100644 --- a/example/46_gemm_add_multiply/README.md +++ b/example/46_gemm_add_multiply/README.md @@ -18,10 +18,8 @@ This example demonstrates **GEMM fused with addition and multiplication operatio ## How to Run ### Prerequisites -```bash -cd composable_kernel/build -make -j install -``` + +Please follow the instructions in the main [Build Guide](../../README.md#building-ck) section as a prerequisite to building and running this example. ### Build and run ```bash