LGAINov 8, 2025

MOSS: Efficient and Accurate FP8 LLM Training with Microscaling and Automatic Scaling

arXiv:2511.05811v11 citationsh-index: 6
Originality Incremental advance
AI Analysis

This work addresses the problem of efficient and stable training for large language models, offering a domain-specific improvement that is incremental but with strong gains.

The paper tackles the challenge of stable and accurate training of large language models using FP8 formats, which offer efficiency gains but pose numerical precision issues, by proposing MOSS, a novel FP8 training framework that achieves performance comparable to BF16 baselines with up to 34% higher training throughput for a 7B parameter model.

Training large language models with FP8 formats offers significant efficiency gains. However, the reduced numerical precision of FP8 poses challenges for stable and accurate training. Current frameworks preserve training performance using mixed-granularity quantization, i.e., applying per-group quantization for activations and per-tensor/block quantization for weights. While effective, per-group quantization requires scaling along the inner dimension of matrix multiplication, introducing additional dequantization overhead. Moreover, these frameworks often rely on just-in-time scaling to dynamically adjust scaling factors based on the current data distribution. However, this online quantization is inefficient for FP8 training, as it involves multiple memory reads and writes that negate the performance benefits of FP8. To overcome these limitations, we propose MOSS, a novel FP8 training framework that ensures both efficiency and numerical stability. MOSS introduces two key innovations: (1) a two-level microscaling strategy for quantizing sensitive activations, which balances precision and dequantization cost by combining a high-precision global scale with compact, power-of-two local scales; and (2) automatic scaling for weights in linear layers, which eliminates the need for costly max-reduction operations by predicting and adjusting scaling factors during training. Leveraging these techniques, MOSS enables efficient FP8 training of a 7B parameter model, achieving performance comparable to the BF16 baseline while achieving up to 34% higher training throughput.

Foundations

The foundational work for this paper's niche, ranked by how specifically the neighbourhood builds on it — not by global fame.

Your Notes