AI inference glossary
ParallelismEP

Expert parallelism

In plain English

Expert parallelism gives different GPUs different specialist parts of a model, then sends each token to the specialists it needs.

Technical definition

Expert parallelism distributes the experts of a mixture-of-experts model across accelerators and routes tokens to the ranks holding their selected experts.

Engineering details

MoE layers activate only a subset of experts for each token. EP exploits that sparsity so every GPU need not store or compute every expert, but it introduces dispatch and combine all-to-all communication around each MoE layer.

Why it matters

Wider EP reduces the expert-weight footprint per GPU and can improve decode batching and capacity. Its benefit depends on balanced routing and an interconnect fast enough to move tokens among ranks.

How to read it in InferenceX

InferenceX reports EP width as part of distributed recipes. NVL72 systems can keep much wider groups inside the NVLink scale-up domain than conventional eight-GPU nodes.