Skip to content

FSDP Hang Due to Divergent Parameter Initialization

FSDP requires all ranks to have identical model architectures and parameter shapes. If `param_init_fn` is used incorrectly (e.g., using random generation that affects tensor shapes or diverging control flow per rank), Rank 0 might have a different layer structure or shape than Rank 1. When FSDP tries to all-gather parameters, the metadata mismatches, causing NCCL to wait indefinitely for matching tensor sizes that never arrive.

Quick answer

FSDP requires all ranks to have identical model architectures and parameter shapes.

Symptom
Watchdog caught collective operation timeout: _ALLGATHER_BASE
Root cause
FSDP requires all ranks to have identical model architectures and parameter shapes. If `param_init_fn` is used incorrectly (e.g.
Recommended fix
Ensure deterministic model initialization across ranks torch.manual_seed(42) # Initialize model... Ensures all ranks construct the exact same graph and tensor shapes before FSDP wraps and synchronizes them.
How Denpex helps
Denpex matches FSDP Hang Due to Divergent Parameter Initialization 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.
Model#Initialization Mismatch

What this failure is

FSDP Hang Due to Divergent Parameter Initialization is a Model failure seen during ML training runs. FSDP requires all ranks to have identical model architectures and parameter shapes. If `param_init_fn` is used incorrectly (e.g., using random generation that affects tensor shapes or diverging control flow per rank), Rank 0 might have a different layer structure or shape than Rank 1. When FSDP tries to all-gather parameters, the metadata mismatches, causing NCCL to wait indefinitely for matching tensor sizes that never arrive. Common tags: Initialization Mismatch.

Live diagnosis, no signup

Is this what broke your run? Paste your log.

You're reading about FSDP Hang Due to Divergent Parameter Initialization. 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.

training_logs.txt
No log to hand? Try one:

3 free diagnoses/day

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.

Evaluate one incident

Why it happens (the mechanism)

The error surfaces as a network timeout, leading users to debug firewall rules or NCCL flags instead of checking the deterministic initialization of their model.

What you'll observe

  • Watchdog caught collective operation timeout: _ALLGATHER_BASE
  • Process group timed out during forward pass

Common symptoms and what they mean

SymptomWhy it happens
Training hangs indefinitely on the first forward pass or backward pass.FSDP requires all ranks to have identical model architectures and parameter shapes. If `param_init_fn` is used incorrectly (e.g., using random generation that affects tensor shapes or diverging control flow per rank), Rank 0 might have a different layer structure or shape than Rank 1. When FSDP tries to all-gather parameters, the metadata mismatches, causing NCCL to wait indefinitely for matching tensor sizes that never arrive.
The hang only occurs when using `sync_module_states=True` or during the first un-sharding operation.FSDP requires all ranks to have identical model architectures and parameter shapes. If `param_init_fn` is used incorrectly (e.g., using random generation that affects tensor shapes or diverging control flow per rank), Rank 0 might have a different layer structure or shape than Rank 1. When FSDP tries to all-gather parameters, the metadata mismatches, causing NCCL to wait indefinitely for matching tensor sizes that never arrive.
No direct error is thrown until the NCCL watchdog times out.FSDP requires all ranks to have identical model architectures and parameter shapes. If `param_init_fn` is used incorrectly (e.g., using random generation that affects tensor shapes or diverging control flow per rank), Rank 0 might have a different layer structure or shape than Rank 1. When FSDP tries to all-gather parameters, the metadata mismatches, causing NCCL to wait indefinitely for matching tensor sizes that never arrive.

Which systems are affected

  • PyTorch FSDP
  • 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.

  • Set `TORCH_DISTRIBUTED_DEBUG=DETAIL` and `NCCL_DEBUG=INFO`.
  • Print model parameter shapes on each rank before wrapping with FSDP.
  • Disable `sync_module_states=True` to see if the error shifts to a shape mismatch during forward pass.

Searchable error signature

search key
Watchdog caught collective operation timeout: _ALLGATHER_BASE

Use 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 analysis

No 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 extension

Root cause

  • FSDP requires all ranks to have identical model architectures and parameter shapes. If `param_init_fn` is used incorrectly (e.g., using random generation that affects tensor shapes or diverging control flow per rank), Rank 0 might have a different layer structure or shape than Rank 1. When FSDP tries to all-gather parameters, the metadata mismatches, causing NCCL to wait indefinitely for matching tensor sizes that never arrive.

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.

We send a single-use code tied to that address. Static provider and TLD rules do not reject valid addresses. Account trust determines the benefit after signup.

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.