paper-with-me

Papers

DisagMoE: Computation-Communication overlapped MoE Training via Disaggregated AF-Pipe Parallelism

2026-05-10 · Zhichen Zeng, Chi-Chih Chang, Jiayi Wang, Zezhou Wang, Ningxin Zheng, Zheng Zhong, Cesar A. Stuardo, Dongyang Wang, Mohamed S. Abdelfattah, Haibin Lin, Banghua Zhu, Ang Li, Ziheng Jiang arxiv

Mixture-of-experts (MoE) architectures enable trillion-parameter LLMs with sparsely activated experts. Expert parallelism (EP) is a widely adopted MoE training strategy, but it suffers from severe all-to-all communication bottlenecks, which is exaggerated by the limited inter-node network bandwidth as the growing model size requires distributing experts across GPU nodes. Prior work focused on overlapping these all-to-all communications with feed-forward network (FFN) and self-attention computations, which often leaves residual network-bound stalls due to inherent imbalance in attention and FFN layers' computation-communication ratios. We present DisagMoE, a disaggregated MoE training system that jointly optimizes model placement and scheduling for maximal efficiency. DisagMoE separates attention and FFN layers into disjoint GPU groups, introduces a multi-stage pipeline with uni-directional, many-to-many communications, and employs a computation-communication roofline model to balance GPU and network bandwidth allocation among the attention and FFN groups. DisagMoE is implemented on Megatron-LM, and evaluation shows that DisagMoE improves training efficiency across multiple MoE models with up to 1.8x speedup on 16-node 8xH800 clusters.

📄 PDF Abstract BibTeX arXiv:2605.11005

Code (0)

등록된 구현이 없습니다.

Similar Papers 제목 키워드 기반

KVDirect: Distributed Disaggregated LLM Inference

2024-12-13 · Shiyang Chen, Rain Jiang, Dezhi Yu, Jinlai Xu 외

Large Language Models (LLMs) have become the new foundation for many applications, reshaping human society like a storm. Disaggregated inference, which separates prefill and decode stages, is a promising approach to impr…

GPUScheduling

TokenWeave: Efficient Compute-Communication Overlap for Distributed LLM Inference

2025-05-16 · Raja Gond, Nipun Kwatra, Ramachandran Ramjee

Distributed inference of large language models (LLMs) can introduce overheads of up to 20% even over GPUs connected via high-speed interconnects such as NVLINK. Multiple techniques have been proposed to mitigate these ov…

semi-PD: Towards Efficient LLM Serving via Phase-Wise Disaggregated Computation and Unified Storage

2025-04-28 · Ke Hong, Lufang Chen, Zhong Wang, Xiuhong Li 외

Existing large language model (LLM) serving systems fall into two categories: 1) a unified system where prefill phase and decode phase are co-located on the same GPU, sharing the unified computational resource and storag…

GPULarge Language ModelScheduling

Efficient MoE Inference with Fine-Grained Scheduling of Disaggregated Expert Parallelism

2025-12-25 · Xinglin Pan, Shaohuai Shi, Wenxiang Lin, Yuxin Wang 외 arxiv

The mixture-of-experts (MoE) architecture scales model size with sublinear computational increase but suffers from memory-intensive inference due to KV caches and sparse expert activation. Recent disaggregated expert par…

Frontier: Towards Comprehensive and Accurate LLM Inference Simulation

2026-05-20 · Yicheng Feng, Xin Tan, Yangtao Deng, Yimin Jiang 외 arxiv

Modern LLM serving is no longer homogeneous or monolithic. Production systems now combine disaggregated execution, complex parallelism, runtime optimizations, and stateful workloads such as reasoning, agents, and RL roll…