China’s LongCat-2.0 is a 1.6T Model Trained Without NVIDIA
Summary
Meituan, a Chinese food-delivery company, announced LongCat-2.0 on June 30, 2026, a 1.6-trillion-parameter language model trained entirely on approximately 50,000 domestic AI chips without NVIDIA GPUs. This achievement is attributed to the model's innovative Mixture-of-Experts (MoE) design, which activates only about 48 billion parameters, or 3%, per token. This sparse activation dramatically reduces the per-step computational workload and, more importantly, the network traffic. This optimization allows the model to be trained effectively on a cluster of second-tier accelerators, overcoming the typical interconnect bottlenecks that arise when using hardware less powerful than NVIDIA's Hopper architecture. The design incorporates specific tricks like zero-computation experts and a cross-layer shortcut.
Key takeaway
For AI Architects and ML Engineers facing hardware constraints or seeking alternatives to NVIDIA, LongCat-2.0 demonstrates a viable path. Your teams should investigate specialized Mixture-of-Experts designs, particularly those optimizing per-step network traffic, to make frontier-scale model training feasible on domestically sourced or less powerful accelerators. This approach can significantly reduce hardware requirements and training costs.
Key insights
A specialized Mixture-of-Experts design enables training frontier-scale models on less powerful hardware by minimizing per-step network traffic.
Principles
- Interconnect, not computation, often bottlenecks large model training.
- Sparse MoE designs can reduce per-step resource demands.
- Overlap FFN computation with network communication.
Method
LongCat-2.0 uses a Shortcut-connected MoE (ScMoE) to overlap FFN computation with network communication, and Multi-Teacher On-Policy Distillation (MOPD) for post-training.
In practice
- Train large models on non-NVIDIA accelerators.
- Implement sparse MoE architectures for efficiency.
Topics
- LongCat-2.0
- Mixture-of-Experts
- AI Accelerators
- Model Training
- Hardware Constraints
- Meituan
- ScMoE
Best for: MLOps Engineer, Research Scientist, Investor, AI Scientist, Machine Learning Engineer, AI Architect
Related on AIssential
Editorial summary, takeaway, and curation by AIssential. Original article published by Towards AI - Medium.