FAIR-Calib tames quantization instability in diffusion LLMs
Diffusion LLMs' early token decisions are fragile—FAIR-Calib protects them during compression.
Diffusion Large Language Models (dLLMs) generate text by iteratively refining tokens, but each decision is committed irreversibly. This creates a 'stability lag': early choices remain fragile even after being written, making them vulnerable to post-training quantization (PTQ) errors. When those errors flip a borderline decision at the write frontier, the mistake becomes permanent and amplifies through later iterations. Until now, no calibration method specifically accounted for this cascading vulnerability.
FAIR-Calib (Frontier-Aware Instability-Reweighted Calibration) solves this with a two-stage approach. Stage I uses a full-precision teacher model to estimate a position prior that flags frontier hits and masked-stage reliability. Stage II performs off-policy, layer-wise calibration by minimizing a reweighted hidden-state MSE loss—effectively prioritizing fragile frontier states without costly end-to-end diffusion rollouts. The authors theoretically justify the weighted objective as a surrogate for output KL divergence. Empirically, FAIR-Calib consistently beats SOTA baselines on LLaDA and Dream under W4A4 quantization (4-bit weights and activations), drastically reducing frontier decision flips and post-commit mismatches. The paper has been accepted at ICML 2026.
- Targets 'stability lag' in diffusion LLMs where early token decisions remain fragile after commitment.
- Two-stage PTQ: first estimates a position prior from a full-precision teacher, then uses reweighted hidden-state MSE to protect frontier states.
- Outperforms SOTA baselines on LLaDA and Dream at 4-bit weights and activations (W4A4).
Why It Matters
Enables efficient deployment of diffusion LLMs with minimal accuracy loss, key for latency-sensitive and memory-constrained applications.