Skip to content
inference.academy

glossary/scale/expert-parallelism

Expert parallelism

also EP

Placing the experts of a mixture-of-experts model on different GPUs, so each card holds a few experts rather than a slice of all of them. Tokens are routed to whichever card holds their chosen experts and the results routed back, an all-to-all exchange per MoE layer. It lets the total parameter count exceed any one node while the active count per token stays small, and it makes load balance across experts a hardware problem.


256 experts, 8 active

Per token in DeepSeek-V3, plus one shared expert; 671B parameters total, 37B used per token.


Related