From Score Distributions to Balance: Plug-and-Play Mixture-of-Experts Routing
Rana Shahout, Colin Cai, Yilun Du, Minlan Yu, Michael Mitzenmacher
TL;DR
The paper tackles the memory and latency challenges of inference in large Mixture-of-Experts models by addressing load imbalance across experts. It introduces LASER, a plug-and-play, inference-time routing algorithm that adapts to the gate-score distribution and real-time loads to balance utilization without retraining. LASER expands or constrains the candidate pool based on score distribution, then assigns tokens to the least-loaded experts, with per-layer parameterization to match layer-specific score patterns. Empirical results on Mixtral-8x7B and DeepSeek-MoE-16b-chat across four benchmarks show substantial reductions in expert imbalance and improved latency/throughput while maintaining near-baseline accuracy, highlighting LASER’s practical impact for scalable MoE inference.
Abstract
Mixture-of-Experts (MoE) models can scale parameter capacity by routing each token to a subset of experts through a learned gate function. While conditional routing reduces training costs, it shifts the burden on inference memory: expert parameters and activations consume memory, limiting the number of experts per device. As tokens are routed, some experts become overloaded while others are underutilized. Because experts are mapped to GPUs, this imbalance translates directly into degraded system performance in terms of latency, throughput, and cost. We present LASER, a plug-and-play, inference-time routing algorithm that balances load while preserving accuracy. LASER adapts to the shape of the gate's score distribution. When scores provide a clear preference, it routes to the strongest experts; when scores are more uniform, it broadens the set of viable experts and routes to the least-loaded among them. Because LASER relies only on gate scores from a trained model, it integrates directly into existing MoE inference pipelines without retraining or finetuning. We evaluate LASER on Mixtral-8x7B and DeepSeek-MoE-16b-chat across four datasets (ARC-Easy, ARC-Challenge, MMLU, and GSM8K). LASER improves load balancing, translating into lower latency and higher throughput, while keeping the accuracy changes negligible.
