Paper
- Paper: BWLA: Breaking the Barrier of W1AX Post-Training Quantization for LLMs
- Authors: Zhixiong Zhao, Zukang Xu, Dawei Yang
- arXiv: 2605.00422 | 2026-04-29
- LLaMA-3 8B in FP16: ~16GB
- Typical phone memory: 8GB — it simply doesn't fit
- INT4 weights shrink a model to ~4GB
- But activations remain 16-bit
- Activation caching during inference stays large
- No true end-to-end speedup
- Each weight is just +1 or -1
- 32x storage compression
- Computation reduces to additions, no multiplications
- Activations have heavy-tailed distributions
- Extreme outliers destroy quantization precision
- Existing methods fail to handle them
- Weights are fixed after training, with relatively even distributions — easy to find good quantization ranges.
- Activations change dynamically with input and contain extreme outliers, causing large accuracy loss after quantization.
- Weight storage: 32x compression
- Activation storage: 2x compression
- Compute: substantially reduced
- Accuracy: close to the original model
- Inference: activations and KV cache still consume large memory; long contexts become difficult.
- Compute: weight reads shrink, but activation computation remains full precision.
- Full compression: weights + activations + KV cache, all low-bit
- Hardware-friendly: 1-bit weights need only adders; 8-bit activations use standard INT8 operations supported by existing AI chips
- Flexible deployment: edge devices, mobile, low-power scenarios
The Problem: Models Too Large to Run Locally
Running an LLM locally on a phone illustrates the pain point:
Existing quantization mostly targets weights only:
The real bottleneck is activations.
Why W1AX Quantization Is Hard
W1 (1-bit weights):
AX (low-bit activations):
Why are activations harder than weights?
BWLA: Key Contributions
BWLA (Binarized Weights and Low-bit Activations) is presented as the first W1A8 (1-bit weights + 8-bit activations) post-training quantization method, enabling true end-to-end low-bit inference.
Technical approach:
1. Weight binarization (W1) — map weights to +1/-1 via PTQ, no retraining needed. 2. 8-bit activations (A8) — the key breakthrough: identify and isolate activation outliers, quantize the normal range to 8 bits, and handle outliers with higher precision or special treatment. 3. End-to-end optimization — quantize not only weights but also intermediate activations, reducing memory footprint and bandwidth. 4. Accuracy preservation — careful quantization strategy keeps accuracy loss minimal, validated across multiple tasks.
Reported results:
Why End-to-End Quantization Matters
Weight-only quantization leaves bottlenecks:
BWLA's advantages:
Takeaways
Questions worth asking when optimizing model deployment:
1. Does your quantization focus only on weights and ignore activations? 2. Are activation outliers the bottleneck in your quantization pipeline? 3. Is end-to-end low-bit inference necessary for your use case? 4. How do you preserve accuracy under extreme compression?
BWLA is a reminder that effective model compression means doing the best under extreme constraints. With 1-bit weights and 8-bit activations, LLMs can move from data-center giants to pocket-sized assistants — an important step toward making AI broadly accessible.
In the world of bits, sometimes 1 bit is enough.
*Note: This is an English translation of a Chinese forum post; details reflect the original post's claims about the paper.*