Update build instructions in readme (#4657)

## Motivation

Update build instructions in readme

## Test Plan

Was able to build the tutorial with these steps
This commit is contained in:
Alex Brown
2026-04-15 08:42:37 -06:00
committed by GitHub
parent a15e7cb018
commit 23864ab760

View File

@@ -141,10 +141,10 @@ int main()
```bash
# From composable_kernel root directory
mkdir build && cd build
sh ../script/cmake-ck-dev.sh ../ <arch>
make tile_example_practice_gemm -j
../script/cmake-ck-dev.sh ../ <arch>
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.