New AMD Paper Overturns Conventional Wisdom: FP4 Training Instability's Cause Is Not Insufficient Randomness

marsbitОпубликовано 2026-05-27Обновлено 2026-05-27

Введение

AMD's new research challenges the conventional understanding of FP4 training instability. While reducing precision from FP8 to FP4 promises doubled computational throughput and is supported by new hardware like NVIDIA Blackwell and AMD MI350 series, training large language models natively with FP4 has been notoriously unstable, often attributed to insufficient stochasticity. The paper "Pretraining large language models with MXFP4 on Native FP4 Hardware" demonstrates successful end-to-end FP4 pre-training of Llama 3.1-8B on AMD MI355X GPUs using the MXFP4 format, achieving a 9-10% overall speedup over FP8. Crucially, it identifies the root cause of instability: not randomness, but the accumulation of *structural micro-scaling errors* along the sensitive weight gradient (Wgrad) path. Through controlled experiments, researchers found that quantizing the Wgrad operation to FP4 caused significant convergence degradation. Counterintuitively, common stochasticity-based mitigation techniques like stochastic rounding and randomized Hadamard transforms worsened performance. In contrast, applying a *deterministic* Hadamard transform successfully stabilized training by ensuring consistent error patterns, reducing the extra token cost from 26-27% to just 8-9%. This work has significant implications: 1) It provides a clear diagnostic for low-precision training instability, steering focus towards structural errors. 2) It pushes FP4 from a primarily inference-focused format into the realm...

As is well known, training large models is extremely costly.

However, it's also widely understood that reducing training precision can significantly lower training costs. DeepSeek-V3's use of FP8 training brought the cost down to $5.6 million, already capturing the attention of the entire industry.

Following the success of FP8, the industry continues to explore the boundaries of lower precision: from FP8 down to FP4, how much more can training costs be reduced?

Theoretically, FP4 computational throughput could be twice that of FP8. Both NVIDIA's Blackwell and AMD's MI350 series have already natively supported FP4 operations at the hardware level, with the former claiming FP4 performance up to 4500 TOPS (sparse) on the B200. The hardware is ready, but the software and algorithm side has been stuck on one problem:

Training large models from scratch with FP4 is highly unstable.

Over the past two years, works like LLM-FP4 and NVFP4 pre-training have attempted this path, but few solutions have cleanly and efficiently executed full pipeline pre-training at 4-bit precision while maintaining convergence quality close to FP8.

More troublesome is that the cause of the collapse has been unclear. Analysis suggested the instability in FP4 training was likely due to insufficient randomness.

But recently, AMD, in collaboration with Pennsylvania State University, published a paper that overturns this traditional understanding, offering a new and clear diagnosis for native FP4 training.

  • Paper Title: Pretraining large language models with MXFP4 on Native FP4 Hardware
  • Paper Link: https://arxiv.org/abs/2605.09825

This paper successfully completed the full-pipeline pre-training of Llama 3.1-8B using the MXFP4 format on AMD Instinct MI355X GPUs, achieving 9-10% faster end-to-end training speed compared to the FP8 baseline, with only an 8-9% additional token cost. This is the first complete experiment to finish large model pre-training on native FP4 hardware (not software simulation).

More importantly, the paper reveals the core issue: The source of FP4 training instability is not insufficient randomness, but the cumulative amplification of structural microscaling errors along sensitive gradient paths.

What is MXFP4

Before dissecting the paper, it's necessary to understand the MXFP4 data format.

Traditional integer quantization typically uses a single scaling factor for an entire tensor. The core design of MXFP4 is called "Micro-scaling": splitting a tensor into small blocks (e.g., groups of 32 elements), assigning a shared exponent (E8M0 format) to each block, where each element within the block is represented by a 4-bit floating-point number. The reconstruction formula can be written as:

Where E_shared is the maximum exponent within the block, and Q_FP4 is the value rounded to the nearest representable 4-bit floating-point value.

The benefit of micro-scaling is that each small block has its own dynamic range and won't be "held hostage" by global outliers. This significantly improves the representational quality of 4-bit floating-point numbers compared to naive global quantization.

However, even with micro-scaling, FP4 training remains unstable.

Troubleshooting Experiments: The Root of Instability

The research team first designed a step-by-step controlled troubleshooting experiment.

A complete Transformer linear layer computation involves three general matrix multiplication operations:

Fprop (Forward Propagation): Computes Y = XW^T, producing activation values.

Dgrad (Activation Gradient): Computes ∇X = ∇Y · W, propagating gradients back to the input.

Wgrad (Weight Gradient): Computes ∇W = (∇Y)^T · X, producing the gradient used to update the weights.

Keeping all other factors constant, the research team gradually replaced these three operations from FP8 to MXFP4, observing the impact of each step on convergence. All experiments were executed using native FP4 tensor cores on AMD Instinct MI355X, without relying on software simulation.

The training task followed the MLPerf standard setup, pre-training Llama 3.1-8B on the C4 dataset, with a convergence target of achieving a validation perplexity of 3.3.

The first two steps only incurred a modest additional token cost. However, once Wgrad was also switched to MXFP4, the cost directly jumped to 26-27%.

Wgrad is the bottleneck for FP4 training. Forward propagation and activation gradient have considerable tolerance for FP4 quantization, but once the weight gradient is quantized to 4 bits, convergence quality degrades significantly.

The industry's prevailing intuition was that FP4 quantization error is essentially a noise problem, which could be "smoothed" by injecting randomness. Two common strategies are:

Stochastic Rounding: Introduces randomness during quantization to make the expected value of rounding error zero.

Randomized Hadamard Rotation: Uses a Hadamard transform with random sign flips to scatter the data distribution before quantization.

When Wgrad is quantized, both randomness strategies not only failed to stabilize training but directly caused non-convergence. Randomness didn't help; instead, it introduced more effective quantization error on the critical gradient path.

In contrast, deterministic Hadamard rotation dramatically reduced the full-pipeline token cost from 26-27% back to 8-9%, with the training trajectory closely tracking the FP8 baseline.

This is a highly diagnostic result. Both random and deterministic Hadamard rotations are orthogonal transformations that can scatter outlier energy distribution; theoretically, their effects on mitigating quantization error should be similar. Yet, their performance in the Wgrad scenario is completely opposite, revealing the nature of the problem:

FP4 training instability is driven by structural errors generated by MXFP4 micro-scaling on sensitive gradient paths. Randomness strategies failed because they introduced varying error patterns at each step, and these changing patterns accumulated along the gradient path, amplifying instability. Deterministic rotation was effective precisely because it applied the same transformation at every step, keeping the error pattern consistent and preventing error accumulation.

End-to-End Efficiency: Training Step Throughput +20%, Comprehensive Speedup 9-10%

After applying deterministic Hadamard rotation to the full-pipeline MXFP4, the efficiency data is as follows:

Training step throughput increased by 20%. After accounting for the additional 8-9% token cost, the end-to-end comprehensive speedup remains 9-10%.

Considering this directly halves precision from 8 bits to 4 bits, this convergence quality and speedup magnitude are quite significant.

Left: Curve showing the validation perplexity of Llama 3.1–8B versus training token count during MLPerf pre-training on the C4 dataset. Results show MXFP4 + deterministic Hadamard performs very close to FP8, while unstabilized full-pipeline MXFP4 converges slower and is less stable. Right: Zoomed-in view of the later training stage. The MLPerf target perplexity is 3.3. Compared to the unstabilized MXFP4 run, deterministic Hadamard (H16) maintains much tighter alignment with the FP8 baseline.

Notably, the authors explicitly emphasize an important limitation in the paper: The effectiveness of this FP4 training scheme (MLPerf C4 dataset + Llama 3.1-8B) has been verified, but it cannot be assumed to seamlessly transfer to all models, all datasets, and all training methods. FP4 training behavior might be highly setting-dependent, and specific stabilization strategies need re-validation per scenario.

Conclusion

Placing this paper within the broader industry context reveals at least three layers of significance.

First layer: It answers a fundamental "why". Previous FP4 training work mostly focused on "how to make it not crash." This paper provides the first clear causal diagnosis: collapse stems from structural microscaling errors on the Wgrad path, not insufficient randomness. This diagnosis itself holds methodological value, telling subsequent researchers that when encountering instability in low-precision training, they should prioritize investigating structural error sources rather than blindly adding randomness.

Second layer: It pushes FP4 from "inference-only" towards "usable for training". Previously, the industry consensus was that FP4 was only suitable for inference quantization, with FP8 being the minimum for training. NVIDIA's emphasis on FP4 inference rather than training on Blackwell also reflects this judgment. This paper successfully ran full-pipeline pre-training on native FP4 hardware, meaning that the FP4 compute power prepared for inference on MI355X and Blackwell could theoretically also be used for training. If FP4 training proves viable on larger models and more scenarios, it effectively doubles the usable training compute of existing hardware.

Third layer: It utilizes the OCP open standard. MXFP4 is part of the OCP Microscaling format standard, jointly supported by seven companies: AMD, NVIDIA, Intel, Meta, Microsoft, Arm, and Qualcomm. Basing on an open standard means this method has portability across different vendors' hardware and won't be locked into a single ecosystem.

From FP16 to FP8, DeepSeek-V3 has already proven that halving precision can dramatically reduce training costs. From FP8 to FP4, this paper takes the critical first step. With each slash in precision, the entire economics of large model training are shifting.

This article is from the WeChat public account "Machine Heart" (ID: almosthuman2014), edited by Leng Mao.

Связанные с этим вопросы

QAccording to AMD's new research, what is the root cause of training instability when using FP4 precision for large language models, and why do common randomization strategies fail to address it?

AAccording to the AMD and Penn State University paper, the root cause of instability in native FP4 training is not insufficient randomness, but rather the amplification of structural microscaling error accumulation along the sensitive gradient path, specifically the weight gradient (Wgrad) path. Common randomization strategies like stochastic rounding and randomized Hadamard transforms fail because they introduce varying error patterns at each step. When these inconsistent patterns accumulate along the gradient path, they amplify instability instead of mitigating it. In contrast, a deterministic Hadamard transform is effective because it applies the same consistent transformation at every step, preventing the accumulation of divergent error patterns.

QWhat is MXFP4, and how does its 'micro-scaling' design differ from traditional quantization methods?

AMXFP4 is a 4-bit floating-point data format part of the OCP Microscaling (MSFP) standard. Its core design feature is 'micro-scaling', which differs from traditional tensor-level quantization that uses a single scaling factor for an entire tensor. In MXFP4, a tensor is divided into small blocks (e.g., groups of 32 elements). Each block is assigned a shared exponent (E8M0 format), and each element within the block is represented by a 4-bit mantissa. This approach allows each block to have its own dynamic range, preventing the representation quality of the entire block from being 'held hostage' by a few global outliers, thereby improving representation quality compared to naive global quantization.

QIn the diagnostic experiment, which specific operation (Fprop, Dgrad, or Wgrad) was identified as the bottleneck when quantized to MXFP4, and what was the observed impact on training efficiency?

AIn the step-by-step diagnostic experiment, quantizing the Weight Gradient (Wgrad) operation to MXFP4 was identified as the bottleneck. While replacing the Forward Propagation (Fprop) and Activation Gradient (Dgrad) operations with MXFP4 incurred only a modest additional token overhead, replacing Wgrad with MXFP4 caused the token overhead to jump significantly to 26-27%, indicating a substantial degradation in convergence quality and training stability.

QWhat were the key performance results of the end-to-end MXFP4 training with the deterministic Hadamard stabilization on the Llama 3.1-8B model?

AThe end-to-end MXFP4 training with deterministic Hadamard stabilization on the Llama 3.1-8B model achieved a 20% improvement in training step throughput. After accounting for the additional 8-9% token overhead required for convergence compared to the FP8 baseline, the net end-to-end training speedup was 9-10%. The validation perplexity curve closely tracked that of the FP8 baseline, successfully meeting the MLPerf target perplexity of 3.3 on the C4 dataset.

QWhat are the broader implications of this research for the AI hardware and training ecosystem, according to the article's conclusion?

AThe research has three key broader implications for the ecosystem. First, it provides a fundamental diagnostic methodology, shifting the focus from adding randomness to identifying and addressing structural error sources in low-precision training. Second, it potentially moves FP4 from a 'inference-only' to a 'training-viable' precision, effectively doubling the usable training compute on native FP4 hardware like AMD MI355X and NVIDIA Blackwell if validated at scale. Third, by building on the OCP Microscaling (MXFP) open standard supported by multiple major companies, the approach promotes hardware portability and avoids vendor lock-in, benefiting the wider industry.

Похожее

The Evolution Path of Physical Bitcoin

The Evolution of Physical Bitcoin Bitcoin's digital nature is its core strength, enabling self-custody and rapid global transfers. However, its intangibility also hinders mainstream adoption. For over a decade, creators have attempted to materialize Bitcoin while preserving its cash-like properties, yielding notable results. Casascius Coins, launched in 2011, were the first and most iconic physical Bitcoin. Creator Mike Caldwell generated private keys offline, printed them on coins, and sealed them with tamper-evident holograms. This model relied on user trust in the centralized issuer. Production ceased in 2013 due to regulatory pressure from FinCEN. RavenBit Coins emerged in 2014 aiming to decentralize minting by letting users generate and apply their own keys. However, this led to trust issues with numerous untrusted minters and insecure key generation methods. In 2016, Coinkite introduced Opendimes—a breakthrough in bearer asset technology. These USB-shaped devices generate and store keys internally. Funds can be received by checking the public key, but spending requires physically breaking the device to extract the private key. While innovative and open-source, its cost (~$20) and form factor limit its use for small, everyday transactions. Satochip's Satodime, a card-shaped device using similar secure chip technology, followed. It supports NFC interaction and comes in various forms. While potentially cheaper in bulk (~13€), it remains a high-security hardware wallet, not a low-cost cash substitute. A fundamental cost barrier exists. For physical Bitcoin to achieve widespread commercial use, hardware costs must drop below $1 to match the production cost of fiat banknotes. Current secure chips capable of running Bitcoin's cryptographic algorithms (like secp256k1) are too expensive. Chips like NXP's NTAG X DNA (~$3) show cost-reduction potential but lack native Bitcoin curve support. Projects like OfflineCash embed chips in banknote-like paper, but face challenges with durability, the need for custom Bitcoin-enabled chips, and the inherent requirement for users to verify balances online—which conflicts with Bitcoin's trustless ideal. Coinkite's Tapsigner, a ~$20 card with a proprietary Bitcoin NFC chip, is seen as a more practical step forward. It functions as a reloadable hardware wallet for contactless payments, solving the "change" problem and focusing on real-world retail integration, a direction also pursued by companies like Cash App and Square. In summary, the journey to physical Bitcoin has progressed from trusted centralized mints (Casascius) to user-generated keys (RavenBit) and finally to self-contained secure hardware (Opendimes, Satodime, Tapsigner). The core challenge remains developing a sufficiently low-cost, durable, and truly trustless physical bearer asset that can function like cash in daily transactions. Current solutions are either too expensive or introduce new trust assumptions, keeping the ideal of ubiquitous physical Bitcoin just out of reach for now.

marsbit11 мин. назад

The Evolution Path of Physical Bitcoin

marsbit11 мин. назад

Samsung Relies on Technology Cycles, SK Hynix on HBM, How Did Micron Win a Trillion-Dollar Market Cap?

Micron Technology, the third-largest memory chip maker alongside Samsung and SK Hynix, recently saw its market cap surpass $1 trillion. Founded in 1978 in Boise, Idaho, Micron survived brutal industry cycles while American peers and Japan's memory sector faltered. Its survival is attributed to a dual strategy: leveraging political and legal avenues for critical breathing room, coupled with relentless manufacturing cost control. Historically, Micron sought U.S. government intervention three times. In 1985, it filed an anti-dumping complaint against Japanese firms, leading to the U.S.-Japan Semiconductor Agreement. Ironically, this created an opening for Samsung, which later became its toughest competitor. In 2002, Micron turned "whistleblower" in a DRAM price-fixing investigation, escaping penalties while rivals were fined. In 2017, it sued China's Fujian Jinhua, contributing to its placement on a U.S. entity list, stifling a nascent competitor. However, a major strategic misstep occurred in 2013 with the acquisition of bankrupt Japanese firm Elpida. Integrating Elpida's mobile-DRAM-focused technology diverted resources, causing Micron to miss the critical early decade of development for High Bandwidth Memory (HBM)—the high-performance memory essential for AI chips like NVIDIA GPUs. By the time AI demand exploded in 2022, SK Hynix, which launched the first HBM in 2013, held about 85% of the HBM3 market, leaving Micron with roughly 3%. Micron now faces a triple squeeze. In the high-end HBM market, it lags significantly behind SK Hynix and Samsung. In the mid-to-low end DRAM market, it faces aggressive price competition from China's CXMT. Furthermore, a 2023 Chinese cybersecurity ban on its products slashed its revenue from China, a once-core market, from over 10% to just 7.1% by FY2025, causing it to exit China's data center server business. Beneath its political maneuvering lies Micron's core strength: exceptional manufacturing efficiency and cost control. Decades of engineering have yielded DRAM chips with a smaller cell area than rivals, meaning more chips per wafer and lower unit costs. This efficiency, not subsidies, has allowed it to withstand price wars. While political leverage bought time, Micron is now paying a "time debt" in the HBM race. It is racing to ramp up HBM3E production and develop HBM4, but catching up to competitors who started a decade earlier is a monumental challenge. Its future hinges on whether its expertise in cost control and political strategy can compensate for the lost time in a technology race where early-mover advantage is decisive.

链捕手45 мин. назад

Samsung Relies on Technology Cycles, SK Hynix on HBM, How Did Micron Win a Trillion-Dollar Market Cap?

链捕手45 мин. назад

Will ONDO's 'Tokenization Narrative' Change After Its CEO's Unexpected Passing?

Ondo Finance founder and CEO Nathan Allman has passed away unexpectedly. Allman, a Brown University graduate with a background in private credit and Goldman Sachs' digital asset team, was a key architect of Ondo's pivot from DeFi structured yield products to becoming a leading Real-World Asset (RWA) protocol. He drove the strategy to tokenize traditional financial assets like US Treasuries (OUSG), yield-generating dollar assets (USDY), and US stocks/ETFs (Ondo Global Markets) for on-chain accessibility. The company announced that President Ian De Bode, a former McKinsey partner with a strong institutional strategy and operations background, will succeed Allman as CEO. While Allman's sudden departure presents a near-term challenge, testing market confidence and Ondo's continuity, the project is seen as more than a founder-driven narrative. It has an established product suite and a management team with deep traditional finance experience. The long-term impact hinges on the new leadership's ability to execute. De Bode's expertise in compliance, distribution, and institutional partnerships aligns with RWA's next phase of scaling infrastructure. The core question is whether Ondo can maintain its product momentum and institutional relationships. Ondo's native ONDO token represents governance and RWA narrative value, not direct revenue from the underlying assets. Its future as a "top tokenization play" will depend on the team's continued delivery of product growth, asset scale, and real-world demand, moving beyond the initial emotional shock.

marsbit1 ч. назад

Will ONDO's 'Tokenization Narrative' Change After Its CEO's Unexpected Passing?

marsbit1 ч. назад

Торговля

Спот
Фьючерсы

Популярные статьи

Как купить S

Добро пожаловать на HTX.com! Мы сделали приобретение Sonic (S) простым и удобным. Следуйте нашему пошаговому руководству и отправляйтесь в свое крипто-путешествие.Шаг 1: Создайте аккаунт на HTXИспользуйте свой адрес электронной почты или номер телефона, чтобы зарегистрироваться и бесплатно создать аккаунт на HTX. Пройдите удобную регистрацию и откройте для себя весь функционал.Создать аккаунтШаг 2: Перейдите в Купить криптовалюту и выберите свой способ оплатыКредитная/Дебетовая Карта: Используйте свою карту Visa или Mastercard для мгновенной покупки Sonic (S).Баланс: Используйте средства с баланса вашего аккаунта HTX для простой торговли.Третьи Лица: Мы добавили популярные способы оплаты, такие как Google Pay и Apple Pay, для повышения удобства.P2P: Торгуйте напрямую с другими пользователями на HTX.Внебиржевая Торговля (OTC): Мы предлагаем индивидуальные услуги и конкурентоспособные обменные курсы для трейдеров.Шаг 3: Хранение Sonic (S)После приобретения вами Sonic (S) храните их в своем аккаунте на HTX. В качестве альтернативы вы можете отправить их куда-либо с помощью перевода в блокчейне или использовать для торговли с другими криптовалютами.Шаг 4: Торговля Sonic (S)С легкостью торгуйте Sonic (S) на спотовом рынке HTX. Просто зайдите в свой аккаунт, выберите торговую пару, совершайте сделки и следите за ними в режиме реального времени. Мы предлагаем удобный интерфейс как для начинающих, так и для опытных трейдеров.

1.4k просмотров всегоОпубликовано 2025.01.15Обновлено 2025.03.21

Как купить S

Sonic: Обновления под руководством Андре Кронье – новая звезда Layer-1 на фоне спада рынка

Он решает проблемы масштабируемости, совместимости между блокчейнами и стимулов для разработчиков с помощью технологических инноваций.

2.3k просмотров всегоОпубликовано 2025.04.09Обновлено 2025.04.09

Sonic: Обновления под руководством Андре Кронье – новая звезда Layer-1 на фоне спада рынка

HTX Learn: Пройдите обучение по "Sonic" и разделите 1000 USDT

HTX Learn — ваш проводник в мир перспективных проектов, и мы запускаем специальное мероприятие "Учитесь и Зарабатывайте", посвящённое этим проектам. Наше новое направление .

1.8k просмотров всегоОпубликовано 2025.04.10Обновлено 2025.04.10

HTX Learn: Пройдите обучение по "Sonic" и разделите 1000 USDT

Обсуждения

Добро пожаловать в Сообщество HTX. Здесь вы сможете быть в курсе последних новостей о развитии платформы и получить доступ к профессиональной аналитической информации о рынке. Мнения пользователей о цене на S (S) представлены ниже.

活动图片