Update llama.cpp-models.md

This commit is contained in:
oobabooga 2023-06-01 11:58:33 -03:00 committed by GitHub
parent 90dc8a91ae
commit 74bf2f05b1
WARNING! Although there is a key with this ID in the database it does not verify this commit! This commit is SUSPICIOUS.
GPG key ID: 4AEE18F83AFDEB23

View file

@ -12,7 +12,10 @@ Follow the instructions in the llama.cpp README to generate the `ggml-model.bin`
## GPU offloading
Enabled with the `--n-gpu-layers` parameter. If you have enough VRAM, use a high number like `--n-gpu-layers 200000` to offload all layers to the GPU. Otherwise, start with a low value like `--n-gpu-layers 10` and gradually increase it until you run out of memory.
Enabled with the `--n-gpu-layers` parameter.
* If you have enough VRAM, use a high number like `--n-gpu-layers 200000` 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.
To use this feature, you need to manually compile and install `llama-cpp-python` with GPU support.