AI inference glossary
ParallelismTP

Tensor parallelism

In plain English

Tensor parallelism splits one large calculation across several GPUs so they solve it together.

Technical definition

Tensor parallelism shards individual tensor operations and model weight matrices across multiple accelerators.

Engineering details

Each layer executes cooperatively across ranks. Partial results must be combined with collective communication, commonly all-reduce operations after parallel matrix multiplications.

Why it matters

TP lets a model fit across devices and can improve low-batch interactivity by pooling compute and memory bandwidth. Communication occurs frequently, so scaling eventually runs into the bandwidth and latency of the interconnect.

How to read it in InferenceX

InferenceX recipe labels such as TP=4 or TP=8 state how many ranks participate in each tensor-parallel group. Compare TP together with EP, DP, node count, and network domain.