
ByteDance’s TokenMixer-Large: Scaling Ranking Models

Key Takeaways
- •Mixing‑Reverting blocks preserve residual alignment for deep ranking nets
- •Pure GEMM‑only design lifts GPU utilization to ~60% MFU
- •Sparse‑per‑token MoE scales model to 7 B parameters with low latency
- •Token parallelism cuts communication steps, boosting serving throughput 29%
- •FP8 quantization yields 1.7× speedup with minimal AUC loss
Pulse Analysis
The recommendation‑system landscape has long wrestled with the dichotomy between massive embedding tables and compute‑intensive models. Traditional DLRMs rely on a patchwork of operators—DeepFM, DCN, LHUC—that are memory‑bandwidth bound, capping GPU utilization well below 20%. ByteDance’s TokenMixer-Large reframes this problem by adopting a "pure" architecture where grouped matrix multiplications dominate, converting the workload into a compute‑heavy task that modern GPUs like the H100 can exploit efficiently.
At the heart of the breakthrough is the Mixing‑Reverting paradigm. By first mixing token information and then reverting to the original dimensionality within each block, the model preserves the identity mapping essential for deep residual networks. This design eliminates gradient decay, allowing the network to scale to dozens of layers. Complementing this, a sparse‑per‑token Mixture‑of‑Experts (MoE) expands capacity to 7 billion parameters without inflating inference latency, while a novel gate‑value scaling technique ensures stable expert training.
The practical impact extends beyond academic interest. Token parallelism shatters the communication bottleneck of conventional tensor parallelism, delivering a 29% throughput gain in production serving. FP8 quantization further accelerates inference by 1.7× with negligible AUC loss, making large‑scale ranking viable under strict latency SLAs. As firms chase LLM‑level scaling laws, TokenMixer-Large offers a concrete blueprint for turning recommendation infrastructure into a high‑throughput, hardware‑friendly engine, heralding a new era where handcrafted feature interactions give way to uniform, scalable blocks.
ByteDance’s TokenMixer-Large: Scaling Ranking Models
Comments
Want to join the conversation?