[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
This commit is contained in:
Alex Brown
2026-04-15 14:43:23 +00:00
committed by assistant-librarian[bot]
parent 2b83413b8d
commit ac942a32b3

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.