From ac942a32b3d8592ee2eb56b831a1807a266642f0 Mon Sep 17 00:00:00 2001 From: Alex Brown <52802890+AlexBrownAMD@users.noreply.github.com> Date: Wed, 15 Apr 2026 14:43:23 +0000 Subject: [PATCH] [rocm-libraries] ROCm/rocm-libraries#4657 (commit 47a0db5) Update build instructions in readme ## Motivation Update build instructions in readme ## Test Plan Was able to build the tutorial with these steps --- tutorial/ck_tile/gemm/01_naive_gemm/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tutorial/ck_tile/gemm/01_naive_gemm/README.md b/tutorial/ck_tile/gemm/01_naive_gemm/README.md index f2caf7d993..13a117ae80 100644 --- a/tutorial/ck_tile/gemm/01_naive_gemm/README.md +++ b/tutorial/ck_tile/gemm/01_naive_gemm/README.md @@ -141,10 +141,10 @@ int main() ```bash # From composable_kernel root directory mkdir build && cd build -sh ../script/cmake-ck-dev.sh ../ -make tile_example_practice_gemm -j +../script/cmake-ck-dev.sh ../ +make tile_tutorial_naive_gemm -j # Run with sample sizes -./bin/tile_example_practice_gemm +./bin/tile_tutorial_naive_gemm ``` This example serves as a foundation for understanding more complex GEMM implementations and optimization strategies in the CK Tile framework.