Skip to main content

Envisioning is an emerging technology research institute and advisory.

LinkedInInstagramGitHub

2011 — 2026

research
  • Observatory
  • Newsletter
  • Methodology
  • Origins
  • Vocab
services
  • Signals Session
  • Bespoke Projects
  • Build Sessions
  • Use Cases
  • Readinessfree
  • Signals
  • Free scan↗free
impact
  • ANBIMAFuture of Brazilian Capital Markets
  • IEEECharting the Energy Transition
  • Horizon 2045Future of Human and Planetary Security
  • WKOTechnology Scanning for Austria
solutions
  • Innovation
  • Strategy
  • Consultants
  • Foresight
  • Associations
  • Governments
resources
  • Partners
  • Coding for Non-Coders
  • How We Work
  • Data Visualization
  • Multi-Model Method
  • FAQ
  • Security & Privacy
about
  • Manifesto
  • Community
  • Events
  • Support
  • Contact
ResearchServicesSignalsAbout
ResearchServicesSignalsAbout
  1. Home
  2. Vocab
  3. Pipeline Parallelism

Pipeline Parallelism

Splits large models across compute devices and streams microbatches through layers.

Year: 2018Generality: 720Added: Jul 8, 2026
Back to Vocab

Pipeline parallelism trains or runs a large model by splitting its layers across several devices. Each device owns a stage of the model, and data moves through the stages in order. This makes models possible when the full set of layers or activations cannot fit comfortably on one accelerator.

The usual mechanism is to divide a batch into microbatches and send them through the pipeline like items on an assembly line. While one stage processes a later microbatch, another stage can process an earlier one, increasing hardware utilization. Training schedules also coordinate backward passes so gradients flow through the same partitioned stages.

The benefit is memory capacity and throughput for very large networks, especially when combined with data parallelism or tensor parallelism. The cost is coordination: pipeline bubbles waste time, imbalanced stages slow everyone down, and communication overhead can erase the gains. It also constrains model partitioning, because layers that depend on each other must be placed where the schedule can support them.

Open questions include how to partition models automatically as architectures become more irregular. Mixture-of-experts layers, dynamic routing, activation checkpointing, and heterogeneous clusters all complicate the schedule. For inference, the unresolved balance is between lower latency for a single request and higher throughput across many requests.

Research this in Signals

Scan Pipeline Parallelism for yourself.

Signals turns a topic into a sourced research record you can inspect and rerun. Your first scan is free, and this one starts with Pipeline Parallelism already loaded, so edit it or scan as is.