Optimizer State Memory Explosion
Optimizers like Adam and AdamW maintain moment states (running averages of gradients and squared gradients) for every parameter. For a model with N parameters, the optimizer state requires 2 * N memory (often in FP32). The initialization of these state tensors happens lazily on the first `optimizer.step()`, suddenly doubling or tripling the memory footprint of the model weights.
Optimizers like Adam and AdamW maintain moment states (running averages of gradients and squared gradients) for every parameter.
- Symptom
RuntimeError: CUDA out of memory. (Occurs on the line `optimizer.step()`)- Root cause
- Optimizers like Adam and AdamW maintain moment states (running averages of gradients and squared gradients) for every parameter. For a model with N parameters, the optimizer state requires 2 * N memory (often in FP32). The initialization of these state tensors happens lazily on the first `optimizer.
- Recommended fix
- Use an optimizer with a smaller memory footprint, such as 8-bit Adam. import bitsandbytes as bnb optimizer = bnb.optim.AdamW8bit(model.parameters(), lr=1e-3) Quantizes the optimizer state to 8-bit, reducing the optimizer memory footprint by ~75%.
- How Denpex helps
- Denpex matches Optimizer State Memory Explosion 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
Optimizer State Memory Explosion is a Memory failure seen during ML training runs. Optimizers like Adam and AdamW maintain moment states (running averages of gradients and squared gradients) for every parameter. For a model with N parameters, the optimizer state requires 2 * N memory (often in FP32). The initialization of these state tensors happens lazily on the first `optimizer.step()`, suddenly doubling or tripling the memory footprint of the model weights. Common tags: Optimizer State.
Is this what broke your run? Paste your log.
You're reading about Optimizer State Memory Explosion. 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)
Users calculate memory based on model size and activations. They are surprised when memory spikes at the very end of the training step, unassociated with the batch size.
What you'll observe
- RuntimeError: CUDA out of memory. (Occurs on the line `optimizer.step()`)
- OOM exactly after the first backward pass is completed.
Common symptoms and what they mean
| Symptom | Why it happens |
|---|---|
| The model loads fine. The forward pass runs fine. The backward pass (`loss.backward()`) completes. The process crashes immediately when `optimizer.step()` is called. | Optimizers like Adam and AdamW maintain moment states (running averages of gradients and squared gradients) for every parameter. For a model with N parameters, the optimizer state requires 2 * N memory (often in FP32). The initialization of these state tensors happens lazily on the first `optimizer.step()`, suddenly doubling or tripling the memory footprint of the model weights. |
Which systems are affected
- PyTorch
- Adam
- DeepSpeed
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.
- ✓Verify the exact line of the OOM crash is `optimizer.step()`.
- ✓Calculate total parameter count and multiply by 8 bytes (for Adam's two FP32 states) to see if it exceeds available VRAM.
Searchable error signature
RuntimeError: CUDA out of memory. (Occurs on the line `optimizer.step()`)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 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
- Optimizers like Adam and AdamW maintain moment states (running averages of gradients and squared gradients) for every parameter. For a model with N parameters, the optimizer state requires 2 * N memory (often in FP32). The initialization of these state tensors happens lazily on the first `optimizer.step()`, suddenly doubling or tripling the memory footprint of the model weights.
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.