dist.all_gather Timeout from Dynamic Tensor Shapes
dist.all_gather requires every participating rank to pass a tensor of the exact same dimensions. If Rank 0 detects 5 bounding boxes (shape [5, 4]) and Rank 1 detects 3 bounding boxes (shape [3, 4]), the underlying NCCL backend gets mismatched buffer sizes. Rather than throwing an immediate shape error, NCCL hangs indefinitely, waiting for matching sizes.
dist.
- Symptom
RuntimeError: NCCL error in: ../torch/csrc/distributed/c10d/ProcessGroupNCCL.cpp- Root cause
- dist.all_gather requires every participating rank to pass a tensor of the exact same dimensions. If Rank 0 detects 5 bounding boxes (shape [5, 4]) and Rank 1 detects 3 bounding boxes (shape [3, 4]), the underlying NCCL backend gets mismatched buffer sizes.
- Recommended fix
- Pad tensors to a common maximum shape before gathering. max_len = max(gathered_lengths); padded_tensor = F.pad(local_tensor, (0, 0, 0, max_len - local_tensor.size(0))) Ensures all tensors passed to NCCL have identical shapes, satisfying the backend requirements.
- How Denpex helps
- Denpex matches dist.all_gather Timeout from Dynamic Tensor Shapes across every rank in a distributed run and reports which rank failed first, so you act on the initiating node instead of the loudest one.
What this failure is
dist.all_gather Timeout from Dynamic Tensor Shapes is a Synchronization failure seen during ML training runs. dist.all_gather requires every participating rank to pass a tensor of the exact same dimensions. If Rank 0 detects 5 bounding boxes (shape [5, 4]) and Rank 1 detects 3 bounding boxes (shape [3, 4]), the underlying NCCL backend gets mismatched buffer sizes. Rather than throwing an immediate shape error, NCCL hangs indefinitely, waiting for matching sizes. Common tags: Shape Mismatch.
Is this what broke your run? Paste your log.
You're reading about dist.all_gather Timeout from Dynamic Tensor Shapes. Paste your own crash log or traceback below and get the real root cause for YOUR run, not this generic entry. No account, no card. Logs are masked at ingress and never saved to account history.
Want 14 days on the Scale plan?
Request an evaluation code. A verified workplace organization activates up to 50 diagnoses a day, alerts, history, and follow-up questions. No credit card or automatic subscription.
Why it happens (the mechanism)
Instead of raising a ValueError for mismatched tensor dimensions, the underlying C++ backend blocks. The developer assumes a networking timeout, not a data dimension bug.
What you'll observe
- RuntimeError: NCCL error in: ../torch/csrc/distributed/c10d/ProcessGroupNCCL.cpp
- Hang at dist.all_gather(tensor_list, local_tensor)
Common symptoms and what they mean
| Symptom | Why it happens |
|---|---|
| The script hangs during an explicit dist.all_gather() call. | dist.all_gather requires every participating rank to pass a tensor of the exact same dimensions. If Rank 0 detects 5 bounding boxes (shape [5, 4]) and Rank 1 detects 3 bounding boxes (shape [3, 4]), the underlying NCCL backend gets mismatched buffer sizes. Rather than throwing an immediate shape error, NCCL hangs indefinitely, waiting for matching sizes. |
| Usually happens when gathering outputs like variable-length sequences or dynamically detected bounding boxes. | dist.all_gather requires every participating rank to pass a tensor of the exact same dimensions. If Rank 0 detects 5 bounding boxes (shape [5, 4]) and Rank 1 detects 3 bounding boxes (shape [3, 4]), the underlying NCCL backend gets mismatched buffer sizes. Rather than throwing an immediate shape error, NCCL hangs indefinitely, waiting for matching sizes. |
Which systems are affected
- PyTorch
- NCCL
How to confirm this is the problem
Use this checklist to test the hypothesis against a small reproduction. No single line proves the root cause, so preserve the preceding events and compare one variable at a time.
- ✓Print tensor.shape before the all_gather call on every rank.
- ✓Enable TORCH_DISTRIBUTED_DEBUG=DETAIL.
Searchable error signature
RuntimeError: NCCL error in: ../torch/csrc/distributed/c10d/ProcessGroupNCCL.cppUse this text as a lookup key in logs and upstream issue trackers. It is not presented as a captured customer log. Confirm the cause from your own preceding events, versions, configuration and the cited references.
The fix and the prevention pattern
The root cause is on this page and stays free. A free account adds the exact remediation steps, saved history, and the fix on every entry in the encyclopedia.
Sign up free. Unlock the full analysisNo credit card. Daily allowance follows verified trust tier. Instant access.
Diagnose this failure in VS Code
Select the traceback or open the failed terminal, then run Denpex locally to see the initiating rank, collateral failures, exact fix, and verification command without uploading the log.
Install the free VS Code extensionRoot cause
- dist.all_gather requires every participating rank to pass a tensor of the exact same dimensions. If Rank 0 detects 5 bounding boxes (shape [5, 4]) and Rank 1 detects 3 bounding boxes (shape [3, 4]), the underlying NCCL backend gets mismatched buffer sizes. Rather than throwing an immediate shape error, NCCL hangs indefinitely, waiting for matching sizes.
The fix and how to prevent it
Evaluate Denpex on your own logs
Request a Scale evaluation code. A verified workplace organization activates 14 days with up to 50 diagnoses a day. Every account keeps its current diagnosis allowance and gets a verification path. No card or automatic subscription.
References
Don't just read the fix, diagnose your run
The encyclopedia tells you what went wrong. Denpex tells you what went wrong in YOUR training run. With your logs, your config, and your stack.