From bd2a828742d3732f0585d4b50549183542eab12b Mon Sep 17 00:00:00 2001 From: Aaryaman Vasishta Date: Mon, 20 Nov 2023 14:35:52 +0900 Subject: [PATCH] Update README.md Co-authored-by: Jared Van Bortel --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 72171d516..e14886737 100644 --- a/README.md +++ b/README.md @@ -426,7 +426,7 @@ Building the program with BLAS support may lead to some performance improvements ```bash mkdir build cd build - cmake -DCMAKE_BUILD_TYPE=Release -G "Ninja" -DAMDGPU_TARGETS=gfx1100 -DLLAMA_HIPBLAS=1 -DCMAKE_C_COMPILER=clang -DCMAKE_CXX_COMPILER=clang++ .. + cmake -G Ninja -DAMDGPU_TARGETS=gfx1100 -DLLAMA_HIPBLAS=ON -DCMAKE_C_COMPILER=clang -DCMAKE_CXX_COMPILER=clang++ .. cmake --build . ``` Make sure that `AMDGPU_TARGETS` is set to the GPU arch you want to compile for. The above example uses `gfx1100` that corresponds to Radeon RX 7900XTX/XT/GRE. You can find a list of targets [here](https://llvm.org/docs/AMDGPUUsage.html#processors)