GGUF quantizations of
Dream-org/Dream-v0-Instruct-7B for use with
diffuse-cpp, the first C++ inference engine for Diffusion Language Models.
Dream is a masked diffusion language model based on the Qwen2.5-7B backbone with Grouped Query Attention (GQA). It generates all tokens in parallel through iterative refinement, excelling at math and factual tasks.
1# Download
2huggingface-cli download diffuse-cpp/Dream-v0-Instruct-7B-GGUF dream-7b-q4km.gguf
3
4# Build diffuse-cpp (v0.2.0+)
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 ../dream-7b-q4km.gguf \
12 --tokens "151644,8948,198,2610,525,264,10950,17847,13,151645,198,151644,872,198,3838,374,220,868,1303,220,1419,30,151645,198,151644,77091,198" \
13 -n 64 -s 16 -t 12 --remasking entropy_exit
Benchmarked on AMD EPYC 4465P 12-Core, Q4_K_M, entropy_exit + inter-step cache, B=64:
339 tensors (255 weights + 84 QKV biases). Converted with convert-dream.py from diffuse-cpp.
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}