Why the Next AI Battle Is About Infrastructure
Large language models keep getting smarter, but the industry is shifting focus. Raw capability is no longer the only metric that matters. The new frontier is building reliable agents, solid engineering systems, and making AI actually work in messy real-world environments.
That's the theme of AICon Global AI Development and Application Conference, set for Shenzhen on August 21-22. The full agenda just went live, and it's packed with sessions on Agent engineering, large-model infrastructure, AI-native development, and embodied intelligence.
One talk stands out for anyone wrestling with performance bottlenecks: Li Baichao, a systems engineering expert at Huawei's 2012 Lab, will walk through how they optimized communication for the Pangu model on Ascend hardware.
The Hidden Cost: When Communication Eats Your Training Time
If you've trained a large model, you know the pain. Communication overhead can tank your throughput. In Mixture-of-Experts (MoE) models, AllToAll communication alone can account for over 30% of end-to-end time. That's not a rounding error—it's a huge chunk of your GPU budget.
Li's talk dives into two specific bottlenecks. First, the AllToAll traffic in MoE. Second, a newer problem: in ultra-long-context scenarios (think 1M tokens), transferring KV cache from host to device becomes the new bottleneck for time-to-first-token (TTFT).
These aren't abstract issues. They directly impact how fast your model responds and how much it costs to run.
MoE and the AllToAll Headache
MoE models are popular because they scale efficiently, but they come with a hidden cost. The AllToAll communication pattern shuffles data between every expert on every token. That's a lot of traffic, and it doesn't scale linearly.
Huawei's team tackled this head-on. They adapted the Pangu model to Ascend 950's network topology and used a dedicated communication accelerator called CCU. The result? A 10% performance boost on the EP communication domain's AllToAll. That's not just a nice optimization—it's a meaningful win for training throughput.
But here's the catch: their approach is deeply tied to Ascend 950's hardware. It won't work on other platforms. In fact, Li notes that the same strategy can degrade performance on Ascend 910A2/A3 or NVIDIA H20. That's a trade-off you need to understand before trying to replicate it.
KV Cache: The New Bottleneck in Long Contexts
Long-context models are all the rage, but they're brutal on inference. When your context window hits 1M tokens, the KV cache becomes massive. Moving that data from host memory to the device can take longer than the actual computation.
Huawei's solution involves both hardware and software. On the hardware side, Ascend 950 gives each NPU a dedicated host-to-device (H2D) path. On the software side, they built Omni Cache to handle KV cache offloading efficiently. Together, these improvements shave off over 10% of TTFT.
That's a big deal for real-time applications where every millisecond matters.
What You'll Learn from Li's Talk
Li's session isn't just about Huawei's internal wins. He'll break down the technical challenges, the specific optimizations, and the trade-offs they made. Here's a taste of the agenda:
- MoE communication challenges: Why AllToAll is the bottleneck and how they optimized it for Ascend 950.
- Hardware affinity: How to leverage dedicated communication engines like CCU and why DeepEP doesn't work on Ascend 910A3.
- Model affinity: Using custom communication operators to implement new collective communication semantics.
- H2D acceleration: Combining hardware and software to speed up KV cache transfer.
- Future directions: Minimizing unmasked communication time and exploring fused operators and multi-stream parallelism.
The Trade-Off: Specialization vs. Portability
One of the most honest parts of Li's talk is the trade-off. Their optimizations are tailored to Ascend 950. They sacrifice generality for performance. That's a common theme in AI infrastructure—what works on one platform may completely fail on another.
For engineers, this is a cautionary tale. Before you invest in hardware-specific optimizations, consider whether you're locked into that platform for the long haul. But if you are, the gains can be substantial.
AICon Shenzhen: More Than Just One Talk
AICon isn't just about communication optimization. The conference features 10 thematic forums and a hands-on lab, with nearly 60 sessions. You'll hear from experts at Alibaba, Tencent, Huawei, Kuaishou, Google Cloud, and top universities like Zhejiang University.
Topics range from Agent engineering to embodied AI, from safety to commercial applications. It's a chance to see how the industry is moving from AI capability to AI systems.
If you're serious about building AI infrastructure, this is the event to catch.
Comments (0)
Please sign in to post a comment.
Don't have an account? Create one
No comments yet. Be the first to comment!