8000 Update makefile · devilcoder01/llama-cpp-python@e21c3c7 · GitHub
[go: up one dir, main page]

Skip to content

Commit e21c3c7

Browse files
committed
Update makefile
1 parent 0f54948 commit e21c3c7

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

Makefile

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,22 +10,22 @@ deps:
1010
python3 -m pip install -e ".[all]"
1111

1212
build:
13-
python3 -m pip install -e .
13+
python3 -m pip install --verbose -e .
1414

1515
build.cuda:
16-
CMAKE_ARGS="-DLLAMA_CUBLAS=on" python3 -m pip install -e .
16+
CMAKE_ARGS="-DLLAMA_CUBLAS=on" python3 -m pip install --verbose -e .
1717

1818
build.opencl:
19-
CMAKE_ARGS="-DLLAMA_CLBLAST=on" python3 -m pip install -e .
19+
CMAKE_ARGS="-DLLAMA_CLBLAST=on" python3 -m pip install --verbose -e .
2020

2121
build.openblas:
22-
CMAKE_ARGS="-DLLAMA_CLBLAST=on" python3 -m pip install -e .
22+
CMAKE_ARGS="-DLLAMA_CLBLAST=on" python3 -m pip install --verbose -e .
2323

2424
build.blis:
25-
CMAKE_ARGS="-DLLAMA_OPENBLAS=on -DLLAMA_OPENBLAS_VENDOR=blis" python3 -m pip install -e .
25+
CMAKE_ARGS="-DLLAMA_OPENBLAS=on -DLLAMA_OPENBLAS_VENDOR=blis" python3 -m pip install --verbose -e .
2626

2727
build.metal:
28-
CMAKE_ARGS="-DLLAMA_METAL=on" python3 -m pip install -e .
28+
CMAKE_ARGS="-DLLAMA_METAL=on" python3 -m pip install --verbose -e .
2929

3030
build.sdist:
3131
python3 -m build --sdist

0 commit comments

Comments
 (0)
0