Views
No views yet
| File | Type | Size | Description |
|---|---|---|---|
llada-8b-f16.gguf | F16 | ~14.9 GB | Full precision, best quality |
llada-8b-q8_0.gguf | Q8_0 | ~8.4 GB | 8-bit quantization, near-lossless |
llada-8b-q4km.gguf | Q4_K_M | ~5.1 GB | 4-bit mixed, best speed/quality ratio |
1# Download
2huggingface-cli download diffuse-cpp/LLaDA-8B-Instruct-GGUF llada-8b-q4km.gguf
3
4# Build diffuse-cpp
5git clone --recursive https://github.com/iafiscal1212/diffuse-cpp.git
6cd diffuse-cpp
7cmake -B build -DCMAKE_BUILD_TYPE=Release
8cmake --build build -j$(nproc)
9
10# Run
11./build/diffuse-cli -m ../llada-8b-q4km.gguf \
12 --tokens "128000,3923,374,279,6864,315,9822,30" \
13 -n 256 -s 16 -t 12 --remasking entropy_exit| Prompt | No-Cache | Cache | Steps | vs llama.cpp |
|---|---|---|---|---|
| Capital of France? | 17.5 | 24.4 tok/s | 3 | 2.9x |
| Translate to French | 25.9 | 27.7 tok/s | 2 | 3.3x |
| 15 x 23? | 12.8 | 15.7 tok/s | 4 | 1.8x |
| Translate to Spanish | 7.6 | 22.9 tok/s | 7 | 2.7x |
| Python is_prime() | 3.2 | 4.9 tok/s | 16 | 0.6x |
| Poem about ocean | 3.2 | 5.3 tok/s | 16 | 0.6x |
| Why is sky blue? | 3.3 | 12.0 tok/s | 16 | 1.4x |
| List the planets | 3.3 | 9.4 tok/s | 15 | 1.1x |
| Average | 9.6 | 15.3 tok/s | 1.8x |
1@software{diffuse_cpp_2026,
2 title={diffuse-cpp: High-Performance Inference for Diffusion Language Models},
3 author={Carmen Esteban},
4 year={2026},
5 url={https://github.com/iafiscal1212/diffuse-cpp}
6}