paper-with-me

Papers

SERE: Similarity-based Expert Re-routing for Efficient Batch Decoding in MoE Models

2026-02-07 · Juntong Wu, Jialiang Cheng, Fuyu Lv, Ou Dan, Li Yuan arxiv

Mixture-of-Experts (MoE) architectures employ sparse activation to deliver faster training and inference with higher accuracy than dense LLMs. However, in production serving, MoE models require batch inference to optimize hardware efficiency, which may cause excessive expert activation and thus slow the memory-bound decoding stage. To address the fundamental tension between batch decoding and expert sparsity, we present SERE, a Similarity-based Expert Re-routing method for Efficient batch decoding in MoE models. SERE dynamically reduces the number of active experts in an input-aware manner by re-routing tokens from secondary experts to their most similar primary counterparts. It also leverages similarity patterns to identify and preserve critical experts, thereby preventing capability loss. Notably, SERE avoids static expert pruning or merging, instead enabling dynamic expert skipping based on batch-level expert redundancy. Additionally, we provide an efficient custom CUDA kernel for SERE, enabling plug-and-play use in vLLM with only a single-line code change. Extensive experiments on various complex reasoning benchmarks demonstrate that SERE achieves up to 2.0x speedup with minimal quality loss, providing a practical solution for cost-efficient and latency-sensitive large-scale MoE deployment. Code implementation of SERE can be found in https://github.com/JL-Cheng/SERE.

📄 PDF Abstract BibTeX arXiv:2602.07616

Code (0)

등록된 구현이 없습니다.

Similar Papers 제목 키워드 기반

DeaMoE: Efficient MoE Structure for Fast Small-Batch Decoding

2026-08-14 · Zewen Jin, Shen Fu, Zeping Duan, Shannon Wang 외 arxiv

Mixture-of-Experts (MoE) models have been widely adopted in real-time interactive applications such as coding assistants, real-time audio-video interaction systems. To meet the extremely low response latency requirements…

The Myth of Expert Specialization in MoEs: Why Routing Reflects Geometry, Not Necessarily Domain Expertise

2026-04-10 · Xi Wang, Soufiane Hayou, Eric Nalisnick arxiv

Mixture of Experts (MoEs) are now ubiquitous in large language models, yet the mechanisms behind their "expert specialization" remain poorly understood. We show that, since MoE routers are linear maps, hidden state simil…

MoE-Prefill: Zero Redundancy Overheads in MoE Prefill Serving

2026-05-03 · Zhaoyuan Su, Olatunji Ruwase, Karthik Ganesan, Aurick Qiao 외 arxiv

Production LLM workloads increasingly serve discriminative tasks, such as classification, recommendation, and verification, whose answers are read from the logits of a single prefill pass with no autoregressive decoding.…

MoE Lens -- An Expert Is All You Need

2026-03-06 · Marmik Chaudhari, Idhant Gulati, Nishkal Hundia, Pranav Karra 외 arxiv

Mixture of Experts (MoE) models enable parameter-efficient scaling through sparse expert activations, yet optimizing their inference and memory costs remains challenging due to limited understanding of their specializati…

Opportunistic Expert Activation: Batch-Aware Expert Routing for Faster Decode Without Retraining

2025-11-04 · Costin-Andrei Oncescu, Qingyang Wu, Wai Tong Chung, Robert Wu 외 arxiv

An increasing number of LLMs employ Mixture-of-Experts (MoE) architectures where the feed-forward layer is replaced by a pool of experts and each token only activates a small subset of them. During autoregressive generat…