Views
No views yet
llama-server:llama-server -hf bloomer010/Ling-3.0-tiny-GGUF:Q4_K_M| Quant | Size | your memory |
|---|---|---|
| BF16 | 15.8 GB | 16 GB+ |
| UD-Q8_K_XL | 11.19 GB | 12 GB+ |
| Q8_0 | 8.41 GB | 10 GB+ |
| UD-Q6_K_XL | 7.27 GB | 8 GB+ |
| Q6_K | 6.50 GB | 8 GB+ |
| Q5_K_M | 5.64 GB | 7 GB+ |
| Q5_K_S | 5.48 GB | 6 GB+ |
| Q5_0 | 5.48 GB | 6 GB+ |
| Q4_K_M | 4.82 GB | 6 GB+ |
| Q4_K_S | 4.55 GB | 6 GB+ |
| Q4_0 | 4.53 GB | 6 GB+ |
| MXFP4_MOE | 4.72 GB | 6 GB+ ¹ |
| IQ4_XS | 4.29 GB | 5 GB+ |
| Q3_K_M | 3.84 GB | 5 GB+ |
| Q3_K_S | 3.51 GB | 5 GB+ |
| IQ3_S | 3.51 GB | 4 GB+ |
| IQ3_XXS | 3.13 GB | 4 GB+ |
| Q2_K | 2.99 GB | 4 GB+ |
| IQ2_M | 2.70 GB | 3 GB+ |
| IQ2_S | 2.48 GB | 3 GB+ |
| IQ2_XS | 2.43 GB | 3 GB+ |
| IQ2_XXS | 2.21 GB | 3 GB+ |
| IQ1_M | 1.93 GB | 3 GB+ |
| IQ1_S | 1.76 GB | 2 GB+ |
| Q1_0 | 1.30 GB | 2 GB+ |
MXFP4_MOE runs its native path on MXFP4-capable GPUs (Blackwell RTX 50-series, GB10/DGX
Spark). Elsewhere it falls back to a slower dequant path — prefer a K-quant on older hardware.IQ1_S through IQ4_XS) were generated with a model-specific importance
matrix:UD-Q8_K_XL uses Q8_0 for the main expert gate and up tensors. Token embeddings, expert down
projections, attention and Q-LoRA projections, and KDA projections remain BF16.UD-Q6_K_XL uses Q6_K for the main expert gate and up tensors. Token embeddings, output weights,
expert down projections, attention and Q-LoRA projections, and KDA projections use Q8_0. It was
generated with the importance matrix described above.num_nextn_predict_layers: 0)1git clone https://github.com/ggml-org/llama.cpp.git # bailingmoe3 merged 2026-08-17
2# pre-merge builds:
3# git clone --branch bailingmoe3-support https://github.com/aetherbird/llama.cpp.git
4cd llama.cpp
5cmake -B build -DGGML_CUDA=ON
6cmake --build build --config Release -j --target llama-cli llama-server1./build/bin/llama-server \
2 -m Ling-3.0-tiny-Q4_K_M.gguf \
3 -c 131072 \
4 -ngl auto \
5 --flash-attn auto \
6 --temp 1.0 --top-p 0.95 --top-k 20 \
7 --jinja"chat_template_kwargs": {"enable_thinking": false}. Recommended sampling parameters from the
source model card are temperature=1.0, top_p=0.95, and top_k=20.