REVIEW 3 major objections 6 minor 2 cited by
WUSH, a non-orthogonal blockwise transform built from a Hadamard matrix and second-moment statistics, is the closed-form optimal linear transform for FP block quantizers and nearly optimal for INT block quantizers under round-to-nearest Abs
Reviewed by Pith at T0; open to challenge. T0 means a machine referee read the full paper against a public rubric. the ladder, T0–T4 →
WUSH is a closed-form, data-aware, near-optimal block transform for 4-bit weight-activation quantization that improves LLM accuracy over Hadamard baselines.
T0 review reviewed 2026-08-03 challenge →
load-bearing objection WUSH is a genuinely new closed-form transform with real empirical gains on MXFP4, but the headline optimality theorem is proven for a pseudo-noise surrogate of RTN, not the exact quantizer — worth a careful revision and a serious referee. the 3 major comments →
WUSH: Near-Optimal Adaptive Transforms for LLM Quantization
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
The reading
Core claim
The central claim is that, for each quantization block, the transform pair T_wush = H S^{-1/2} U^T W'^T and T_xvsh = T_wush^{-T} minimizes the expected squared error of the quantized product of weights and activations. Here W' and X' are Cholesky factors of the block's second-moment matrices, and U S V^T is the SVD of W'^T X'. The construction is exactly optimal for FP quantizers under multiplicative pseudo-noise and asymptotically optimal for INT quantizers under scale-proportional pseudo-noise, with the S^{1/2} rescaling and the Hadamard factor both necessary; dropping either reduces it to the same loss as any orthogonal transform.
What carries the argument
The transform T_wush = H S^{-1/2} U^T W'^T (mnemonic WUSH) is the central object. It acts as: a whitening-like rescaling by S^{-1/2} that balances the quantization-error budget across principal directions; a rotation by U^T that aligns with the cross-covariance of the calibration activation and weights; an isotropic Hadamard factor H that spreads remaining variance; and a Cholesky factor W' that accounts for within-block correlation. The identity T_xvsh = T_wush^{-T} couples the weight and activation transforms, converting the two-sided quantization loss into a one-sided expectation E_{y,ε}||T^{-1}ε(Ty)||^2 that can be minimized in closed form.
Load-bearing premise
The proof's optimality rests on modeling the exact RTN AbsMax quantizer as zero-mean independent pseudo-noise—multiplicative for FP and scale-proportional for INT—and on dropping the interaction term between the weight and activation quantization errors; if real round-to-nearest errors correlate within a block or depend on the data beyond this noise model, WUSH is not mathematically guaranteed to be the optimal transform for exact RTN.
What would settle it
Brute-force search over all block transforms (e.g., d=2 or d=4) on synthetic weights/activations with exact RTN AbsMax quantization: any transform with lower blockwise loss than WUSH for an FP format would falsify the FP optimality claim. Alternatively, craft an FP quantizer with deterministic, within-block-correlated errors (all errors sharing sign) and check whether the predicted lower bound d^{-1}(tr S)^2 is violated.
If this is right
- For FP block quantizers, under the paper's noise model, any orthogonal transform—including Hadamard alone—leaves quantization loss unchanged; only the non-orthogonal WUSH construction reduces it, by up to a factor d in the extreme-outlier regime.
- For INT block quantizers, the gap between Hadamard and the optimal bound grows with outlier strength; WUSH closes that gap up to a o(1) factor for tail-bounded data.
- Because the transform is calibration-derived and closed-form, it can be recomputed per model/layer without training or fine-tuning, and it integrates with round-to-nearest and second-order weight-update quantization schemes.
- The per-block specialization survives GPU efficiency: fused kernels match Hadamard throughput within about 1.3% while the FP4 matmul gives up to ~6.6x per-layer speedup over BF16.
- On Llama-3.1-8B-Instruct MXFP4, WUSH moves average accuracy from 70.45 to 73.21 with RTN, and from 73.65 to 74.35 with second-order updates, nearly closing the gap to higher-precision formats.
Where Pith is reading between the lines
- The same derivation suggests a recipe for other quantizers: model the error as value-proportional (FP-like) or scale-proportional (INT-like) noise, then the optimal transform is a whitened-Hadamard rotation in the SVD basis; closed forms for non-uniform codebooks or different group sizes could be obtained by changing the noise model.
- The paper notes MXFP4 behaves like a hybrid of FP and INT; a noise model mixing multiplicative and scale-proportional terms might yield an even better transform for MXFP4 specifically, and the layer-wise loss tables suggest room remains.
- If a diagonal approximation of the data-aware component preserves most of the gain (as the authors propose for future work), the online cost per token could drop, making the method viable for smaller block sizes where per-block matrices dominate memory.
- A testable prediction of the mechanism: WUSH's advantage over Hadamard should grow with the anisotropy (singular-value spread) of the calibration block; measuring layerwise gains against trace(S)^2/tr(S^2) would confirm this.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes WUSH, a blockwise, data-dependent linear transform for joint weight-activation quantization under RTN AbsMax block quantizers. The transform has the form T_wush = H S^{-1/2} U^T W'^T (Eq. 8) and is derived by minimizing an L2 output-loss surrogate under a stochastic pseudo-noise model of the quantizer. The authors prove a closed-form optimality result for FP quantization and a near-optimality result for INT quantization under tail-bounded distributions (Theorem 1), and they integrate WUSH with RTN and GPTQ in a practical GPU kernel. Experiments on Llama-3 and Qwen-3 models show consistent accuracy gains over Hadamard-based baselines, especially for MXFP4, and kernel throughput close to optimized Hadamard baselines.
Significance. If the theoretical claim is taken at face value, this is a significant contribution: it gives the first closed-form optimal transform for FP block quantizers and a principled explanation for the empirical success of Hadamard rotations, while also providing a practical, efficient kernel and solid end-to-end accuracy gains. The paper is also well positioned in the current literature: the comparison against MR-GPTQ, QuaRot, SpinQuant, and SmoothQuant is appropriate, and the open-source release is a strength. However, the central optimality proof is for a stochastic surrogate of the exact RTN quantizer, not for the deterministic quantizer used in deployment; this gap must be addressed before the 'provably near-optimal' claim can be accepted as stated.
major comments (3)
- [Section 4.1, Theorem 1, Eq. (18), Eq. (23)] The optimality theorem is proved for a stochastic pseudo-noise model of RTN, not for the exact deterministic quantizer. For FP, Eq. (18) assumes epsilon(alpha)=diag(eta)alpha with i.i.d. zero-mean eta; for INT, Eq. (23) assumes epsilon(alpha)=||alpha||_inf eta. In reality, RTN AbsMax errors are deterministic, share a common scale within a block, and are not independent across coordinates. The deployed method (Algorithm 1, line 14; Eq. (10)) uses exact RTN. Thus Theorem 1 supports optimality of WUSH only for the surrogate objective, not for the exact quantizer. This is load-bearing for the abstract's 'provably near-optimal' claim. I request either a rephrasing of the theorem to explicitly claim optimality under the stated pseudo-noise model, or a synthetic exact-RTN check (e.g., brute-force or coordinate-descent minimization of the exact blockwise loss on small blocks) to demonstrate that
- [Eq. (13) and surrounding derivation] The split of the loss into two non-negative terms relies on a first-order approximation that drops the cross-term epsilon(T_W w)^T epsilon(T_X x) and its square. No bound or empirical estimate is given for the magnitude of this term. At 4-bit precision the quantization errors are not necessarily small, so the omitted term can be of the same order as the retained terms. This affects the equality conditions and hence the exact optimality claim for FP and the near-optimality factor for INT. I recommend adding a quantitative bound, or at least a numerical experiment measuring the dropped term on real calibration data, to justify the approximation.
- [Section 3, after Eq. (5)] The paper states 'We will approximate the layerwise loss as ell approximately sum_i ell(i)' and then minimizes the blockwise losses independently. This ignores cross-block error correlations. Since the objective is the norm of the sum of blockwise errors, correlations between blocks can in principle change the optimal transform. This is an approximation that is not discussed or tested. I would like to see at least a brief justification (or an experiment comparing the independently optimized blockwise loss to the true layerwise loss) to support the claimed optimality of the per-block construction.
minor comments (6)
- [Abstract vs. Section 5] The abstract reports 'up to 5.8x per-layer throughput' while Section 5 and the full-text abstract report 'up to 6.63x'. Please reconcile these numbers.
- [Author list] Typesetting errors in author names: 'V age Egiazarian' and 'T orsten Hoefler' have stray spaces.
- [Eq. (26) and Eq. (28)] The notation 'do(1)-1' is ambiguous; it should be typeset as d^{o(1)-1} to avoid confusion with a product d * o(1).
- [Section 4.3.2, Eq. (30)] For general distributions the bound is only within a factor d, which is weak for the block sizes used (d=32). The paper should state more prominently that 'near-optimal' for INT applies only to tail-bounded distributions, and that the general-distribution guarantee is only a d-factor bound.
- [Table 4 (Qwen3-32B)] For Qwen3-32B MXFP4 RTN, WUSH average accuracy (82.01) is slightly below Hadamard (82.15). The text says 'similar trends' across models; please acknowledge this exception explicitly.
- [Algorithm 1] The damping ratio lambda is an input parameter but its value/selection is not reported. The theoretical derivation does not use damping; please state how lambda is chosen in the experiments and whether the results are sensitive to it.
Circularity Check
No circular derivation; the optimality theorem is self-contained for the stated pseudo-noise quantizer models, with an acknowledged modeling gap rather than a circular reduction.
full rationale
The derivation chain is a conventional minimization: start from blockwise loss Eq. (5), impose an unbiased quantizer and T_W = T_X^{-⊤}, split the loss into two non-negative terms Eq. (13), reduce the two-sided problem to the one-sided loss Eq. (14), parameterize all invertible transforms via SVD Eq. (16), and then derive lower bounds (Eqs. (20), (25)-(29)) that are attained or nearly attained by U'=H, S'=S^{1/2}, R=I. This is a self-contained optimization problem. The WUSH transform in Eq. (8) is the closed-form solution of that optimization, not a fitted constant renamed as a prediction. The only real caveat is model adequacy: Theorem 1 proves optimality for the zero-mean pseudo-noise surrogates Eqs. (18) and (23), not for the exact deterministic RTN AbsMax quantizer, and the paper itself labels the dropped ε^⊤ε term a first-order approximation in Eq. (13) and describes its error models as modeling choices ('we can model', 'We provide more rigorous justifications'). That is an assumption-to-conclusion gap about whether the surrogate captures RTN, not circularity: the assumptions, objective, and theorem are all stated independently, and no parameter is fitted to the target layer-loss table. Self-citations to Egiazarian et al. (2025) and Chen et al. (2025) are used for MR-GPTQ baselines, kernel support, and an alternative inter-block update formulation, not for the load-bearing optimality argument. The empirical evaluations on held-out benchmarks provide independent support for the usefulness of WUSH. Overall, no circular step is exhibited; the central derivation is mathematically self-contained given its stated assumptions.
Axiom & Free-Parameter Ledger
free parameters (1)
- damping ratio λ =
not reported
axioms (8)
- ad hoc to paper RTN AbsMax quantization error is a zero-mean independent random vector: ε(α)=diag(η)α for FP (Eq. 18) and ε(α)=∥α∥∞ η for INT (Eq. 23), with η i.i.d. and Eη=0.
- domain assumption The quantizer is unbiased and the ε(T_W w)^T ε(T_X x) cross term is negligible (first-order approximation) in Eq. (13).
- domain assumption Columns of W and X within a block are i.i.d. samples from independent distributions w∼D_w and x∼D_x (Section 4.1).
- domain assumption The layerwise loss is approximated as the sum of per-block losses, with block-diagonal transforms and quantization groups aligned to block size d (Eqs. 3-5).
- domain assumption For INT near-optimality up to d^{o(1)}, D_y is zero-mean multivariate Gaussian or Laplacian (Lemma 3; Section 4.3.2).
- standard math W'(i), X'(i) are full-rank Cholesky factors of second moments; damping λ is applied otherwise (Section 3, Appendix A.1).
- ad hoc to paper Smooth FP model approximates 1+x≈2^x so casting error is multiplicative (Appendix A.4.2).
- standard math Hadamard matrix exists for block size d a power of two (Section 3).
Cite this review
Pith. "Pith review of WUSH: Near-Optimal Adaptive Transforms for LLM Quantization." pith.science (2026). https://pith.science/paper/WS4AZZ2D
@misc{pith2026251200956,
author = {Pith},
title = {Pith review of: WUSH: Near-Optimal Adaptive Transforms for LLM Quantization},
year = {2026},
howpublished = {\url{https://pith.science/paper/WS4AZZ2D}},
note = {Machine review of arXiv:2512.00956}
}
abstract
Quantizing LLM weights and activations is a standard approach for efficient deployment, but a few extreme outliers can stretch the dynamic range and amplify low-bit quantization errors. Prior transform-based mitigations (e.g., Hadamard rotations) are fixed and data-agnostic, and their optimality for quantization has remained unclear. We derive closed-form optimal linear blockwise transforms for joint weight-activation quantization under standard RTN AbsMax-scaled block quantizers, covering both integer and floating-point formats. The resulting construction, WUSH, combines a Hadamard backbone with a data-dependent second-moment component to form a non-orthogonal transform that is provably near-optimal for FP and INT quantizers under mild assumptions while admitting an efficient fused GPU implementation. Empirically, WUSH improves W4A4 accuracy over the strongest Hadamard-based baselines (e.g., on Llama-3.1-8B-Instruct in MXFP4, it gains +2.8 average points with RTN and +0.7 with GPTQ) while delivering up to 5.8$\times$ per-layer throughput over BF16 via FP4 MatMul. Source code is available at https://github.com/IST-DASLab/WUSH.
Figures
Forward citations
Cited by 2 Pith papers
-
Price of metric universality in vector quantization is at most 0.11 bit
A universal vector-quantization codebook exists that is within 0.11 bit/coordinate of covariance-adaptive waterfilling simultaneously for all input covariances, for Gaussian weights.
-
High-Rate Quantized Matrix Multiplication I
High-rate quantization theory yields accurate approximations for the distortion of absmax INT and FP schemes in generic weight-plus-activation matrix multiplication.
Reference graph
Works this paper leans on
-
[2023]
URL https://www.opencompute.org/documents/ocp-microscaling-formats-m x-v1-0-spec-final-pdf. 3 NVIDIA. Nvidia blackwell architecture technical brief. Technical report, NVIDIA, 2024. URLhttps://resources.nvidia.com/en-us-blackwell-architecture. 3 Guilherme Penedo, Hynek Kydlíček, Loubna Ben allal, Anton Lozhkov, Margaret Mitchell, Colin Raffel, Leandro Von ...
arXiv 2024
-
[2024]
1, 3 Zechun Liu, Changsheng Zhao, Igor Fedorov, Bilge Soran, Dhruv Choudhary, Raghuraman Krishnamoorthi, Vikas Chandra, Yuandong Tian, and Tijmen Blankevoort
URL https://proceedings.mlsys.org/paper_files/paper/2024/file/42a452 cbafa9dd64e9ba4aa95cc1ef21-Paper-Conference.pdf. 1, 3 Zechun Liu, Changsheng Zhao, Igor Fedorov, Bilge Soran, Dhruv Choudhary, Raghuraman Krishnamoorthi, Vikas Chandra, Yuandong Tian, and Tijmen Blankevoort. Spinquant: LLM quantization with learned rotations. InThe Thirteenth Internation...
2024
This paper was first reviewed by deepseek-v4-flash on August 3, 2026.
discussion (0)
Sign in with ORCID, Apple, or X to comment. Anyone can read and Pith papers without signing in.