Updated installation instructions for BLAS backends
This commit is contained in:
parent
d957422bf4
commit
17dc51a7d2
1 changed files with 3 additions and 3 deletions
|
@ -35,19 +35,19 @@ Use the `FORCE_CMAKE=1` environment variable to force the use of `cmake` and ins
|
||||||
To install with OpenBLAS, set the `LLAMA_OPENBLAS=1` environment variable before installing:
|
To install with OpenBLAS, set the `LLAMA_OPENBLAS=1` environment variable before installing:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
LLAMA_OPENBLAS=1 FORCE_CMAKE=1 pip install llama-cpp-python
|
CMAKE_ARGS="-DLLAMA_OPENBLAS=on" FORCE_CMAKE=1 pip install llama-cpp-python
|
||||||
```
|
```
|
||||||
|
|
||||||
To install with cuBLAS, set the `LLAMA_CUBLAS=1` environment variable before installing:
|
To install with cuBLAS, set the `LLAMA_CUBLAS=1` environment variable before installing:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
LLAMA_CUBLAS=1 FORCE_CMAKE=1 pip install llama-cpp-python
|
CMAKE_ARGS="-DLLAMA_CUBLAS=on" FORCE_CMAKE=1 pip install llama-cpp-python
|
||||||
```
|
```
|
||||||
|
|
||||||
To install with CLBlast, set the `LLAMA_CLBLAST=1` environment variable before installing:
|
To install with CLBlast, set the `LLAMA_CLBLAST=1` environment variable before installing:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
LLAMA_CLBLAST=1 FORCE_CMAKE=1 pip install llama-cpp-python
|
CMAKE_ARGS="-DLLAMA_CLBLAST=on" FORCE_CMAKE=1 pip install llama-cpp-python
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue