License: arXiv.org perpetual non-exclusive license
arXiv:2604.02638v1 [cs.LG] 03 Apr 2026

AXELRAM: Quantize Once, Never Dequantize

Yasushi Nishida
Abstract

We propose AXELRAM, a smart SRAM macro architecture that computes attention scores directly from quantized KV cache indices without dequantization. The key enabler is a design-time fixed codebook: orthogonal-transform-based quantization concentrates each coordinate’s distribution to 𝒩(0,1/d)\mathcal{N}(0,1/d), so the optimal quantizer depends only on dimension dd and bit-width bb, not on input data. The asymmetric path design—transform on write, table-lookup on read with no inverse transform—reduces per-query multiplications by 102.4×102.4\times (a mathematical identity).

Through multi-seed evaluation (10 seeds ×\times 3 models), we discover that sign pattern sensitivity causes catastrophic PPL spikes (Δ>50\Delta>50) on certain models (Qwen2.5-3B), while others (LLaMA-3.1-8B) are fully stable. This phenomenon extends SpinQuant’s observation of rotation variance in weight quantization to the KV cache domain, where the effect is qualitatively more severe. We trace the root cause to layer-wise norm heterogeneity and propose a gradient-free sign pattern selection (200 candidates, 8 calibration samples, one-time) that eliminates catastrophic spikes with zero additional hardware cost. All source code is available at https://github.com/Axelidea/AXELRAM.

I Introduction

Large language model (LLM) inference is bottlenecked by key-value (KV) cache memory: an 8B-parameter model at context length T=4096T{=}4096 stores 512 MB in FP16. KV cache quantization to 2–4 bits reduces storage, but the quantized keys must be dequantized before computing attention scores—TT times per query.

We ask: can the SRAM that stores the quantized cache also compute attention scores, eliminating dequantization entirely?

AXELRAM answers this by integrating orthogonal-transform-based quantization with table-lookup attention in a single SRAM macro (Fig. 1). The design-time fixed codebook (30 bytes for b=3b{=}3) is shared across all dd dimensions and stored in ROM.

Contributions.

  1. 1.

    We propose AXELRAM, a smart SRAM macro with an asymmetric write/read path that reduces multiplications by 102.4×102.4\times (Section III).

  2. 2.

    We discover sign pattern sensitivity in rotation-based KV cache quantization through 10-seed evaluation across 3 models, finding catastrophic spikes (Δ>50\Delta>50) unreported in prior work (Section IV).

  3. 3.

    We propose a gradient-free sign pattern selection that eliminates spikes with zero additional hardware cost (Section V).

Refer to caption
Figure 1: Quantize Once, Never Dequantize. Conventional rotation-based quantization (top) must dequantize and inverse-rotate each stored key before computing attention—T×O(dlogd)T\times O(d\log d) per query. AXELRAM (bottom) computes attention entirely within the rotated transform domain: the query is rotated once, and scores are computed via pre-computed codebook products with no dequantization. The orthogonal invariance 𝐪,𝐤=R𝐪,R𝐤\langle\mathbf{q},\mathbf{k}\rangle=\langle R\mathbf{q},R\mathbf{k}\rangle makes this possible, yielding 102.4×102.4\times fewer multiplications.

II Principle: Why the Codebook Is Fixed

For unit-norm 𝐱^d\hat{\mathbf{x}}\in\mathbb{R}^{d} and orthogonal RR, each coordinate of 𝐲=R𝐱^\mathbf{y}=R\hat{\mathbf{x}} follows approximately 𝒩(0,1/d)\mathcal{N}(0,1/d) for d64d\geq 64 (concentration of measure [1]). The Lloyd-Max quantizer for this distribution yields centroids and boundaries as functions of (d,b)(d,b) alone—a design-time fixed codebook. For b=3b{=}3, d=128d{=}128: 8 centroids + 7 boundaries = 15 FP16 values = 30 bytes, verified to satisfy the Lloyd-Max optimality conditions to machine precision (<1011<10^{-11}).

The inner product is preserved under orthogonal transforms: 𝐪𝐤=(R𝐪)(R𝐤)\mathbf{q}^{\top}\mathbf{k}=(R\mathbf{q})^{\top}(R\mathbf{k}). Instead of inverse-transforming each stored key (TT times), we transform the query once and compute in the rotated transform domain:

𝐪,𝐤^=R𝐪,codebook[idx]×𝐤\langle\mathbf{q},\hat{\mathbf{k}}\rangle=\langle R\mathbf{q},\;\mathrm{codebook}[\mathrm{idx}]\rangle\times\|\mathbf{k}\| (1)

This is the asymmetric path that enables table-lookup attention.

Contrast with TurboQuant. TurboQuant [1] computes 𝐪,R1codebook[idx]𝐤\langle\mathbf{q},\;R^{-1}\cdot\mathrm{codebook}[\mathrm{idx}]\cdot\|\mathbf{k}\|\rangle, applying inverse rotation to each key. Equation (1) moves the rotation from keys (TT times) to the query (once), enabling the pre-computation table. This rearrangement is not disclosed or suggested in [1].

III Architecture: AXELRAM Smart SRAM Macro

Refer to caption
Figure 2: AXELRAM smart SRAM macro. Write path (left): norm extraction, FWHT butterfly network (448 add/sub, zero multipliers), Lloyd-Max comparator quantization (896 comparators), writing 3-bit indices + FP16 norm to SRAM. Read path (right): pre-computed table lookup (128 parallel reads), adder tree (127 adders), norm scaling (1 multiplication). Pre-computation (top center, once per query): table generation with 1024 multiplications. The fixed codebook ROM (30 bytes) is shared by both paths across all d=128d{=}128 dimensions.

III-A Write Path (Zero Multipliers)

The write path (Fig. 2, left) applies a randomized Hadamard transform R=Hddiag(𝐬)R=H_{d}\cdot\mathrm{diag}(\mathbf{s}) via a butterfly adder network (FWHT, log2d\log_{2}d stages, d/2d/2 add/sub per stage, zero multipliers), followed by comparator-based quantization against fixed codebook boundaries stored in ROM. The sign vector 𝐬{1,+1}d\mathbf{s}\in\{-1,+1\}^{d} is stored in ROM/eFuse (16 bytes for d=128d{=}128).

III-B Read Path (Table Lookup + Accumulate)

The read path (Fig. 2, right; detailed in Fig. 3) operates in two phases. Upon query arrival:

  1. 1.

    Transform query: 𝐪rot=R𝐪\mathbf{q}_{\mathrm{rot}}=R\mathbf{q} (one FWHT, same circuit as write path).

  2. 2.

    Pre-compute table: P[i][j]=qrot,i×cjP[i][j]=q_{\mathrm{rot},i}\times c_{j} for i=0,,d1i{=}0,\ldots,d{-}1, j=0,,2b1j{=}0,\ldots,2^{b}{-}1 (d×2bd\times 2^{b} multiplications, once per query).

  3. 3.

    Per-key: read dd indices from SRAM, look up P[i][idxi]P[i][\mathrm{idx}_{i}], accumulate via adder tree (d1d{-}1 additions), multiply by norm (1 multiplication).

The read path contains no inverse transform circuit. The inner product is computed entirely from the transformed query coordinates, codebook centroids, and stored indices.

Refer to caption
Figure 3: Read path detail. Phase 1 (once per query): FWHT rotation of query, table generation (d×2bd\times 2^{b} multiplications). Phase 2 (repeated TT times): table lookup, adder tree, norm scaling (1 multiplication per key). Total: 5,120 multiplications for T=4096T{=}4096 versus 524,288 conventional (102.4×102.4\times reduction).

III-C Multiplication Count

d2btable+T1norms=1024+4096=5,120\underbrace{d\cdot 2^{b}}_{\text{table}}+\underbrace{T\cdot 1}_{\text{norms}}=1024+4096=5{,}120 (2)

versus conventional Td=524,288T\cdot d=524{,}288: a 102.4×\mathbf{102.4\times} reduction. This is a mathematical identity derived from the inner-product preservation of orthogonal transforms, not an approximation.

III-D Memory

Fixed codebook ROM: 30 bytes (b=3b{=}3). Sign vector ROM: 16 bytes/layer. Pre-computation table SRAM: 2 KB. KV cache: 50 bytes/vector (vs. 256 bytes FP16), 5.1×5.1\times compression. For an 8B model with 32 layers and 8 KV heads at T=4096T{=}4096: approximately 100 MB (vs. 512 MB in FP16).

IV Sign Pattern Sensitivity

IV-A Background: SpinQuant

SpinQuant [2] demonstrated that random rotation matrices induce significant performance variance in weight-activation quantization (W4A4), with up to 6-point accuracy spread across 100 random Hadamard rotations on LLaMA-2-7B. They propose Cayley-parameterized gradient optimization to learn a fixed rotation. We investigate whether analogous sensitivity exists in KV cache quantization, which operates in a fundamentally different regime: online quantization of activation vectors rather than offline weight quantization.

IV-B Experimental Setup

We evaluate Hadamard rotation with random sign patterns 𝐬{1,+1}d\mathbf{s}\in\{-1,+1\}^{d} across 10 seeds ({1,2,,10}\{1,2,\ldots,10\}) on three models: LLaMA-3.1-8B-Instruct (d=128d{=}128, 32 layers), Qwen2.5-3B-Instruct (d=128d{=}128, 36 layers), and Qwen3-8B (d=128d{=}128, 36 layers). Perplexity is measured on WikiText-2 test set (stride 512, max length 2048). Models are loaded with 4-bit NF4 weight quantization; KV cache quantization is the variable under study. All source code and results are available at https://github.com/Axelidea/AXELRAM.

IV-C Results

TABLE I: Sign pattern sensitivity: PPL increase (Δ\Delta) over FP16 baseline. Mean ±\pm std over 10 seeds. Worst = maximum Δ\Delta observed.
Model 2-bit 3-bit 4-bit
LLaMA-3.1-8B (FP16: 6.98) mean±\pmstd +0.10±\pm0.01 +0.02±\pm0.00 +0.00±\pm0.00
worst +0.11 +0.02 +0.01
Qwen2.5-3B (FP16: 8.29) mean±\pmstd +8.13±\pm16.9 +9.64±\pm14.9 +1.10±\pm0.85
worst +58.4 +51.0 +2.98
Qwen3-8B (FP16: 9.07) mean±\pmstd +12.2±\pm2.51 +0.48±\pm0.29 +0.04±\pm0.01
worst +17.5 +1.09 +0.05

Table I reveals three findings:

Finding 1: Catastrophic spikes. On Qwen2.5-3B, certain sign patterns cause Δ>50\Delta>50—an order of magnitude worse than SpinQuant’s 6-point variance in W4A4. This catastrophic behavior is unreported in any prior KV cache quantization work, including TurboQuant [1], which reports single-seed results.

Finding 2: Model dependency. LLaMA-3.1-8B is fully stable (std <0.01<0.01 at all bit-widths), while Qwen2.5-3B exhibits catastrophic variance (std >14>14). The difference correlates with layer-wise norm heterogeneity: Qwen2.5-3B layer 0 has a mean key norm of 172, versus 22 at other layers (7.8×7.8\times ratio); LLaMA-3.1-8B shows a ratio of approximately 1.5×1.5\times. A sign pattern that concentrates high-norm channels’ energy into few post-rotation coordinates violates the 𝒩(0,1/d)\mathcal{N}(0,1/d) assumption, causing the fixed codebook to fail catastrophically.

Finding 3: Bit-width interaction. The bit-width at which the spike occurs varies by seed. On Qwen2.5-3B, seed 1 spikes at 2-bit, seed 3 at 3-bit, and seed 5 at 4-bit. This rules out a simple “low-bit-width problem” explanation and suggests a complex interaction between the sign pattern and the model’s layer-specific weight structure.

IV-D Why QJL Hurts at Low Bit-Widths

TurboQuant [1] employs QJL [7] (Quantized Johnson-Lindenstrauss) 1-bit residual correction for unbiased inner-product estimation, “stealing” 1 bit from the MSE codebook. Our multi-seed data reveals that QJL is harmful at b3b\leq 3: the bit-stealing penalty (reducing MSE resolution from bb to b1b{-}1 bits) outweighs the bias correction.

Theoretical explanation. The QJL estimator is unbiased for the inner product 𝐪,𝐤\langle\mathbf{q},\mathbf{k}\rangle, but attention requires softmax()\mathrm{softmax}(\cdot), which applies exp()\exp(\cdot). By Jensen’s inequality, for convex exp\exp:

𝔼[exp(X)]exp(𝔼[X])\mathbb{E}[\exp(X)]\geq\exp(\mathbb{E}[X]) (3)

Thus, an unbiased inner-product estimate yields a biased (systematically overestimated) attention weight after exponentiation. Moreover, the increased variance from 1-bit QJL quantization amplifies this bias through the convexity of exp\exp. At b3b\leq 3, the variance increase from losing 1 MSE bit dominates the bias-correction benefit, resulting in net quality degradation. This bias–variance tradeoff is unfavorable precisely in the low-bit regime where AXELRAM operates.

IV-E Comparison with SpinQuant

Table II summarizes the differences from SpinQuant [2]. The key distinction is severity: SpinQuant reports up to 6-point accuracy variance in W4A4 weight quantization, whereas we observe >>50-point PPL spikes in KV cache quantization—a qualitatively different failure mode. Furthermore, our analysis identifies layer-wise norm heterogeneity as the structural root cause, and our gradient-free mitigation incurs zero additional hardware cost (Section V-C).

TABLE II: Comparison with SpinQuant’s rotation sensitivity findings.
SpinQuant [2] This work
Domain Weight+Act. (W4A4) KV cache
Max variance 6 pts (accuracy) >>50 pts (PPL Δ\Delta)
Catastrophic failure Not reported Δ>50\Delta>50
Model dependency Not analyzed Norm heterogeneity
Mitigation Cayley (gradient) Selection (grad-free)
HW cost N/A (software) Zero

V Sign Pattern Optimization

V-A Method

We propose a gradient-free sign pattern selection that eliminates catastrophic spikes. For each layer, we evaluate C=200C{=}200 random sign candidates on a small calibration set and select the one minimizing quantization MSE:

Algorithm 1: Sign Pattern Selection (per layer)
Input: Keys 𝐊N×d\mathbf{K}{\in}\mathbb{R}^{N\times d}, candidates CC, bit-width bb
Output: Optimized 𝐬{1,+1}d\mathbf{s}^{*}\in\{-1,{+}1\}^{d}
1. Normalize: 𝐊^𝐊/𝐊row\hat{\mathbf{K}}\leftarrow\mathbf{K}/\|\mathbf{K}\|_{\text{row}} 2. for c=1,,Cc=1,\ldots,C do
 (a) 𝐬cRandomSigns(d,seed=c)\mathbf{s}_{c}\leftarrow\text{RandomSigns}(d,\text{seed}{=}c)
 (b) 𝐘FWHT(𝐊^diag(𝐬c))/d\mathbf{Y}\leftarrow\text{FWHT}(\hat{\mathbf{K}}\cdot\mathrm{diag}(\mathbf{s}_{c}))/\!\sqrt{d}
 (c) 𝐘^QDQ(𝐘,codebook(d,b))\hat{\mathbf{Y}}\leftarrow\text{QDQ}(\mathbf{Y},\text{codebook}(d,b))
 (d) MSEc𝐘𝐘^F2/Nd\mathrm{MSE}_{c}\leftarrow\|\mathbf{Y}{-}\hat{\mathbf{Y}}\|_{F}^{2}/Nd
3. Return 𝐬=argmincMSEc\mathbf{s}^{*}=\arg\min_{c}\mathrm{MSE}_{c}

Cost. 200 candidates, 8 calibration samples (WikiText-2 train), forward-only (no gradients). Per-layer: 1{\sim}1 second. Total: 36{\sim}36 seconds for 36 layers. Storage: dd bits per layer = 16 bytes/layer, 576 bytes for 36 layers. The fixed codebook (30 bytes) is unchanged.

V-B Results

TABLE III: Effect of sign pattern optimization. Default worst: maximum Δ\Delta across 10 random seeds. Optimized: deterministic result with selected signs. Reduction: spike elimination rate.
Model Bits Default worst Optimized Reduction
LLaMA-3.1-8B 2 +0.11 +0.10
3 +0.02 +0.02
4 +0.01 +0.00
Qwen2.5-3B 2 +58.43 +0.82 99%
3 +51.00 +0.58 99%
4 +2.98 +0.25 92%
Qwen3-8B 2 +17.45 +9.26 47%
3 +1.09 +0.35 68%
4 +0.05 +0.01 72%

On Qwen2.5-3B, worst-case Δ\Delta drops from +58.43 to +0.82 (2-bit) and from +51.00 to +0.58 (3-bit)—a 99% reduction of the catastrophic spike. LLaMA-3.1-8B, already stable, shows no meaningful change.

Limitation. Qwen3-8B at 2-bit remains at Δ=+9.26\Delta=+9.26 after optimization. This is a fundamental precision limit of 2-bit quantization for this model, not a sign pattern issue: even the best 10-seed default (+9.10+9.10) is comparable. The sign optimization cannot overcome insufficient quantization resolution.

V-C Hardware Implementation: Zero Additional Cost

The sign pattern optimization requires no changes to the AXELRAM hardware architecture. The sign vector 𝐬{1,+1}d\mathbf{s}\in\{-1,+1\}^{d} is already stored in ROM/eFuse as part of the randomized Hadamard transform (Section III). The only difference is the values written to this ROM:

Default Optimized
Sign ROM content Random seed-derived Calibration-selected
Sign ROM size dd bits/layer dd bits/layer
Transform circuit FWHT + sign flip FWHT + sign flip
Codebook ROM 30 bytes 30 bytes
Read path Table lookup + add Table lookup + add
Additional circuit None

For writable memory implementations (flash, EEPROM, SRAM with initialization load), the optimized sign vectors can be updated when the model changes. The calibration is a one-time offline process; no runtime overhead is incurred. Total additional storage: 576 bytes per model (36 layers ×\times 16 bytes), independent of context length TT.

VI Related Work

Rotation-based quantization. TurboQuant [1] established the rotation + Lloyd-Max framework for KV cache with near-optimal distortion rate. QuaRot [4] and QuIP# [5] apply Hadamard rotation for weight quantization. KVLinC [11] uses Hadamard with linear correction. PolarQuant [12] uses polar decomposition requiring per-block scale parameters. All report single-seed evaluations.

Rotation seed sensitivity. SpinQuant [2] (ICLR 2025) first demonstrated rotation seed sensitivity in W4A4 quantization, finding 6-point accuracy variance across 100 Hadamard rotations. They propose Cayley-parameterized gradient optimization requiring backpropagation through the full model. ParoQuant [3] samples 100 seeds but reports only averages without variance analysis. Our work extends this analysis to KV cache quantization, where catastrophic spikes (Δ>50\Delta>50) occur—qualitatively more severe than SpinQuant’s findings—and proposes a gradient-free mitigation with zero hardware cost.

ADC-based attention. LOOKAT [8] (January 2026) proposes ADC-based attention with K-Means codebooks. Product Quantization [13] established ADC for nearest-neighbor search. AXELRAM differs in: (1) fixed codebook (not learned), (2) shared across all dimensions (capacity independent of dd), and (3) targeting SRAM-integrated hardware.

CIM accelerators. MADDNESS [9] uses data-dependent LUT-based SRAM. Google’s PIM patent [10] proposes processing-in-memory for attention without rotation-based quantization. AXELRAM is distinguished by its data-independent ROM codebook and asymmetric path.

VII Discussion

Calibration-free vs. lightweight calibration. The basic AXELRAM configuration (random sign pattern) is calibration-free and works reliably on models with homogeneous layer norms (e.g., LLaMA-3.1-8B: norm ratio <2×<2\times). For models with heterogeneous norms (e.g., Qwen2.5-3B: norm ratio >5×>5\times), lightweight sign pattern calibration (8 samples, one-time, 36 seconds) is recommended. The fixed codebook itself remains calibration-free and model-independent in both cases.

The design philosophy of AXELRAM is captured by the title of this paper: each incoming key vector is quantized once through the write path and subsequently used for attention score computation entirely through table lookup and accumulation, with no reconstruction of the original vector at any point in the read path. This property is an invariant of the hardware architecture itself—the read path physically contains no inverse transform circuit—and holds regardless of how the rotation parameters were determined. When sign pattern calibration is employed for models with heterogeneous layer norms, the calibration selects which values are written to the sign vector ROM before the system begins processing tokens. Once deployment begins, the runtime behavior is identical to the uncalibrated case: every token’s key vector is quantized once, and every attention score is computed without dequantization. The calibration step thus fits naturally into the standard model deployment pipeline, alongside other one-time setup tasks such as weight loading and memory allocation.

Practical guideline. We recommend checking the layer-wise key norm ratio (max/min\max/\min across layers) as a predictor of sign pattern sensitivity:

  • Ratio <2×<2\times: calibration-free (default signs) is safe.

  • Ratio >5×>5\times: sign pattern optimization is recommended.

On the 2-bit limitation of Qwen3-8B. After sign pattern optimization, Qwen3-8B at 2-bit still exhibits Δ=+9.26\Delta=+9.26, while 3-bit (+0.35+0.35) and 4-bit (+0.01+0.01) are excellent. This is not a failure of the sign pattern selection: even the best of 10 random seeds yields Δ=+9.10\Delta=+9.10, comparable to the optimized result. The root cause is that 2-bit quantization provides only 4 representable levels, which is insufficient to capture the distribution tails of Qwen3-8B’s key vectors. We note that this limitation is not unique to AXELRAM—any 2-bit scalar quantization method would face the same precision floor on this model. In our experiments, 3-bit quantization (5.1×5.1\times compression) operated well on all three models tested, while 4-bit provided near-lossless quality on every model. The appropriate bit-width depends on the model architecture and the acceptable quality–compression tradeoff; we recommend per-model validation before deployment at any bit-width.

Hardware status. No hardware has been fabricated for AXELRAM. All results in this paper are derived from bit-accurate software simulation of the proposed architecture. The multiplication counts (e.g., 102.4×102.4\times reduction) are mathematical identities that hold exactly in any implementation. The PPL evaluations simulate the quantize–dequantize cycle in PyTorch and measure the impact on language modeling quality. The architecture is presented as a proposal; physical implementation and silicon validation remain as future work.

Reproducibility. All evaluation code, codebook solver, sign pattern optimizer, and result JSON files are released under MIT license at https://github.com/Axelidea/AXELRAM. The codebook solver is an independent implementation using quantile-based initialization and scipy.stats; no code is shared with or derived from any prior implementation.

VIII Conclusion

AXELRAM is a smart SRAM macro that eliminates dequantization from quantized-KV attention, achieving 102.4×102.4\times multiplication reduction via the asymmetric path design. Through 10-seed evaluation across 3 models, we discover sign pattern sensitivity—catastrophic PPL spikes (Δ>50\Delta>50) on models with heterogeneous layer norms—extending SpinQuant’s rotation variance finding to the KV cache domain. A gradient-free sign pattern selection eliminates these spikes with zero additional hardware cost (the optimized signs occupy the same ROM as the default signs). No hardware has been fabricated; we present the architecture as a proposal validated by bit-accurate simulation.

Acknowledgments

Part of the computational work was performed using the TSUBAME4.0 supercomputer at Institute of Science Tokyo.

Finally, we observe that Penguins—awkward in their waddle on land, yet remarkably graceful once they enter water—remind us that choosing the right domain makes all the difference. We thank the Penguins for the inspiration.

References

  • [1] A. Zandieh, M. Braverman, and A. Karbasi, “TurboQuant: Online Vector Quantization with Near-optimal Distortion Rate,” in Proc. ICLR, 2026.
  • [2] L. Liu, Z. Hu, Y. Zhu, and C. De Sa, “SpinQuant: LLM Quantization with Learned Rotations,” in Proc. ICLR, 2025.
  • [3] Y. Liang, H. Chen, Z. Zhang, S. Han, and Z. Liu, “ParoQuant: Pairwise Rotation Quantization,” in Proc. ICLR, 2026.
  • [4] S. Ashkboos et al., “QuaRot: Outlier-Free 4-Bit Inference in Rotated LLMs,” in Proc. NeurIPS, 2024.
  • [5] J. Chee et al., “QuIP#: Even Better LLM Quantization with Hadamard Incoherence and Lattice Codebooks,” in Proc. ICML, 2024.
  • [6] Z. Liu et al., “KIVI: A Tuning-Free Asymmetric 2bit Quantization for KV Cache,” in Proc. ICML, 2024.
  • [7] R. Mao et al., “QJL: 1-Bit Quantized JL Transform for KV Cache Quantization with Zero Overhead,” arXiv:2406.03482, 2024.
  • [8] A. Karmore, “LOOKAT: Lookup-Optimized Key-Attention for Memory-Efficient Transformers,” arXiv:2601.10155, 2026.
  • [9] D. Blalock and J. Guttag, “Multiplying Matrices Without Multiplying,” in Proc. ICML, 2021.
  • [10] W. Lu, Y. Wu, and Z. Wang, “Accelerator Architecture For A Transformer Machine Learning Model,” US Patent Application US20250028563A1, 2025.
  • [11] Y. Wang et al., “KVLinC: Hadamard Rotation with Linear Correction for KV Cache Quantization,” arXiv:2510.05373, 2025.
  • [12] Z. Chen et al., “PolarQuant: Polar-Coordinate KV Cache Quantization,” arXiv:2502.02617, 2025.
  • [13] H. Jégou, M. Douze, and C. Schmid, “Product Quantization for Nearest Neighbor Search,” IEEE TPAMI, 2011.
BETA