Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 276ea28

Browse filesBrowse files
committed
fix(misc): Update LLAMA_ flags to GGML_
1 parent fccff80 commit 276ea28
Copy full SHA for 276ea28

File tree

Expand file treeCollapse file tree

1 file changed

+9
-9
lines changed
Filter options
Expand file treeCollapse file tree

1 file changed

+9
-9
lines changed

‎Makefile

Copy file name to clipboardExpand all lines: Makefile
+9-9Lines 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 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.