CMuon: New Method Speeds Up Diffusion Transformer Training, Accepted at ECCV 2026

training loop

Training Diffusion Transformers Faster and More Reliably

Training the large generative models behind today's AI image and video tools is notoriously expensive and unstable. A new paper accepted at the 2026 European Conference on Computer Vision (ECCV) presents CMuon, a method that directly tackles these issues for diffusion transformers (DiTs)—the backbone of systems like Stable Diffusion 3, Sora, and Flux. The work, titled CMuon: Accelerating and Stabilizing Diffusion Transformer Training via Chunked Momentum Orthogonalization, introduces a training technique that improves convergence speed and numerical stability without requiring architectural changes.

DiTs replaced the U-Net in diffusion models two years ago and have since become the default for state-of-the-art generation. However, scaling them to larger models and higher resolutions often leads to training divergence or extremely long wall-clock times. According to the paper, the proposed CMuon approach addresses both pain points through a principled modification of momentum-based optimization.

Why Diffusion Transformer Training Is So Challenging

Diffusion transformers process entire images by splitting them into patches (like Vision Transformers) and iteratively denoising a latent representation over many steps. While the inference process can be optimized via distillation or step skipping, training from scratch requires backpropagating through hundreds of denoising steps, making it compute-intensive and tricky to tune.

Existing optimizers such as AdamW are widely used but can suffer from slow convergence and sensitivity to learning-rate schedules when applied to DiTs. Moreover, the transformer architecture’s self-attention layers can amplify gradient inconsistencies, causing loss spikes. Researchers have experimented with decoupled weight decay, layer-wise adaptive learning rates, and momentum reparameterization, but none has offered a drop-in solution that works across model sizes and batch configurations.

training loop

The key difficulty lies in maintaining orthogonality of the momentum buffer without resorting to expensive full-matrix operations. CMuon tackles this directly by applying orthogonalization to smaller, chunked slices of the momentum tensor, preserving the optimizer’s ability to escape saddle points while drastically lowering computational overhead.

Inside CMuon: Chunked Momentum Orthogonalization

The paper’s central contribution is a chunked scheme that applies orthogonalization to the momentum term only within local parameter groups. Rather than performing a global orthogonalization—which would scale quadratically with the number of parameters—CMuon splits the parameter space into manageable blocks and applies a lightweight orthogonalization routine to each chunk asynchronously.

The method is similar in spirit to the Muon optimizer recently popularized for vision models, but it differs by introducing chunking and a dynamic momentum coefficient tied to the layer’s input dimensionality. The authors report that this chunking not only reduces memory access patterns but also naturally stabilizes training by preventing momentum blow-up in wide layers. They validate the approach on ImageNet‑class DiTs and on larger text‑to‑image models, demonstrating consistent reductions in the number of steps needed to reach a target FID score.

One particular finding highlighted in the paper is that CMuon becomes more beneficial as model size increases. For a 3‑billion‑parameter DiT trained on 256×256 images, they show that CMuon reaches the same generation quality as AdamW in roughly 30% fewer training updates, while also eliminating the need for aggressive gradient clipping. The chunk size can be tuned to balance GPU utilization and convergence speed; the authors recommend chunk sizes corresponding to individual transformer heads as a practical default.

What This Means for AI Builders

training loop

For teams developing custom diffusion models—whether for medical imaging, design tools, or video generation—shorter training cycles translate directly into lower compute costs and faster experimentation. Since CMuon is an optimizer-level change, it can be plugged into existing PyTorch training loops with minimal code modification. The paper includes reference implementations and logs of training runs, showing reproducibility across different hardware setups.

Notably, the technique does not require any changes to the model architecture or inference pipeline. This contrasts with more disruptive acceleration methods such as distillation, which can alter the generative distribution. CMuon’s training-time improvement thus leaves the final model’s output quality unchanged, making it a safe drop-in upgrade.

Open-source repositories like Hugging Face Diffusers and community forks could integrate CMuon into their trainer recipes within weeks of the official code release. The acceptance at ECCV 2026 also means the technique has been peer‑reviewed, giving it a level of credibility that can encourage adoption in production pipelines.

Looking Ahead

The CMuon paper signals a growing focus on co‑designing optimizers specifically for the training dynamics of generative transformers. The chunked orthogonalization idea may extend to other architectures, such as flow‑matching models or autoregressive image generators. The authors have made their code publicly available, and they hint in the paper that future work will explore adaptive chunk sizes that evolve during training.

As the AI tools ecosystem shifts toward increasingly large foundation models, even incremental training improvements carry multimillion‑dollar implications. With CMuon, the community gains a verified, scalable method to bring diffusion transformer training times down without compromising stability. The technique’s appearance at a top‑tier vision conference ensures it will be watched closely by both researchers and engineers building the next wave of generative AI applications.

Source: arXiv AI
345tool Editorial Team
345tool Editorial Team

We are a team of AI technology enthusiasts and researchers dedicated to discovering, testing, and reviewing the latest AI tools to help users find the right solutions for their needs.

我们是一支由 AI 技术爱好者和研究人员组成的团队,致力于发现、测试和评测最新的 AI 工具,帮助用户找到最适合自己的解决方案。

댓글

Loading comments...