FSMoE: A Flexible and Scalable Training System for Sparse Mixture-of-Experts Models
Xinglin Pan, Wenxiang Lin, Lin Zhang, Shaohuai Shi, Zhenheng Tang, Rui Wang, Bo Li, Xiaowen Chu
TL;DR
FSMoE tackles the challenge of efficiently training sparse Mixture-of-Experts models by delivering a flexible, modular MoE framework with unified abstractions and online profiling, enabling near-optimal task scheduling across DP, MP, EP, and ESP parallelisms. It introduces an adaptive gradient partitioning method to overlap gradient aggregation with computation, and a pipeline-degree optimization that co-ordinates inter-node and intra-node communications with computations. Key contributions include modular MoE components (Gate, Order, I-Order, Dispatch, Combine, Expert), a generic front-end/back-end scheduler, and performance models that guide scheduling decisions via SLSQP optimization. Empirically, FSMoE achieves up to 1.42x speedups over optimized gating implementations and 1.19x–3.01x speedups over state-of-the-art MoE systems on configured layers and real-world GPT-2 and Mixtral models across two GPU clusters, demonstrating robust scalability and practical impact for large-scale MoE training.
Abstract
Recent large language models (LLMs) have tended to leverage sparsity to reduce computations, employing the sparsely activated mixture-of-experts (MoE) technique. MoE introduces four modules, including token routing, token communication, expert computation, and expert parallelism, that impact model quality and training efficiency. To enable versatile usage of MoE models, we introduce FSMoE, a flexible training system optimizing task scheduling with three novel techniques: 1) Unified abstraction and online profiling of MoE modules for task scheduling across various MoE implementations. 2) Co-scheduling intra-node and inter-node communications with computations to minimize communication overheads. 3) To support near-optimal task scheduling, we design an adaptive gradient partitioning method for gradient aggregation and a schedule to adaptively pipeline communications and computations. We conduct extensive experiments with configured MoE layers and real-world MoE models on two GPU clusters. Experimental results show that 1) our FSMoE supports four popular types of MoE routing functions and is more efficient than existing implementations (with up to a 1.42$\times$ speedup), and 2) FSMoE outperforms the state-of-the-art MoE training systems (DeepSpeed-MoE and Tutel) by 1.18$\times$-1.22$\times$ on 1458 MoE layers and 1.19$\times$-3.01$\times$ on real-world MoE models based on GPT-2 and Mixtral using a popular routing function.
