[ICML 2025] Dissecting Quantization Error: Why "Alignment" is the Missing Piece in 4-bit LLMs
Dissecting Quantization Error: A Concentration-Alignment Perspective
The paper introduces a novel framework that decomposes linear-layer quantization error into three key factors: bit-width, Concentration (outliers), and Alignment (principal direction similarity). Based on this, it proposes the Concentration-Alignment Transform (CAT), a training-free linear transformation that optimizes both spread and direction to achieve SOTA 4-bit quantization.
TL;DR
Most state-of-the-art quantization methods (like QuaRot or SmoothQuant) focus on "Concentration"—taming those nasty outliers in LLM activations. This paper proves that outliers are only half the story. By introducing a new theoretical framework, the authors show that Alignment (how well weight and activation directions match) is just as critical. Their proposed Concentration-Alignment Transform (CAT) optimizes both, allowing 4-bit models to reach the signal quality of 6-bit models without expensive retraining.
The Signal-to-Noise Perspective: Beyond Outliers
In the world of Post-Training Quantization (PTQ), we usually blame "outliers" (massive values in specific channels) for crashing model accuracy. To fix this, we use rotations or scaling. However, the authors of this paper ask a deeper question: What is the fundamental math of quantization noise?
They derive a theorem showing that Signal-to-Quantization-Noise Ratio (SQNR) factorizes into:
- Bit-width: The resolution.
- Concentration (): How "spread out" the data is (the outlier problem).
- Alignment (): How the principal directions of your weights and activations align.
The breakthrough insight? Orthogonal transforms (like Hadamard or randomized rotations) cannot improve alignment. If your weights and activations are misaligned, no amount of spinning will fix the inherent error.

Why Current Methods Fall Short
Existing methods like SmoothQuant only scale channels (diagonal scaling), and QuaRot only rotates channels (orthogonal).
- SmoothQuant improves activation concentration but often hurts weight concentration.
- Hadamard Transforms are great at making distributions look Gaussian (high concentration), but they are "alignment-blind."
As shown in the authors' analysis, certain layers (like down_proj in LLAs) have massive alignment gaps—sometimes over 10dB of potential SQNR is left on the table simply because the directions don't match.

The CAT Methodology: Concentrated and Aligned
The paper proposes the Concentration-Alignment Transform (CAT). The process is elegant:
- Calculate the Optimal Aligner (): Using the matrix geometric mean of the weight and activation covariances, they find a transform that maps both into a shared space where their variation directions are perfectly synced.
- Apply a Hadamard (): Once aligned, they apply a rotation to ensure the values are concentrated (no outliers).
- Block-Diagonal Approximation: Since a full-rank matrix multiplication is too slow for inference, they approximate it using block-diagonal matrices (e.g., or blocks). This keeps the overhead minimal while capturing most of the alignment benefit.

Experimental Results: 4-bit acting like 6-bit
The results are striking. Across Llama 2, Llama 3, and Qwen models, CAT consistently sets new benchmarks for PTQ.
- SQNR Gains: In MLP layers, CAT W4A4 (4-bit weights/activations) actually surpasses the quality of a standard W6A6 quantization.
- Zero-Shot Performance: On tasks like PIQA and ARC, CAT (block) with a small amount of training outperforms even FlatQuant (the previous SOTA).
- No Free Lunch? CAT is largely training-free. While adding a bit of training helps, the "raw" version of the CAT transform already beats most existing methods that require complex optimization.
Critical Analysis & Conclusion
The value of this work is not just in the performance numbers, but in the theoretical lens it provides. By moving from "outlier-hunting" to "manifold-alignment," it opens up a new frontier for model compression.
Limitations: The "perfect" alignment matrix is full-rank and too heavy for real-time deployment. While the block-diagonal version works well, finding the optimal block size and permutation for different hardware remains an open engineering challenge.
Future Outlook: As we push LLMs toward 2-bit or 3-bit quantization, "Alignment" will likely become the primary bottleneck. CAT provides the mathematical roadmap to solve it.
