From 23864ab760dda95a061a4583c406e1a928f85e2f Mon Sep 17 00:00:00 2001 From: Alex Brown Date: Wed, 15 Apr 2026 08:42:37 -0600 Subject: [PATCH] Update build instructions in readme (#4657) ## 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.