From 6fc878cbeb11bf8d2fe923fe74d7d97e977bf3e9 Mon Sep 17 00:00:00 2001 From: Vidyasagar Date: Thu, 2 Oct 2025 11:02:36 -0700 Subject: [PATCH] Updates based on PR feedback 1 --- client_example/01_gemm/README.md | 2 +- client_example/02_gemm_add_add_fastgelu/README.md | 2 +- client_example/03_gemm_layernorm/README.md | 2 +- client_example/04_contraction/README.md | 2 +- client_example/05_layernorm/README.md | 2 +- client_example/06_softmax/README.md | 2 +- client_example/07_grouped_convnd_fwd/README.md | 2 +- client_example/08_fused_attention/README.md | 2 +- client_example/09_quantization/README.md | 2 +- client_example/10_grouped_convnd_bwd_data/README.md | 2 +- client_example/11_grouped_conv_bwd_weight/README.md | 2 +- client_example/12_elementwise_normalization/README.md | 2 +- client_example/13_batchnorm/README.md | 2 +- client_example/14_instance_id/README.md | 2 +- client_example/15_convnd_bwd_data/README.md | 2 +- client_example/16_convnd_fwd/README.md | 2 +- client_example/17_grouped_gemm_fastgelu/README.md | 2 +- client_example/18_groupnorm/README.md | 2 +- client_example/19_pool/README.md | 2 +- client_example/20_splitk_gemm/README.md | 2 +- client_example/21_grouped_gemm_bias/README.md | 2 +- client_example/22_grouped_gemm/README.md | 2 +- client_example/23_elementwise_transpose/README.md | 2 +- client_example/24_grouped_conv_activation/README.md | 2 +- client_example/25_wrapper/README.md | 2 +- client_example/26_reduce/README.md | 2 +- client_example/27_im2col_col2im/README.md | 2 +- client_example/28_gemm_mx/README.md | 2 +- client_example/29_gemm_add_multiply/README.md | 2 +- client_example/30_gemm_bf16Aint8B/README.md | 2 +- client_example/31_grouped_gemm_bf16Aint8B/README.md | 2 +- example/01_gemm/README.md | 2 +- example/02_gemm_bilinear/README.md | 2 +- example/03_gemm_bias_relu/README.md | 2 +- example/04_gemm_add_add_fastgelu/README.md | 2 +- example/09_convnd_fwd/README.md | 2 +- example/10_convnd_fwd_multiple_d_multiple_reduce/README.md | 2 +- example/11_convnd_fwd_bias/README.md | 2 +- example/12_reduce/README.md | 2 +- example/13_pool2d_fwd/README.md | 2 +- example/14_gemm_quantization/README.md | 2 +- example/15_grouped_gemm/README.md | 2 +- example/16_gemm_multi_d_multi_reduces/README.md | 2 +- example/21_gemm_layernorm/README.md | 2 +- example/23_softmax/README.md | 2 +- example/24_batched_gemm/README.md | 2 +- example/25_gemm_bias_e_permute/README.md | 2 +- example/27_layernorm2d_fwd/README.md | 2 +- example/32_batched_gemm_scale_softmax_gemm/README.md | 2 +- example/34_batchnorm/README.md | 2 +- example/39_permute/README.md | 2 +- example/40_conv2d_fwd_quantization/README.md | 2 +- example/44_elementwise_permute/README.md | 2 +- example/46_gemm_add_multiply/README.md | 2 +- 54 files changed, 54 insertions(+), 54 deletions(-) diff --git a/client_example/01_gemm/README.md b/client_example/01_gemm/README.md index c09fe83eee..d5adbd2eb2 100644 --- a/client_example/01_gemm/README.md +++ b/client_example/01_gemm/README.md @@ -150,7 +150,7 @@ cd composable_kernel/build make -j install ``` -### Build and Execute +### Build and run ```bash cd composable_kernel/client_example/01_gemm mkdir build && cd build diff --git a/client_example/02_gemm_add_add_fastgelu/README.md b/client_example/02_gemm_add_add_fastgelu/README.md index de74eb0e6d..489f3654e7 100644 --- a/client_example/02_gemm_add_add_fastgelu/README.md +++ b/client_example/02_gemm_add_add_fastgelu/README.md @@ -32,7 +32,7 @@ cd composable_kernel/build make -j install ``` -### Build and Execute +### Build and run ```bash cd composable_kernel/client_example/02_gemm_add_add_fastgelu mkdir build && cd build diff --git a/client_example/03_gemm_layernorm/README.md b/client_example/03_gemm_layernorm/README.md index dde792f9d4..8590dc8722 100644 --- a/client_example/03_gemm_layernorm/README.md +++ b/client_example/03_gemm_layernorm/README.md @@ -25,7 +25,7 @@ cd composable_kernel/build make -j install ``` -### Build and Execute +### Build and run ```bash cd composable_kernel/client_example/03_gemm_layernorm mkdir build && cd build diff --git a/client_example/04_contraction/README.md b/client_example/04_contraction/README.md index 952578f885..1f8d76153a 100644 --- a/client_example/04_contraction/README.md +++ b/client_example/04_contraction/README.md @@ -21,7 +21,7 @@ cd composable_kernel/build make -j install ``` -### Build and Execute +### Build and run ```bash cd composable_kernel/client_example/04_contraction mkdir build && cd build diff --git a/client_example/05_layernorm/README.md b/client_example/05_layernorm/README.md index e7658d4535..51e05617e8 100644 --- a/client_example/05_layernorm/README.md +++ b/client_example/05_layernorm/README.md @@ -26,7 +26,7 @@ cd composable_kernel/build make -j install ``` -### Build and Execute +### Build and run ```bash cd composable_kernel/client_example/05_layernorm mkdir build && cd build diff --git a/client_example/06_softmax/README.md b/client_example/06_softmax/README.md index c6f21ae697..a6542d3acb 100644 --- a/client_example/06_softmax/README.md +++ b/client_example/06_softmax/README.md @@ -26,7 +26,7 @@ cd composable_kernel/build make -j install ``` -### Build and Execute +### Build and run ```bash cd composable_kernel/client_example/06_softmax mkdir build && cd build diff --git a/client_example/07_grouped_convnd_fwd/README.md b/client_example/07_grouped_convnd_fwd/README.md index 3e5c4010ba..c419ff2748 100644 --- a/client_example/07_grouped_convnd_fwd/README.md +++ b/client_example/07_grouped_convnd_fwd/README.md @@ -89,7 +89,7 @@ cd composable_kernel/build make -j install ``` -### Build and Execute +### Build and run ```bash cd composable_kernel/client_example/07_grouped_convnd_fwd mkdir build && cd build diff --git a/client_example/08_fused_attention/README.md b/client_example/08_fused_attention/README.md index 8c1e99b708..a4994d3d33 100644 --- a/client_example/08_fused_attention/README.md +++ b/client_example/08_fused_attention/README.md @@ -36,7 +36,7 @@ cd composable_kernel/build make -j install ``` -### Build and Execute +### Build and run ```bash cd composable_kernel/client_example/08_fused_attention mkdir build && cd build diff --git a/client_example/09_quantization/README.md b/client_example/09_quantization/README.md index bae1b59e42..0af4b4bede 100644 --- a/client_example/09_quantization/README.md +++ b/client_example/09_quantization/README.md @@ -25,7 +25,7 @@ cd composable_kernel/build make -j install ``` -### Build and Execute +### Build and run ```bash cd composable_kernel/client_example/09_quantization mkdir build && cd build diff --git a/client_example/10_grouped_convnd_bwd_data/README.md b/client_example/10_grouped_convnd_bwd_data/README.md index 7906855f1f..2e732b1133 100644 --- a/client_example/10_grouped_convnd_bwd_data/README.md +++ b/client_example/10_grouped_convnd_bwd_data/README.md @@ -71,7 +71,7 @@ cd composable_kernel/build make -j install ``` -### Build and Execute +### Build and run ```bash cd composable_kernel/client_example/10_grouped_convnd_bwd_data mkdir build && cd build diff --git a/client_example/11_grouped_conv_bwd_weight/README.md b/client_example/11_grouped_conv_bwd_weight/README.md index b5f5f28ce6..389b80c75a 100644 --- a/client_example/11_grouped_conv_bwd_weight/README.md +++ b/client_example/11_grouped_conv_bwd_weight/README.md @@ -86,7 +86,7 @@ cd composable_kernel/build make -j install ``` -### Build and Execute +### Build and run ```bash cd composable_kernel/client_example/11_grouped_conv_bwd_weight mkdir build && cd build diff --git a/client_example/12_elementwise_normalization/README.md b/client_example/12_elementwise_normalization/README.md index 2448418a0b..3498b50060 100644 --- a/client_example/12_elementwise_normalization/README.md +++ b/client_example/12_elementwise_normalization/README.md @@ -26,7 +26,7 @@ cd composable_kernel/build make -j install ``` -### Build and Execute +### Build and run ```bash cd composable_kernel/client_example/12_elementwise_normalization mkdir build && cd build diff --git a/client_example/13_batchnorm/README.md b/client_example/13_batchnorm/README.md index e51d2c78d6..fdef24a6ab 100644 --- a/client_example/13_batchnorm/README.md +++ b/client_example/13_batchnorm/README.md @@ -26,7 +26,7 @@ cd composable_kernel/build make -j install ``` -### Build and Execute +### Build and run ```bash cd composable_kernel/client_example/13_batchnorm mkdir build && cd build diff --git a/client_example/14_instance_id/README.md b/client_example/14_instance_id/README.md index 91c09e3c18..8a9d0c45c8 100644 --- a/client_example/14_instance_id/README.md +++ b/client_example/14_instance_id/README.md @@ -20,7 +20,7 @@ cd composable_kernel/build make -j install ``` -### Build and Execute +### Build and run ```bash cd composable_kernel/client_example/14_instance_id mkdir build && cd build diff --git a/client_example/15_convnd_bwd_data/README.md b/client_example/15_convnd_bwd_data/README.md index 88ae292d58..01ab17f847 100644 --- a/client_example/15_convnd_bwd_data/README.md +++ b/client_example/15_convnd_bwd_data/README.md @@ -25,7 +25,7 @@ cd composable_kernel/build make -j install ``` -### Build and Execute +### Build and run ```bash cd composable_kernel/client_example/15_convnd_bwd_data mkdir build && cd build diff --git a/client_example/16_convnd_fwd/README.md b/client_example/16_convnd_fwd/README.md index 060fa610af..f79baad06a 100644 --- a/client_example/16_convnd_fwd/README.md +++ b/client_example/16_convnd_fwd/README.md @@ -25,7 +25,7 @@ cd composable_kernel/build make -j install ``` -### Build and Execute +### Build and run ```bash cd composable_kernel/client_example/16_convnd_fwd mkdir build && cd build diff --git a/client_example/17_grouped_gemm_fastgelu/README.md b/client_example/17_grouped_gemm_fastgelu/README.md index f519712a9a..6f22a3433d 100644 --- a/client_example/17_grouped_gemm_fastgelu/README.md +++ b/client_example/17_grouped_gemm_fastgelu/README.md @@ -28,7 +28,7 @@ cd composable_kernel/build make -j install ``` -### Build and Execute +### Build and run ```bash cd composable_kernel/client_example/17_grouped_gemm_fastgelu mkdir build && cd build diff --git a/client_example/18_groupnorm/README.md b/client_example/18_groupnorm/README.md index 42f7a1969d..54ade883a6 100644 --- a/client_example/18_groupnorm/README.md +++ b/client_example/18_groupnorm/README.md @@ -29,7 +29,7 @@ cd composable_kernel/build make -j install ``` -### Build and Execute +### Build and run ```bash cd composable_kernel/client_example/18_groupnorm mkdir build && cd build diff --git a/client_example/19_pool/README.md b/client_example/19_pool/README.md index 2fd6f859bb..77ae6777fd 100644 --- a/client_example/19_pool/README.md +++ b/client_example/19_pool/README.md @@ -23,7 +23,7 @@ cd composable_kernel/build make -j install ``` -### Build and Execute +### Build and run ```bash cd composable_kernel/client_example/19_pool mkdir build && cd build diff --git a/client_example/20_splitk_gemm/README.md b/client_example/20_splitk_gemm/README.md index 122926125b..1715bc499e 100644 --- a/client_example/20_splitk_gemm/README.md +++ b/client_example/20_splitk_gemm/README.md @@ -24,7 +24,7 @@ cd composable_kernel/build make -j install ``` -### Build and Execute +### Build and run ```bash cd composable_kernel/client_example/20_splitk_gemm mkdir build && cd build diff --git a/client_example/21_grouped_gemm_bias/README.md b/client_example/21_grouped_gemm_bias/README.md index 80f63e1e7b..2a524a68ff 100644 --- a/client_example/21_grouped_gemm_bias/README.md +++ b/client_example/21_grouped_gemm_bias/README.md @@ -22,7 +22,7 @@ cd composable_kernel/build make -j install ``` -### Build and Execute +### Build and run ```bash cd composable_kernel/client_example/21_grouped_gemm_bias mkdir build && cd build diff --git a/client_example/22_grouped_gemm/README.md b/client_example/22_grouped_gemm/README.md index 1327e10589..140dadd6e8 100644 --- a/client_example/22_grouped_gemm/README.md +++ b/client_example/22_grouped_gemm/README.md @@ -21,7 +21,7 @@ cd composable_kernel/build make -j install ``` -### Build and Execute +### Build and run ```bash cd composable_kernel/client_example/22_grouped_gemm mkdir build && cd build diff --git a/client_example/23_elementwise_transpose/README.md b/client_example/23_elementwise_transpose/README.md index 2e529171bf..297212ebfb 100644 --- a/client_example/23_elementwise_transpose/README.md +++ b/client_example/23_elementwise_transpose/README.md @@ -22,7 +22,7 @@ cd composable_kernel/build make -j install ``` -### Build and Execute +### Build and run ```bash cd composable_kernel/client_example/23_elementwise_transpose mkdir build && cd build diff --git a/client_example/24_grouped_conv_activation/README.md b/client_example/24_grouped_conv_activation/README.md index b8a55f4dcf..4762232bff 100644 --- a/client_example/24_grouped_conv_activation/README.md +++ b/client_example/24_grouped_conv_activation/README.md @@ -23,7 +23,7 @@ cd composable_kernel/build make -j install ``` -### Build and Execute +### Build and run ```bash cd composable_kernel/client_example/24_grouped_conv_activation mkdir build && cd build diff --git a/client_example/25_wrapper/README.md b/client_example/25_wrapper/README.md index 564f07bba1..1d530f768c 100644 --- a/client_example/25_wrapper/README.md +++ b/client_example/25_wrapper/README.md @@ -8,7 +8,7 @@ This tutorial demonstrates how to implement matrix multiplication (GEMM) using t ## How to Run -### Build and Execute +### Build and run ```bash cd composable_kernel/client_example/25_wrapper mkdir build && cd build diff --git a/client_example/26_reduce/README.md b/client_example/26_reduce/README.md index 0f38201e5f..c05b8ebfb2 100644 --- a/client_example/26_reduce/README.md +++ b/client_example/26_reduce/README.md @@ -22,7 +22,7 @@ cd composable_kernel/build make -j install ``` -### Build and Execute +### Build and run ```bash cd composable_kernel/client_example/26_reduce mkdir build && cd build diff --git a/client_example/27_im2col_col2im/README.md b/client_example/27_im2col_col2im/README.md index da842c7983..bab8d60493 100644 --- a/client_example/27_im2col_col2im/README.md +++ b/client_example/27_im2col_col2im/README.md @@ -21,7 +21,7 @@ cd composable_kernel/build make -j install ``` -### Build and Execute +### Build and run ```bash cd composable_kernel/client_example/27_im2col_col2im mkdir build && cd build diff --git a/client_example/28_gemm_mx/README.md b/client_example/28_gemm_mx/README.md index 115d4dd9a4..5384da20a2 100644 --- a/client_example/28_gemm_mx/README.md +++ b/client_example/28_gemm_mx/README.md @@ -10,7 +10,7 @@ make -j make install ``` -### Build and Execute +### Build and run ```bash /opt/rocm/bin/hipcc gemm_mx_fp8.cpp -o gemm_mx_fp8 diff --git a/client_example/29_gemm_add_multiply/README.md b/client_example/29_gemm_add_multiply/README.md index f3f9816092..08dfc9a52e 100644 --- a/client_example/29_gemm_add_multiply/README.md +++ b/client_example/29_gemm_add_multiply/README.md @@ -23,7 +23,7 @@ cd composable_kernel/build make -j install ``` -### Build and Execute +### Build and run ```bash cd composable_kernel/client_example/29_gemm_add_multiply mkdir build && cd build diff --git a/client_example/30_gemm_bf16Aint8B/README.md b/client_example/30_gemm_bf16Aint8B/README.md index 1723b83b83..6b32bf2d46 100644 --- a/client_example/30_gemm_bf16Aint8B/README.md +++ b/client_example/30_gemm_bf16Aint8B/README.md @@ -28,7 +28,7 @@ make -j make install ``` -### Build and Execute +### Build and run ```bash cd composable_kernel/client_example/30_gemm_bf16Aint8B mkdir build && cd build diff --git a/client_example/31_grouped_gemm_bf16Aint8B/README.md b/client_example/31_grouped_gemm_bf16Aint8B/README.md index 9f9f59f214..1a0b8b2d82 100644 --- a/client_example/31_grouped_gemm_bf16Aint8B/README.md +++ b/client_example/31_grouped_gemm_bf16Aint8B/README.md @@ -29,7 +29,7 @@ make -j make install ``` -### Build and Execute +### Build and run ```bash cd composable_kernel/client_example/31_grouped_gemm_bf16Aint8B mkdir build && cd build diff --git a/example/01_gemm/README.md b/example/01_gemm/README.md index 82eb2e9f78..3c757e6b46 100644 --- a/example/01_gemm/README.md +++ b/example/01_gemm/README.md @@ -169,7 +169,7 @@ Split-K is supported (requires zeroing output buffer if splitK > 1). ## How to Run -### Build and Execute +### Build and run ```bash cd composable_kernel/example/01_gemm diff --git a/example/02_gemm_bilinear/README.md b/example/02_gemm_bilinear/README.md index f1b18225ba..ae98ab73e8 100644 --- a/example/02_gemm_bilinear/README.md +++ b/example/02_gemm_bilinear/README.md @@ -58,7 +58,7 @@ CK provides a composable API for GEMM with multiple auxiliary tensors via the `D ## How to Run -### Build and Execute +### Build and run ```bash cd composable_kernel/example/02_gemm_bilinear diff --git a/example/03_gemm_bias_relu/README.md b/example/03_gemm_bias_relu/README.md index 810f906339..ba32f5399d 100644 --- a/example/03_gemm_bias_relu/README.md +++ b/example/03_gemm_bias_relu/README.md @@ -19,7 +19,7 @@ $$ ## How to Run -### Build and Execute +### Build and run ```bash cd composable_kernel/example/03_gemm_bias_relu mkdir build && cd build diff --git a/example/04_gemm_add_add_fastgelu/README.md b/example/04_gemm_add_add_fastgelu/README.md index 7697c1cdc8..64d8897e75 100644 --- a/example/04_gemm_add_add_fastgelu/README.md +++ b/example/04_gemm_add_add_fastgelu/README.md @@ -32,7 +32,7 @@ cd composable_kernel/build make -j install ``` -### Build and Execute +### Build and run ```bash cd composable_kernel/example/04_gemm_add_add_fastgelu mkdir build && cd build diff --git a/example/09_convnd_fwd/README.md b/example/09_convnd_fwd/README.md index d8e4affaeb..f4071fe9dc 100644 --- a/example/09_convnd_fwd/README.md +++ b/example/09_convnd_fwd/README.md @@ -29,7 +29,7 @@ cd composable_kernel/build make -j install ``` -### Build and Execute +### Build and run ```bash cd composable_kernel/example/09_convnd_fwd mkdir build && cd build 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 07af338d44..b640c586e5 100644 --- a/example/10_convnd_fwd_multiple_d_multiple_reduce/README.md +++ b/example/10_convnd_fwd_multiple_d_multiple_reduce/README.md @@ -24,7 +24,7 @@ cd composable_kernel/build make -j install ``` -### Build and Execute +### Build and run ```bash cd composable_kernel/example/10_convnd_fwd_multiple_d_multiple_reduce mkdir build && cd build diff --git a/example/11_convnd_fwd_bias/README.md b/example/11_convnd_fwd_bias/README.md index 645a497d2b..0db9aeb058 100644 --- a/example/11_convnd_fwd_bias/README.md +++ b/example/11_convnd_fwd_bias/README.md @@ -24,7 +24,7 @@ cd composable_kernel/build make -j install ``` -### Build and Execute +### Build and run ```bash cd composable_kernel/example/11_convnd_fwd_bias mkdir build && cd build diff --git a/example/12_reduce/README.md b/example/12_reduce/README.md index b238b4f2af..cfb7027d31 100644 --- a/example/12_reduce/README.md +++ b/example/12_reduce/README.md @@ -25,7 +25,7 @@ cd composable_kernel/build make -j install ``` -### Build and Execute +### Build and run ```bash cd composable_kernel/example/12_reduce mkdir build && cd build diff --git a/example/13_pool2d_fwd/README.md b/example/13_pool2d_fwd/README.md index 4f6deac75f..66f098d61d 100644 --- a/example/13_pool2d_fwd/README.md +++ b/example/13_pool2d_fwd/README.md @@ -27,7 +27,7 @@ cd composable_kernel/build make -j install ``` -### Build and Execute +### Build and run ```bash cd composable_kernel/example/13_pool2d_fwd mkdir build && cd build diff --git a/example/14_gemm_quantization/README.md b/example/14_gemm_quantization/README.md index e580ef3d5b..05d9d37ebd 100644 --- a/example/14_gemm_quantization/README.md +++ b/example/14_gemm_quantization/README.md @@ -23,7 +23,7 @@ cd composable_kernel/build make -j install ``` -### Build and Execute +### Build and run ```bash cd composable_kernel/example/14_gemm_quantization mkdir build && cd build diff --git a/example/15_grouped_gemm/README.md b/example/15_grouped_gemm/README.md index 55b419a5d3..032d53ee2f 100644 --- a/example/15_grouped_gemm/README.md +++ b/example/15_grouped_gemm/README.md @@ -26,7 +26,7 @@ cd composable_kernel/build make -j install ``` -### Build and Execute +### Build and run ```bash cd composable_kernel/example/15_grouped_gemm mkdir build && cd build diff --git a/example/16_gemm_multi_d_multi_reduces/README.md b/example/16_gemm_multi_d_multi_reduces/README.md index 84da4d1f52..226f85a854 100644 --- a/example/16_gemm_multi_d_multi_reduces/README.md +++ b/example/16_gemm_multi_d_multi_reduces/README.md @@ -23,7 +23,7 @@ cd composable_kernel/build make -j install ``` -### Build and Execute +### Build and run ```bash cd composable_kernel/example/16_gemm_multi_d_multi_reduces mkdir build && cd build diff --git a/example/21_gemm_layernorm/README.md b/example/21_gemm_layernorm/README.md index c4144402e1..d7a370cf32 100644 --- a/example/21_gemm_layernorm/README.md +++ b/example/21_gemm_layernorm/README.md @@ -24,7 +24,7 @@ cd composable_kernel/build make -j install ``` -### Build and Execute +### Build and run ```bash cd composable_kernel/example/21_gemm_layernorm mkdir build && cd build diff --git a/example/23_softmax/README.md b/example/23_softmax/README.md index ae7b15401d..09247b16d4 100644 --- a/example/23_softmax/README.md +++ b/example/23_softmax/README.md @@ -25,7 +25,7 @@ cd composable_kernel/build make -j install ``` -### Build and Execute +### Build and run ```bash cd composable_kernel/example/23_softmax mkdir build && cd build diff --git a/example/24_batched_gemm/README.md b/example/24_batched_gemm/README.md index ea16dfe5d0..07f201e4c1 100644 --- a/example/24_batched_gemm/README.md +++ b/example/24_batched_gemm/README.md @@ -26,7 +26,7 @@ cd composable_kernel/build make -j install ``` -### Build and Execute +### Build and run ```bash cd composable_kernel/example/24_batched_gemm mkdir build && cd build diff --git a/example/25_gemm_bias_e_permute/README.md b/example/25_gemm_bias_e_permute/README.md index 534cb1bc52..e92c4afc7e 100644 --- a/example/25_gemm_bias_e_permute/README.md +++ b/example/25_gemm_bias_e_permute/README.md @@ -23,7 +23,7 @@ cd composable_kernel/build make -j install ``` -### Build and Execute +### Build and run ```bash cd composable_kernel/example/25_gemm_bias_e_permute mkdir build && cd build diff --git a/example/27_layernorm2d_fwd/README.md b/example/27_layernorm2d_fwd/README.md index a53ee08f0e..7e26952894 100644 --- a/example/27_layernorm2d_fwd/README.md +++ b/example/27_layernorm2d_fwd/README.md @@ -26,7 +26,7 @@ cd composable_kernel/build make -j install ``` -### Build and Execute +### Build and run ```bash cd composable_kernel/example/27_layernorm2d_fwd mkdir build && cd build diff --git a/example/32_batched_gemm_scale_softmax_gemm/README.md b/example/32_batched_gemm_scale_softmax_gemm/README.md index 274c72baed..2fda8bf084 100644 --- a/example/32_batched_gemm_scale_softmax_gemm/README.md +++ b/example/32_batched_gemm_scale_softmax_gemm/README.md @@ -24,7 +24,7 @@ cd composable_kernel/build make -j install ``` -### Build and Execute +### Build and run ```bash cd composable_kernel/example/32_batched_gemm_scale_softmax_gemm mkdir build && cd build diff --git a/example/34_batchnorm/README.md b/example/34_batchnorm/README.md index 73fca8d976..36e147fd04 100644 --- a/example/34_batchnorm/README.md +++ b/example/34_batchnorm/README.md @@ -26,7 +26,7 @@ cd composable_kernel/build make -j install ``` -### Build and Execute +### Build and run ```bash cd composable_kernel/example/34_batchnorm mkdir build && cd build diff --git a/example/39_permute/README.md b/example/39_permute/README.md index 6f957e369b..a223ded707 100644 --- a/example/39_permute/README.md +++ b/example/39_permute/README.md @@ -22,7 +22,7 @@ cd composable_kernel/build make -j install ``` -### Build and Execute +### Build and run ```bash cd composable_kernel/example/39_permute mkdir build && cd build diff --git a/example/40_conv2d_fwd_quantization/README.md b/example/40_conv2d_fwd_quantization/README.md index 555e69404d..f53ddf1871 100644 --- a/example/40_conv2d_fwd_quantization/README.md +++ b/example/40_conv2d_fwd_quantization/README.md @@ -24,7 +24,7 @@ cd composable_kernel/build make -j install ``` -### Build and Execute +### Build and run ```bash cd composable_kernel/example/40_conv2d_fwd_quantization mkdir build && cd build diff --git a/example/44_elementwise_permute/README.md b/example/44_elementwise_permute/README.md index c055c446bb..4cd529f118 100644 --- a/example/44_elementwise_permute/README.md +++ b/example/44_elementwise_permute/README.md @@ -22,7 +22,7 @@ cd composable_kernel/build make -j install ``` -### Build and Execute +### Build and run ```bash cd composable_kernel/example/44_elementwise_permute mkdir build && cd build diff --git a/example/46_gemm_add_multiply/README.md b/example/46_gemm_add_multiply/README.md index bb228c9105..f454d50be5 100644 --- a/example/46_gemm_add_multiply/README.md +++ b/example/46_gemm_add_multiply/README.md @@ -23,7 +23,7 @@ cd composable_kernel/build make -j install ``` -### Build and Execute +### Build and run ```bash cd composable_kernel/example/46_gemm_add_multiply mkdir build && cd build