Skip to content
inference.academy

glossary/scale/tensor-parallelism

Tensor parallelism

also TP

Splitting each weight matrix across GPUs so that every layer's matmul runs on all of them at once, with an all-reduce to combine the partial results. It cuts per-GPU memory and, for memory-bound decode, multiplies effective bandwidth, since each card reads its slice of the weights in parallel. The all-reduces happen twice per layer and run at interconnect speed, so it works within an NVLink island and poorly beyond one.


6 TB/s

Aggregate weight-read bandwidth across four A100s under tensor parallelism, the number behind every latency floor on this site.


See it happen


Related