TurboBoA: Faster and Exact Attention-aware Quantization without Backpropagation
Junhan Kim, Yeo Jeong Park, Seungwoo Son, Chungman Lee, Ho-young Kim, Joonyoung Kim, Yongkweon Jeon
TL;DR
TurboBoA addresses the efficiency-accuracy trade-off in post-training quantization for large language models by extending BoA with three innovations: simultaneous out-channel quantization with a closed-form error-compensation rule, residual error correction for inputs distorted by earlier quantizations, and adaptive grid selection with coordinate-descent refinement. The approach remains backpropagation-free, preserving the computational advantages of GPTQ while capturing inter-channel dependencies within attention modules. Empirical results show more than a threefold speedup over BoA and consistent accuracy gains across weight-only and weight-activation quantization, with state-of-the-art performance when combined with outlier suppression methods. This work enables faster, more accurate quantization of billion-scale models, facilitating practical deployment on constrained hardware without gradient-based fine-tuning.
Abstract
The rapid growth of large language models (LLMs) has heightened the importance of post-training quantization (PTQ) for reducing memory and computation costs. Among PTQ methods, GPTQ has gained significant attention for its efficiency, enabling billion-scale LLMs to be quantized within a few GPU hours. However, GPTQ's assumption of layer-wise independence leads to severe accuracy drops in low-bit regimes. Recently, BoA improved upon GPTQ by incorporating inter-layer dependencies within attention modules, but its reliance on sequential quantization across all out-channels makes it substantially less efficient. In this paper, we propose TurboBoA, a new backpropagation-free PTQ algorithm that preserves the accuracy benefits of BoA while significantly accelerating the process. The proposed TurboBoA introduces three key innovations: (i) joint quantization of multiple out-channels with a closed-form error compensation rule, which reduces sequential bottlenecks and yields more than a three-fold speedup; (ii) a correction mechanism for errors propagated from preceding quantized layers; and (iii) adaptive grid computation with coordinate descent refinement to maintain alignment during iterative updates. Extensive experiments demonstrate that TurboBoA delivers substantial acceleration over BoA while consistently improving accuracy. When combined with outlier suppression techniques, it achieves state-of-the-art results in both weight-only and weight-activation quantization. The code will be available at https://github.com/SamsungLabs/TurboBoA.
