text-generation-webui/docs/llama.cpp.md

44 lines
1.3 KiB
Markdown
Raw Normal View History

2023-07-26 00:31:05 +02:00
# llama.cpp
llama.cpp is the best backend in two important scenarios:
1) You don't have a GPU.
2) You want to run a model that doesn't fit into your GPU.
## Setting up the models
#### Pre-converted
2023-09-11 16:30:56 +02:00
Download the GGUF models directly into your `text-generation-webui/models` folder. It will be a single file.
2023-09-11 16:30:56 +02:00
* Make sure its name ends in `.gguf`.
* `q4_K_M` quantization is recommended.
2023-07-26 00:31:05 +02:00
#### Convert Llama yourself
2023-09-11 16:30:56 +02:00
Follow the instructions in the llama.cpp README to generate a GGUF: https://github.com/ggerganov/llama.cpp#prepare-data--run
2023-07-26 00:31:05 +02:00
## GPU acceleration
Enabled with the `--n-gpu-layers` parameter.
* If you have enough VRAM, use a high number like `--n-gpu-layers 1000` to offload all layers to the GPU.
* Otherwise, start with a low number like `--n-gpu-layers 10` and then gradually increase it until you run out of memory.
2023-07-26 00:33:16 +02:00
This feature works out of the box for NVIDIA GPUs on Linux (amd64) or Windows. For other GPUs, you need to uninstall `llama-cpp-python` with
2023-07-26 00:31:05 +02:00
```
pip uninstall -y llama-cpp-python
```
and then recompile it using the commands here: https://pypi.org/project/llama-cpp-python/
#### macOS
For macOS, these are the commands:
```
pip uninstall -y llama-cpp-python
CMAKE_ARGS="-DLLAMA_METAL=on" FORCE_CMAKE=1 pip install llama-cpp-python --no-cache-dir
```