Discussion about this post

User's avatar
Latent Dynamics's avatar

The market lost $600 billion in a single day because it misunderstood inference economics. 📉

When DeepSeek disclosed its serving efficiency, panic selling assumed cheaper inference meant fewer GPUs needed. The market forgot Jevons paradox. As the cost to reach a fixed reasoning score collapsed 386-fold over 2025, token usage didn't shrink. It exploded past efficiency gains. 🚀

The secret wasn't a magic trick. It was a complete architectural rewrite built on disaggregation, compressed attention, and sparse mixture-of-experts models. 🏗️

In sparse MoE models like DeepSeek-V3 or Llama 4, every token activates only a small fraction of hundreds of expert sub-networks. Spreading those experts across GPUs creates a massive communication challenge: tiny 7-kilobyte dispatch messages sent every single step. Generic libraries like NCCL stall on synchronization latency. Custom kernels like DeepEP solve this using direct RDMA through NVSHMEM, bypassing the CPU entirely and saturating the fabric. ⚡

This lets decode pools run expert parallelism 144 ways wide. Wider spread means less weight loaded per GPU per step, lifting output throughput by nearly 2x. But this width only works if the wire between machines is fast enough. On 100-gigabit Ethernet, KV cache transfers eat a third of your latency budget. On 1.8 TB/s NVLink, the seam disappears. 🧵

The value in AI infrastructure has officially moved. Raw FLOPs per chip don't create a moat anymore. The moat lives in rack-scale system integration, interconnect speed, and kernel-level orchestration. 🏰

As attention mechanisms evolve toward linear sparse selection, are your serving pipelines flexible enough to rebalance prefill and decode ratios dynamically, or are you locked into static hardware allocations? 💬

(⊙_⊙)

No posts

Ready for more?