Manage unified memory and thermals during long-running ML jobs on NVIDIA DGX Spark. Use when planning memory headroom for a training run on GB10, when a job OOMs on unified memory, or when monitoring temperature and power during multi-hour training.
npx skills add https://github.com/wshobson/agents --skill spark-memory-thermal-ops
DGX Spark's GB10 chip has one 128GB unified
memory (UMA) pool shared by CPU and GPU, and a
sustained power ceiling well below its rated
figure. Both break discrete-GPU assumptions:
headroom isn't what nvidia-smi reports, and a
run that starts fast will slow down mid-job
with nothing misconfigured. This skill covers
planning memory headroom, working an actual
OOM, and watching thermals across a long job.
For launch-time failure modes (ABI mismatches,
flash-attn, playbook breakage), see
spark-training-gotchas — this skill assumes
the job starts.
| Situation | Do this |
|---|---|
| Planning headroom before launch | Budget against free -g, not nvidia-smi — see UMA Memory Model |
| Job OOMs on unified memory | Work the OOM Ladder in order: flush, then batch/pack, then method downgrade |
| Throughput drops mid-run | Check the power/temp log before assuming a config bug — see Thermal Monitoring |
| Trainer + inference server both wanted | Run one at a time — see Concurrent Workloads |
before launch — will this model, method, and
batch/pack combination fit.
remediation order matters — what to try first,
second, third.
multi-hour job, deciding whether a slowdown is
thermal throttling or something else.
inference server (vLLM, Ollama) on the same box.
Spark has no separate GPU VRAM — the GPU and
CPU share one 128GB pool. Two consequences:
nvidia-smi and cudaMemGetInfounderreport pressure — or report nothing at
all.** Both report CUDA-allocator-visible
memory, not the pool's actual state — a box can
show headroom in nvidia-smi and still OOM,
because page-cache and mmap'd pages the
allocator doesn't see consume the same pool. On
some driver/setups, the memory query returns
[N/A], [N/A] outright instead of a number — a
script grepping for a numeric value there gets
nothing, not a misleading undercount (see
spark-training-gotchas gotcha G3).
steady state.** Loading safetensors weights
mmaps the file, then copies into CUDA
tensors — for a window during load, both the
mmap'd pages and the CUDA copy count against
the pool at once. A model that fits while
training can still OOM during load if headroom
was sized for the post-load footprint instead
of this doubled transient.
Plan and diagnose with free -g, not
nvidia-smi:
free -g | awk 'NR==2 {print "free:", $4, "GB"}'
Rule of thumb: take that free figure, subtract a
few GB for OS/driver overhead, and budget against
the result — not the 128GB spec number.
The worksheet in references/uma-accounting.md
accepts parameter count, dtype, and method as
input, and returns a memory estimate to compare
against known anchors.
Before launch, work through these in order:
free -g; subtract OS/driver overheadfor the budget.
activations from references/uma-accounting.md.
QLoRA, 27B LoRA, 9B full FT), not the
estimate alone.
with shorter packing or a smaller batch —
cheaper than hitting the OOM Ladder mid-run.
A sanity check of the worksheet formula against
the ≈40GB anchor:
params = 70e9
weights_gb = params * 0.5 / 1e9 # NF4, step 1
adapter_gb = 0.5 # step 5, negligible
total_gb = weights_gb + adapter_gb # + activations
print(f"{total_gb:.0f}GB before activations")
Weights alone land near the ≈40GB anchor — a plan
estimating far above that for the same model
class is a signal to recheck dtype and method.
When a job OOMs on unified memory, work this
ladder in order. Each step is more disruptive
than the last — don't skip ahead:
reducing batch size is never step 1.
previous run or a large dataset read often
accounts for GB of the "missing" headroom.
This costs nothing but a rerun and doesn't
touch the job's configuration:
sync; echo 3 > /proc/sys/vm/drop_caches
Needs root; a between-run reset, not a
mid-training step. See
spark-training-gotchas (gotcha G3) for the
full diagnostic behind this step.
after a flush fails to free enough headroom,
cut batch size or packing length — the first
step that changes what the run does. Prefer
packing length first; it drives activation
footprint more directly at long context.
QLoRA.** If flushing and shrinking batch/pack
still OOM, drop the method a tier — bf16 LoRA
is next, not the reverse. QLoRA's bitsandbytes
dequantization buffers are transient CUDA-side
allocations that can OOM before an equivalent
bf16 LoRA run would, even though QLoRA's
steady-state footprint is smaller. A QLoRA OOM
is not proof the model doesn't fit.
Fall back further (smaller model, multi-Spark)
only after all three steps and the job still
won't fit.
Multi-hour runs push into Spark's sustained
power ceiling, well under the rated figure —
expected platform behavior, not a symptom to
explain away:
training logs, not after a slowdown is
noticed — every 30-60 seconds correlates a
throughput drop with a thermal event. Keep
the CSV output format assets/thermal-sample.sh
writes, so timestamps line up against the log:
bash assets/thermal-sample.sh 30 thermal.log
cap, not a configuration bug.** Don't re-tune
batch size or precision to "fix" a plateau
that's the box behaving normally under load.
If temperature climbs while power stays flat
under the rated 240W figure, that's the
signature to recognize.
letting a run silently slow down unrecorded. A
run whose per-step time doubles two hours in
should show that in the log, correlated against
the thermal sample at that timestamp. Full
throttling diagnostics: spark-training-gotchas
(gotcha G4).
Because the 128GB pool is global, eviction
happens without either process's logs showing
an OOM:
near-capacity** workloads — an uncapped trainer
and inference server (vLLM, Ollama) compete for
the same pool. A small, capped workload doesn't:
a <4GB LoRA fine-tune coexists fine alongside
vLLM capped at gpu-memory-utilization<=0.5 —
check the other process's cap, not just its
presence, before stopping it.
under uncapped/near-capacity contention, and
vice versa — neither logs an error, so a slow
run or lost KV cache is a contention symptom to
check for. Stop unrelated *uncapped* servers
before a long or full-pool run.
Check for GPU-resident processes first:
ps aux | grep -E 'vllm|ollama|trl|axolotl' | grep -v grep
This procedure complements spark-training-gotchas
(gotchas G3, G4, G6) — that skill covers launch-time
failures; this one, the running job.
Memory math worksheets:
references/uma-accounting.md.
Production-ready patterns for building LLM applications. Covers RAG pipelines, agent architectures, prompt IDEs, and LLMOps monitoring. Use when designing AI applications, implementing RAG, building agents, or setting up LLM observability.
Build production ML systems with PyTorch 2.x, TensorFlow, and modern ML frameworks. Implements model serving, feature engineering, A/B testing, and monitoring. Use PROACTIVELY for ML model deployment, inference optimization, or production ML infrastructure.
World-class ML engineering skill for productionizing ML models, MLOps, and building scalable ML systems. Expertise in PyTorch, TensorFlow, model deployment, feature stores, model monitoring, and ML infrastructure. Includes LLM integration, fine-tuning, RAG systems, and agentic AI. Use when deploying ML models, building ML platforms, implementing MLOps, or integrating LLMs into production systems.
Expert in Langfuse - the open-source LLM observability platform. Covers tracing, prompt management, evaluation, datasets, and integration with LangChain, LlamaIndex, and OpenAI. Essential for debugging, monitoring, and improving LLM applications in production. Use when: langfuse, llm observability, llm tracing, prompt management, llm evaluation.
Use this skill for reinforcement learning tasks including training RL agents (PPO, SAC, DQN, TD3, DDPG, A2C, etc.), creating custom Gym environments, implementing callbacks for monitoring and control, using vectorized environments for parallel training, and integrating with deep RL workflows. This skill should be used when users request RL algorithm implementation, agent training, environment design, or RL experimentation.
Managed vector database for production AI applications. Fully managed, auto-scaling, with hybrid search (dense + sparse), metadata filtering, and namespaces. Low latency (<100ms p95). Use for production RAG, recommendation systems, or semantic search at scale. Best for serverless, managed infrastructure.
Deploy, evaluate, fine-tune, and manage Foundry agents end-to-end with azd: hosted agent scaffold/run/deploy, prompt agent create, batch eval, continuous eval, prompt optimizer, Agent Optimizer scaffold, agent.yaml, dataset curation from traces, model fine-tuning (SFT/DPO/RFT). USE FOR: azd ai agent, azd provision/deploy, deploy agent, hosted agent, create agent, add tool to agent, invoke agent, evaluate agent, continuous eval, continuous monitoring, agent CI/CD, optimize prompt, improve prompt, optimize agent instructions, agent optimizer, deploy model, Foundry project, RBAC, role assignment, permissions, quota, capacity, region, troubleshoot agent, deployment failure, AI Services, create Foundry resource, provision, knowledge index, customize deployment, onboard, availability, fine-tune, SFT, DPO, RFT, training-data, grader, distillation, fine-tuned model, large file upload. DO NOT USE FOR: Azure Functions, App Service, general Azure deploy (use azure-deploy), general Azure prep (use azure-prepare).
Cost optimization patterns for LLM API usage — model routing by task complexity, budget tracking, retry logic, and prompt caching.
Take wshobson/spark-memory-thermal-ops from the repository into ~/.claude/skills for personal
use, or into .claude/skills inside a project.
The agent identifies a skill by the name field in its header. Two skills with the
same name cannot sit side by side — one of them will be ignored.