Felipe97/llama-cpp-compiled
01.1k
1# quantize2 3This tool takes a GGUF input model file, typically in a high-precision format like F32 or BF16, and converts it to a quantized format.4Quantization reduces the precision of model weights (e.g., from 32-bit floats to 4-bit integers), which shrinks the model's size and can speed up inference.5This process however, may introduce some accuracy loss which is usually measured in [Perplexity](https://huggingface.co/docs/transformers/en/perplexity) (ppl) and/or [Kullback–Leibler Divergence](https://en.wikipedia.org/wiki/Kullback%E2%80%93Leibler_divergence) (kld).6This can be minimized by using a suitable imatrix file.7 8You can also use the [GGUF-my-repo](https://huggingface.co/spaces/ggml-org/gguf-my-repo) space on Hugging Face to build your own quants without any setup. It syncs from llama.cpp `main` every 6 hours.9 10## Overview11 12Quantization is done in two phases:13- Convert the original model to GGUF format.14- Quantize the converted GGUF file.15 16If the model supports multimodal inputs (images or audio), you also need to convert and quantize the multimodal encoders and projectors.17 18To perform these tasks, you need to install the Python requirements:19 20```bash21python3 -m pip install -r requirements.txt22```23 24Or if you use `uv`:25 26```bash27uv pip install -r requirements.txt --index-strategy unsafe-best-match28```29 30## Prepare the input GGUF file31 32To convert a model from a Hugging Face repo, you can use a command like the following:33 34```35python convert_hf_to_gguf.py --outfile gemma-4-E2B-it-bf16.gguf --outtype bf16 --remote google/gemma-4-E2B-it36```37 38Notes:39- In the usual case where the model is distributed in 16-bit format, `--outtype auto` (or omitting `--outtype` entirely) also works well.40- If you have previously downloaded the model locally, specify the directory and remove the `--remote` flag.41- For compatibility reasons, the Python requirements install transformers 4, but more and more models (like Gemma 4) require transformers 5. You can safely `pip install -U transformers` to get the latest version.42 43## Quantize the GGUF44 45After you have created a high-quality GGUF version of the model, you use `llama-quantize` to apply quantization. For example, quantize to `Q4_K_M` using a command like the following:46 47```bash48./build/bin/llama-quantize gemma-4-E2B-it-bf16.gguf gemma-4-E2B-it-Q4_K_M.gguf Q4_K_M49```50 51Various quantization methods are described [later in this document](#quantize).52 53Options:54* `--allow-requantize` allow requantizing tensors that have already been quantized. Warning: This can severely reduce quality compared to quantizing from 16bit or 32bit55* `--leave-output-tensor` leave output.weight un(re)quantized. Increases model size but may also increase quality, especially when requantizing56* `--pure` disable k-quant mixtures and quantizes all tensors to the same type57* `--imatrix file_name` use data in file_name as importance matrix for quant optimizations58* `--include-weights tensor_name` use importance matrix for this tensor (can be specified multiple times)59* `--exclude-weights tensor_name` use importance matrix for the tensors **not** specified (include/exclude cannot be mixed)60* `--output-tensor-type` use a specific quant type for the output.weight tensor61* `--token-embedding-type` use a specific quant type for the token embeddings tensor62* `--keep-split` generate the quantized model in the same shards as the input file instead of a single quantized file63 64Advanced options:65* `--tensor-type` quantize specific tensor(s) to specific quant types. Supports regex syntax. May be specified multiple times.66* `--prune-layers` prune (remove) the layers in the list67* `--override-kv` option to override model metadata by key in the quantized model. May be specified multiple times.68 69## (Optional) Convert the multimodal components70 71llama.cpp will convert the LLM portion of the source model, which is enough for conversational applications. If the model accepts multimodal inputs and you wish to take advantage of them, you need to create a separate GGUF file. This file is generically known as `mmproj`, for "multimedia projector"; however, it may contain various components such as vision or audio encoders in addition to projections.72 73Multimodal components are usually much smaller than the LLMs they come with. In addition, their quality has a direct impact on the quality of LLM generations, because these components are in charge of preparing the inputs for the LLM: the closer inputs are to data seen during training, the better LLM results will be.74 75For these reasons, multimodal components are usually kept in a high-quality format such as bf16 or q8. The impact on speed and memory from using a smaller quant is negligible, but overall quality could be impacted.76 77```bash78python convert_hf_to_gguf.py --mmproj --outfile mmproj-gemma-4-E2B-it-Q8_0.gguf --outtype q8_0 --remote google/gemma-4-E2B-it79```80 81## Run the quantized model82 83 84```bash85./build/bin/llama cli -m ./gemma-4-E2B-it-Q4_K_M.gguf --mmproj ./mmproj-gemma-4-E2B-it-Q8_0.gguf --image <input_image> --prompt "Describe this image"86```87 88## Quantization Examples89 90```bash91# naive Q4_K_M quantization using default settings and 8 CPU threads. Output will be "ggml-model-Q4_K_M.gguf"92./llama-quantize input-model-f32.gguf q4_k_m 893```94 95```bash96# quantize model enabling re-quantization, leaving the output tensor unquantized and all others quantized at the same level (Q4_K)97./llama-quantize --allow-requantize --leave-output-tensor --pure input-model-f32.gguf q4_k_m 898```99 100```bash101# quantize model using an importance matrix for specified tensors only (attn_v and ffn_down)102./llama-quantize --imatrix imatrix.gguf --include-weights attn_v --include-weights ffn_down input-model-f32.gguf q4_k_m 8103```104 105```bash106# quantize model setting output tensor to Q5_K_M, token embeddings to Q3_K_M, and keeping the input file's shards107./llama-quantize --imatrix imatrix.gguf --output-tensor-type q5_k --token-embedding-type q3_k --keep-split input-model-f32.gguf q4_k_m 8108```109 110```bash111# quantize model using a regex to quantize attn_k tensors in odd layers to Q5_K_M and attn_q tensors in even layers to Q3_K_M112./llama-quantize --imatrix imatrix.gguf --tensor-type "\.(\d*[13579])\.attn_k=q5_k" --tensor-type "\.(\d*[02468])\.attn_q=q3_k" input-model-f32.gguf q4_k_m 8113```114 115```bash116# quantize model setting tensors attn_v and ffn_down to Q5_K_M and pruning layers 20, 21, and 22117./llama-quantize --imatrix imatrix.gguf --tensor-type attn_v=q5_k --tensor-type ffn_down=q5_k --prune-layers 20,21,22 input-model-f32.gguf q4_k_m 8118```119 120```bash121# override expert used count metadata to 16, prune layers 20, 21, and 22 without quantizing the model (copy tensors) and use specified name for the output file122./llama-quantize --imatrix imatrix.gguf --override-kv qwen3moe.expert_used_count=int:16 --prune-layers 20,21,22 input-model-f32.gguf pruned-model-f32.gguf copy 8123```124 125## Memory/Disk Requirements126 127When running the larger models, make sure you have enough disk space to store all the intermediate files.128As the models are currently fully loaded into memory, you will need adequate disk space to save them and sufficient RAM to load them. At the moment, memory and disk requirements are the same. For example (Llama 3.1):129 130| Model | Original size | Quantized size (Q4_K_M) |131| ----: | ------------: | ----------------------: |132| 8B | 32.1 GB | 4.9 GB |133| 70B | 280.9 GB | 43.1 GB |134| 405B | 1,625.1 GB | 249.1 GB |135 136 137## Quantization138 139Several quantization methods are supported. They differ in the resulting model disk size and inference speed. For example,140 141### [meta-llama/Llama-3.1-8B](https://huggingface.co/meta-llama/Llama-3.1-8B)142 143| Measure | IQ1_S | IQ1_M | IQ2_XXS | IQ2_XS | IQ2_S | IQ2_M |144| --------------------------- | ------------ | ------------ | ------------ | ------------- | ------------- | ------------ |145| bits/weight | 2.0042 | 2.1460 | 2.3824 | 2.5882 | 2.7403 | 2.9294 |146| size (GiB) | 1.87 | 2.01 | 2.23 | 2.42 | 2.56 | 2.74 |147| prompt processing t/s @ 512 | 858.88 ±1.22 | 847.99 ±0.47 | 852.39 ±0.85 | 826.99 ±12.51 | 783.55 ±13.73 | 787.68 ±7.00 |148| text generation t/s @ 128 | 79.73 ±0.79 | 72.92 ±0.14 | 79.86 ±0.22 | 78.04 ±0.46 | 77.30 ±2.47 | 74.44 ±0.15 |149 150| Measure | IQ3_XXS | IQ3_XS | IQ3_S | IQ3_M | IQ4_XS | IQ4_NL |151| --------------------------- | ------------ | ------------ | ------------ | ------------- | ------------- | ------------ |152| bits/weight | 3.2548 | 3.4977 | 3.6606 | 3.7628 | 4.4597 | 4.6818 |153| size (GiB) | 3.04 | 3.27 | 3.42 | 3.52 | 4.17 | 4.38 |154| prompt processing t/s @ 512 | 813.88 ±6.53 | 708.71 ±1.26 | 798.78 ±8.81 | 768.70 ±13.73 | 771.80 ±11.38 | 806.03 ±7.07 |155| text generation t/s @ 128 | 73.95 ±0.20 | 71.67 ±0.54 | 69.31 ±0.63 | 70.15 ±0.33 | 77.51 ±0.20 | 76.63 ±0.28 |156 157 158| Measure | Q2_K_S | Q2_K | Q3_K_S | Q3_K_M | Q3_K_L | Q4_K_S |159| --------------------------- | ------------ | ------------ | ------------ | ------------ | ------------ | ------------ |160| bits/weight | 2.9697 | 3.1593 | 3.6429 | 3.9960 | 4.2979 | 4.6672 |161| size (GiB) | 2.78 | 2.95 | 3.41 | 3.74 | 4.02 | 4.36 |162| prompt processing t/s @ 512 | 798.91 ±6.40 | 784.45 ±7.85 | 752.17 ±7.94 | 783.44 ±9.92 | 761.17 ±7.55 | 818.55 ±9.58 |163| text generation t/s @ 128 | 90.01 ±0.12 | 79.85 ±0.20 | 69.84 ±0.18 | 71.68 ±0.22 | 69.38 ±0.49 | 76.71 ±0.20 |164 165| Measure | Q4_K_S | Q4_K_M | Q5_K_S | Q5_K_M | Q6_K | Q8_0 |166| --------------------------- | ------------ | ------------- | ------------ | ------------ | ------------- | ------------ |167| bits/weight | 4.6672 | 4.8944 | 5.5704 | 5.7036 | 6.5633 | 8.5008 |168| size (GiB) | 4.36 | 4.58 | 5.21 | 5.33 | 6.14 | 7.95 |169| prompt processing t/s @ 512 | 818.55 ±9.58 | 821.81 ±21.44 | 752.52 ±0.99 | 758.69 ±7.43 | 812.01 ±10.82 | 865.09 ±8.30 |170| text generation t/s @ 128 | 76.71 ±0.20 | 71.93 ±1.52 | 69.53 ±0.18 | 67.23 ±1.08 | 58.67 ±3.13 | 50.93 ±0.08 |171 172| Measure | F16 |173| --------------------------- | ------------ |174| bits/weight | 16.0005 |175| size (GiB) | 14.96 |176| prompt processing t/s @ 512 | 923.49 ±0.53 |177| text generation t/s @ 128 | 29.17 ±0.04 |178 179## Background information on llama-quantize180 181- [k-quants](https://github.com/ggml-org/llama.cpp/pull/1684)182- k-quants improvements and i-quants183 - [#2707](https://github.com/ggml-org/llama.cpp/pull/2707)184 - [#2807](https://github.com/ggml-org/llama.cpp/pull/2807)185 - [#4773 - 2-bit i-quants (inference)](https://github.com/ggml-org/llama.cpp/pull/4773)186 - [#4856 - 2-bit i-quants (inference)](https://github.com/ggml-org/llama.cpp/pull/4856)187 - [#4861 - importance matrix](https://github.com/ggml-org/llama.cpp/pull/4861)188 - [#4872 - MoE models](https://github.com/ggml-org/llama.cpp/pull/4872)189 - [#4897 - 2-bit quantization](https://github.com/ggml-org/llama.cpp/pull/4897)190 - [#4930 - imatrix for all k-quants](https://github.com/ggml-org/llama.cpp/pull/4930)191 - [#4951 - imatrix on the GPU](https://github.com/ggml-org/llama.cpp/pull/4957)192 - [#4969 - imatrix for legacy quants](https://github.com/ggml-org/llama.cpp/pull/4969)193 - [#4996 - k-quants tuning](https://github.com/ggml-org/llama.cpp/pull/4996)194 - [#5060 - Q3_K_XS](https://github.com/ggml-org/llama.cpp/pull/5060)195 - [#5196 - 3-bit i-quants](https://github.com/ggml-org/llama.cpp/pull/5196)196 - [quantization tuning](https://github.com/ggml-org/llama.cpp/pull/5320), [another one](https://github.com/ggml-org/llama.cpp/pull/5334), and [another one](https://github.com/ggml-org/llama.cpp/pull/5361)197 