paper-with-me

홈 › Papers

Dynamic Expert Quantization for Scalable Mixture-of-Experts Inference

2025-11-19 · Kexin Chu, Dawei Xiang, Zixu Shen, Yiwei Yang, Zecheng Liu, Wei Zhang arxiv

Mixture-of-Experts (MoE) has become a practical architecture for scaling LLM capacity while keeping per-token compute modest, but deploying MoE models on a single, memory-limited GPU remains difficult because expert weights dominate the HBM footprint. Existing expert offloading and prefetching systems reduce the resident set, yet they often pay expert-loading costs on the critical path when activation becomes dense. Post-training quantization (PTQ) lowers the footprint without transfers, but prevailing pipelines fix expert bit-widths offline and assume routing remains stable, even though MoE expert utilization is heavy-tailed and the hot set can shift across workloads. We present DynaExq, a runtime-aware mixed-precision serving system that treats single-GPU MoE inference under a hard HBM envelope as an online, budget-constrained precision allocation problem. The key insight is to keep the experts that dominate runtime traffic resident at higher precision, while maintaining a low-precision fallback for the remaining experts, so the system can reduce transfer volume and avoid the waiting latency that limits offloading and prefetching under dense activation. DynaExq estimates long-horizon expert hotness from router traces, selects a per-layer high-precision resident set via a budget-feasible top-$n$ rule, and applies promotions and demotions asynchronously through stable expert handles so the forward pass always executes on a fully materialized expert version. Across Qwen3-MoE-30B/80B and six benchmarks, DynaExq improves accuracy over static PTQ on Qwen3-80B (73.09% to 77.57%) under comparable device-memory budgets and achieves up to 2.73x higher throughput than offloading/prefetch baselines at batch size 32.

📄 PDF Abstract BibTeX arXiv:2511.15015

Code (0)

등록된 구현이 없습니다.

Similar Papers 제목 키워드 기반

MoQE: Improve Quantization Model performance via Mixture of Quantization Experts

2025-08-09 · Jinhao Zhang, Yunquan Zhang, Boyang Zhang, Zeyu Liu 외 arxiv

Quantization method plays a crucial role in improving model efficiency and reducing deployment costs, enabling the widespread application of deep learning models on resource-constrained devices. However, the quantization…

MC#: Mixture Compressor for Mixture-of-Experts Large Models

2025-10-13 · Wei Huang, Yue Liao, Yukang Chen, Jianhui Liu 외 arxiv

Mixture-of-Experts (MoE) effectively scales large language models (LLMs) and vision-language models (VLMs) by increasing capacity through sparse activation. However, preloading all experts into memory and activating mult…

MoTE: Mixture of Ternary Experts for Memory-efficient Large Multimodal Models

2025-06-17 · Hongyu Wang, Jiayu Xu, Ruiping Wang, Yan Feng 외

Large multimodal Mixture-of-Experts (MoEs) effectively scale the model size to boost performance while maintaining fixed active parameters. However, previous works primarily utilized full-precision experts during sparse …

Mixture-of-ExpertsQuantization

MC-MoE: Mixture Compressor for Mixture-of-Experts LLMs Gains More

2024-10-08 · Wei Huang, Yue Liao, Jianhui Liu, Ruifei He 외

Mixture-of-Experts large language models (MoE-LLMs) marks a significant step forward of language models, however, they encounter two critical challenges in practice: 1) expert parameters lead to considerable memory consu…

Mixture-of-ExpertsQuantization

RQ-MoE: Residual Quantization via Mixture of Experts for Efficient Input-Dependent Vector Compression

2026-05-14 · Zhengjia Zhong, Shuyan Ke, Zaizhou Lin, Jiaqi Song 외 arxiv

Vector quantization is a fundamental tool for compressing high-dimensional embeddings, yet existing multi-codebook methods rely on static codebooks that limit expressiveness under heterogeneous data geometry. While recen…