paper-with-me

홈 › Papers

Speculating Experts Accelerates Inference for Mixture-of-Experts

2026-03-09 · Vivan Madan, Prajwal Singhania, Abhinav Bhatele, Tom Goldstein, Ashwinee Panda arxiv

Mixture-of-Experts (MoE) models have gained popularity as a means of scaling the capacity of large language models (LLMs) while maintaining sparse activations and reduced per-token compute. However, in memory-constrained inference settings, expert weights must be offloaded to CPU, creating a performance bottleneck from CPU-GPU transfers during decoding. We propose an expert prefetching scheme that leverages currently computed internal model representations to speculate future experts, enabling memory transfers to overlap with computation. Across multiple MoE architectures, we demonstrate that future experts can be reliably predicted by these internal representations. We also demonstrate that executing speculated experts generally maintains downstream task accuracy, thus preserving more effective compute-memory overlap by eliminating the need to re-fetch true router-selected experts. Integrated into an optimized inference engine, our approach achieves up to 14\% reduction in time per output token (TPOT) over on-demand loading of experts from CPU memory. For MoEs where speculative execution alone yields suboptimal accuracy, we further examine lightweight estimators that improve expert prediction hit rates, thereby reducing performance degradation. Our code is released in open-source at https://github.com/axonn-ai/yalis/tree/offload_prefetch.

📄 PDF Abstract BibTeX arXiv:2603.19289

Code (0)

등록된 구현이 없습니다.

Similar Papers 제목 키워드 기반

Fast Inference of Mixture-of-Experts Language Models with Offloading

2023-12-28 · Artyom Eliseev, Denis Mazur

With the widespread adoption of Large Language Models (LLMs), many deep learning practitioners are looking for strategies of running these models more efficiently. One such strategy is to use sparse Mixture-of-Experts (M…

Mixture-of-ExpertsQuantization

Less Experts, Faster Decoding: Cost-Aware Speculative Decoding for Mixture-of-Experts

2026-07-14 · Jincheng Xie, Runheng Liu, Heyan Huang, Yawen Ling 외 arxiv

Sparse Mixture-of-Experts (MoE) models have become an important approach for scaling Large Language Models (LLMs), but their inference efficiency depends strongly on expert activation patterns. Speculative decoding (SD) …

Optimizing Mixture-of-Experts Inference Time Combining Model Deployment and Communication Scheduling

2024-10-22 · Jialong Li, Shreyansh Tripathi, Lakshay Rastogi, Yiming Lei 외

As machine learning models scale in size and complexity, their computational requirements become a significant barrier. Mixture-of-Experts (MoE) models alleviate this issue by selectively activating relevant experts. Des…

AllGPUMixture-of-ExpertsScheduling

MoE-Spec: Expert Budgeting for Efficient Speculative Decoding

2026-02-17 · Bradley McDanel, Steven Li, Sruthikesh Surineni, Harshit Khaitan arxiv

Speculative decoding accelerates Large Language Model (LLM) inference by verifying multiple drafted tokens in parallel. However, for Mixture-of-Experts (MoE) models, this parallelism introduces a severe bottleneck: large…

Mixture of Lookup Experts

2025-03-20 · Shibo Jie, Yehui Tang, Kai Han, Yitong Li 외

Mixture-of-Experts (MoE) activates only a subset of experts during inference, allowing the model to maintain low inference FLOPs and latency even as the parameter count scales up. However, since MoE dynamically selects t…

Mixture-of-Experts