Skip to content

Rank 0 OOM During ZeRO-3 Checkpoint Save

By default, DeepSpeed's ZeRO-3 config parameter `gather_16bit_weights_on_model_save` is often set to true. This instructs DeepSpeed to unshard and consolidate all model weights onto a single GPU (Rank 0) to save a standard fp16 model file. For massive models, gathering the entire model state on a single GPU immediately exceeds its VRAM capacity.

Quick answer

By default, DeepSpeed's ZeRO-3 config parameter `gather_16bit_weights_on_model_save` is often set to true.

Symptom
RuntimeError: CUDA out of memory. Tried to allocate...
Root cause
By default, DeepSpeed's ZeRO-3 config parameter `gather_16bit_weights_on_model_save` is often set to true. This instructs DeepSpeed to unshard and consolidate all model weights onto a single GPU (Rank 0) to save a standard fp16 model file. For massive models, gathering the entire model state on a single GPU immediately exceeds its VRAM capacity.
Recommended fix
zero_to_fp32.py
How Denpex helps
Denpex matches Rank 0 OOM During ZeRO-3 Checkpoint Save 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.
Memory#Checkpoint OOM

What this failure is

Rank 0 OOM During ZeRO-3 Checkpoint Save is a Memory failure seen during ML training runs. By default, DeepSpeed's ZeRO-3 config parameter `gather_16bit_weights_on_model_save` is often set to true. This instructs DeepSpeed to unshard and consolidate all model weights onto a single GPU (Rank 0) to save a standard fp16 model file. For massive models, gathering the entire model state on a single GPU immediately exceeds its VRAM capacity. Common tags: Checkpoint OOM.

Live diagnosis, no signup

Is this what broke your run? Paste your log.

You're reading about Rank 0 OOM During ZeRO-3 Checkpoint Save. 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)

Users assume that if a model fits in VRAM for training (forward/backward passes), it should easily fit for checkpoint saving. They don't realize ZeRO-3 breaks the model across GPUs and reconstructs it on a single device for saving.

What you'll observe

  • RuntimeError: CUDA out of memory. Tried to allocate...
  • [Rank 0] OOM encountered during save_checkpoint

Common symptoms and what they mean

SymptomWhy it happens
Training runs completely fine and stably, but suddenly crashes with a CUDA OOM precisely when attempting to save the first checkpoint.By default, DeepSpeed's ZeRO-3 config parameter `gather_16bit_weights_on_model_save` is often set to true. This instructs DeepSpeed to unshard and consolidate all model weights onto a single GPU (Rank 0) to save a standard fp16 model file. For massive models, gathering the entire model state on a single GPU immediately exceeds its VRAM capacity.
Only rank 0 experiences the Out of Memory error; other ranks sit idle or timeout.By default, DeepSpeed's ZeRO-3 config parameter `gather_16bit_weights_on_model_save` is often set to true. This instructs DeepSpeed to unshard and consolidate all model weights onto a single GPU (Rank 0) to save a standard fp16 model file. For massive models, gathering the entire model state on a single GPU immediately exceeds its VRAM capacity.

Which systems are affected

  • DeepSpeed
  • PyTorch
  • CUDA

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.

  • Check the DeepSpeed configuration JSON for `gather_16bit_weights_on_model_save`.
  • Monitor `nvidia-smi` during checkpointing and watch Rank 0 VRAM spike dramatically right before the crash.

Searchable error signature

search key
RuntimeError: CUDA out of memory. Tried to allocate...

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

DeepSpeed errors in context

DeepSpeed changes when parameters, gradients and optimizer state are created, partitioned, gathered and offloaded. The hub separates ZeRO, memory, checkpoint and pipeline failures by lifecycle phase.

Compare every deepspeed error side by side

Root cause

  • By default, DeepSpeed's ZeRO-3 config parameter `gather_16bit_weights_on_model_save` is often set to true. This instructs DeepSpeed to unshard and consolidate all model weights onto a single GPU (Rank 0) to save a standard fp16 model file. For massive models, gathering the entire model state on a single GPU immediately exceeds its VRAM capacity.

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.