Skip to content

Commit 276ea28

Browse files
committed
fix(misc): Update LLAMA_ flags to GGML_
1 parent fccff80 commit 276ea28

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

Makefile

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -22,28 +22,28 @@ build.debug:
2222
--editable .
2323

2424
build.cuda:
25-
CMAKE_ARGS="-DLLAMA_CUDA=on" python3 -m pip install --verbose -e .
25+
CMAKE_ARGS="-DGGML_CUDA=on" python3 -m pip install --verbose -e .
2626

2727
build.openblas:
28-
CMAKE_ARGS="-DLLAMA_BLAS=ON -DLLAMA_BLAS_VENDOR=OpenBLAS" python3 -m pip install --verbose -e .
28+
CMAKE_ARGS="-DGGML_BLAS=ON -DGGML_BLAS_VENDOR=OpenBLAS" python3 -m pip install --verbose -e .
2929

3030
build.blis:
31-
CMAKE_ARGS="-DLLAMA_BLAS=on -DLLAMA_BLAS_VENDOR=FLAME" python3 -m pip install --verbose -e .
31+
CMAKE_ARGS="-DGGML_BLAS=on -DGGML_BLAS_VENDOR=FLAME" python3 -m pip install --verbose -e .
3232

3333
build.metal:
34-
CMAKE_ARGS="-DLLAMA_METAL=on" python3 -m pip install --verbose -e .
34+
CMAKE_ARGS="-DGGML_METAL=on" python3 -m pip install --verbose -e .
3535

3636
build.vulkan:
37-
CMAKE_ARGS="-DLLAMA_VULKAN=on" python3 -m pip install --verbose -e .
37+
CMAKE_ARGS="-DGGML_VULKAN=on" python3 -m pip install --verbose -e .
3838

3939
build.kompute:
40-
CMAKE_ARGS="-DLLAMA_KOMPUTE=on" python3 -m pip install --verbose -e .
40+
CMAKE_ARGS="-DGGML_KOMPUTE=on" python3 -m pip install --verbose -e .
4141

4242
build.sycl:
43-
CMAKE_ARGS="-DLLAMA_SYCL=on" python3 -m pip install --verbose -e .
43+
CMAKE_ARGS="-DGGML_SYCL=on" python3 -m pip install --verbose -e .
4444

4545
build.rpc:
46-
CMAKE_ARGS="-DLLAMA_RPC=on" python3 -m pip install --verbose -e .
46+
CMAKE_ARGS="-DGGML_RPC=on" python3 -m pip install --verbose -e .
4747

4848
build.sdist:
4949
python3 -m build --sdist
@@ -85,4 +85,4 @@ clean:
8585
deploy.pypi \
8686
deploy.gh-docs \
8787
docker \
88-
clean
88+
clean

0 commit comments

Comments
 (0)