Which strategy splits tensors inside layers?
- Pipeline parallelism
- Model (tensor) parallelism
- Single-device training
In data parallelism, what is copied and what is split?
- The model is copied and the batch is split
- The batch is copied and the model is split
- The gradients are copied and the data is deleted
Which strategy splits whole layers into stages?
- Data parallelism
- Tensor parallelism
- Pipeline parallelism
What is a pipeline bubble?
- A memory leak inside one stage
- A burst of unusually fast traffic
- Idle stage time during pipe fill and drain
What must data-parallel devices exchange after each step?
- Stage activations only
- Gradients, so all copies stay in step
- Nothing at all
A run fits in memory but its links are slow. Which split fits?
- Tensor parallelism across everything
- Data parallelism, splitting the model no further than needed
- One pipeline stage per layer
A model that fits on no device is fixed by adding more data-parallel copies.
Circle one: True False
How do microbatches shrink the pipeline bubble?
- They keep the next chunk right behind the previous one, so stages stay busy
- They remove all communication between stages
- They merge every stage onto one device
Split the work: batch, tensors, or layers W1-mt__e-JwIxHek-s1
- Model (tensor) parallelism · Tensor splits cut inside layers and trade partial results each step.
- The model is copied and the batch is split · Every device holds the full model and runs part of the batch.
- Pipeline parallelism · Stages are whole-layer blocks passing activations across boundaries.
- Idle stage time during pipe fill and drain · Stages wait without work while chunks arrive or leave.
- Gradients, so all copies stay in step · Pooling gradients keeps every copy learning the same update.
- Data parallelism, splitting the model no further than needed · Data syncs once per step, while finer splits chatter constantly.
- False · Copies still exceed memory, so the model itself must be split.
- They keep the next chunk right behind the previous one, so stages stay busy · Small chunks flow nose to tail, leaving little idle time.