spark-training-gotchas
Preflight and diagnose the ten known failure modes for ML training on NVIDIA DGX Spark
Install / Use
npx skills add wshobson/agents --skill spark-training-gotchasInstalls into whichever agent you are using.
SKILL.md
Installable skill definition
Quality Score
Category
Development & EngineeringSupported Platforms
Tags
Our assessment of spark-training-gotchas
spark-training-gotchas scores 93/100 on our quality scale, 210th of 1,937 Development & Engineering skills we index (top 11%).
Its SKILL.md is 7.7 KB long, well organised into 15 sections with 3 code examples: a thorough specification that gives an agent plenty to work with.
With 39,920 GitHub stars, it is one of the more widely adopted skills in the catalogue.
Maintenance, license and trust
- The repository was last updated 5 days ago, so spark-training-gotchas is actively maintained.
- It is released under the MIT license, a permissive license that allows use, modification and commercial use with attribution.
- Its trust signals score 100/100, with no cautions. These come from repository metadata, not a code audit — read the skill file before letting an agent act on it.
Safety scan
No issues foundOur scan of the whole file found no instruction hijacking, hidden characters, credential access, data exfiltration or destructive commands. An AI review of the same text found nothing harmful.
AI review by kimi-k2.7-code on 2026-09-26. Automated pattern scan on 2026-09-25. It catches known dangerous patterns, not every risk — read a skill before letting an agent act on it.
spark-training-gotchas compared with similar skills
All 4 of these similar skills score higher than spark-training-gotchas; compare them before choosing.
| Skill | Score | Stars | Updated | Format |
|---|---|---|---|---|
| spark-training-gotchas (this skill)by wshobson | 93 | 39.9k | 5d ago | SKILL.md |
| ai-job-searchby MadsLorentzen | 100 | 44.0k | 4d ago | CLAUDE.md |
| claude-howtoby luongnv89 | 100 | 41.7k | 6d ago | CLAUDE.md |
| algorithmic-artby anthropics | 100 | 177.9k | 3d ago | SKILL.md |
| pptxby anthropics | 100 | 177.9k | 3d ago | SKILL.md |
Frequently asked questions
- How do I install spark-training-gotchas?
- Run
npx skills add wshobson/agents --skill spark-training-gotchas. The install tabs above show the steps for each supported agent. - Which AI agents does spark-training-gotchas work with?
- It is written for Universal, as a SKILL.md file. Other agents that read the same format can often use it too.
- Is spark-training-gotchas safe to use?
- Our scan of the whole file found no instruction hijacking, hidden characters, credential access, data exfiltration or destructive commands. An AI review of the same text found nothing harmful. It is MIT-licensed and scores 100/100 on trust signals. Skills are instructions an agent will follow, so read the file before installing it and do not approve commands you do not understand.
- Is spark-training-gotchas still maintained?
- The repository was last updated 5 days ago, so spark-training-gotchas is actively maintained.
Skill content
View source on GitHubname: spark-training-gotchas description: Preflight and diagnose the ten known failure modes for ML training on NVIDIA DGX Spark. Use when a training run on DGX Spark fails to start, OOMs below the 128GB limit, slows down mid-run, or before any multi-hour training job on GB10.
Spark Training Gotchas
DGX Spark's GB10 chip (Grace Blackwell, SM121, 128GB unified memory, aarch64) has ten recurring failure modes across launch, memory, thermals, bandwidth, and precision. Each is named G1–G10 so it can be checked by number — the numbering is load-bearing for tooling that runs these checks. Read this before a long run, not after hour six.
When to Use This Skill
- A training run fails to start, with an import error or a segfault that doesn't point at the real cause.
- A run OOMs while
nvidia-smistill shows headroom. - Throughput degrades partway through a run that started fine.
- Before any multi-hour or multi-epoch job on GB10.
- Wiring two Sparks together, before picking a parallelism strategy.
- Choosing between FP8 and NVFP4 for a Spark-hosted run.
Common Issues Quick Reference
| # | Symptom | Fix |
|---|---|---|
| G1 | undefined symbol / segfault | cu130 wheel or container |
| G2 | flash-attn wrong backend used | skip pip build; monkeypatch on NGC |
| G3 | OOM despite headroom | drop page cache |
| G4 | throughput drop / reboot | expect ~100W sustained cap |
| G5 | memory-bound step slow | budget 180–192 GB/s |
| G6 | cache evicted mid-run | one GPU server at a time |
| G7 | NVFP4 slower than FP8 | stay FP8 unless sm_121a |
| G8 | playbook fails outright | check upstream issues |
| G9 | env breaks after install | use a container |
| G10 | 2-Spark TP hangs | DDP/FSDP only, never TP |
The Ten Gotchas
G1: CUDA 12/13 ABI Mismatch
- SYMPTOM:
ImportError: undefined symbolnaming a CUDA function, or a segfault on the first.cuda()call. - CAUSE: most PyPI wheels link
libcudart.so.12; Spark ships CUDA 13. pip never checks CUDA ABI, so it surfaces only at import or first kernel launch. - CHECK:
references/gotcha-checks.mdG1 — the wheel's CUDA build tag. - FIX: reinstall from
download.pytorch.org/whl/cu130or use a matched container.
G2: flash-attn — Skip the pip Build, Watch Unsloth's Auto-Detect
- SYMPTOM:
pip install flash-attnstill fails/hangs. Unsloth may also silently train flash-attn over an explicitly requested SDPA. - CAUSE: no aarch64/sm_121 wheel for bare pip — but NGC
containers ship a working SM121 flash-attn, and Unsloth
auto-prefers it, dropping
attn_implementation="sdpa". - CHECK:
references/gotcha-checks.mdG2 — is flash-attn already present and working. - FIX: bare pip — skip flash-attn, use SDPA (unchanged). On
NGC — the only reliable override is the monkeypatch in
references/gotcha-checks.mdG2.
G3: UMA OOM Below 128GB
- SYMPTOM: OOM during model load/training while
nvidia-smistill reports free memory under the 128GB cap — or, on some setups,[N/A]outright instead of a number. - CAUSE: mmap and the CUDA allocator double-count pages during safetensors load; QLoRA can OOM earlier than bf16 since dequantization adds transient allocs.
- CHECK:
references/gotcha-checks.mdG3 — readfree -gand/proc/meminfo, notnvidia-smi. - FIX: drop the page cache with
sync; echo 3 > /proc/sys/vm/drop_caches— needs root, a between-run reset, not a mid-training step.
G4: Thermal Throttling
- SYMPTOM: throughput drops partway through a multi-hour run, or the box spontaneously reboots under sustained load.
- CAUSE: sustained power draw caps around 100W versus the 240W rated figure; long runs push into that ceiling and throttle or, sometimes, reboot.
- CHECK:
references/gotcha-checks.mdG4 — samplenvidia-smi --query-gpu=temperature.gpu,power.draw. - FIX: if power plateaus under 240W while temperature climbs, treat throttling as the cause; improve cooling or cap run length.
G5: Bandwidth Ceiling
- SYMPTOM: memory-bound workloads, decode-heavy RL loops especially, plateau well below expected throughput.
- CAUSE: 273 GB/s is a spec ceiling, not sustained; measured bandwidth runs 180–192 GB/s.
- CHECK:
references/gotcha-checks.mdG5 — observed step time vs. the measured range, not spec. - FIX: budget throughput from 180–192 GB/s; revise a plan built on the 273 GB/s figure.
G6: Global UMA Resource Contention
- SYMPTOM: a process's KV cache/weights get evicted mid-run silently, no OOM in its own logs.
- CAUSE: unified memory is
one global pool; an uncapped
or near-capacity process
competes with anything else
and can evict it. A small,
bounded workload doesn't — a
<4GB LoRA coexists fine
alongside vLLM capped at
gpu-memory-utilization<=0.5. - CHECK:
references/gotcha-checks.mdG6 — other GPU-resident processes and whether capped. - FIX: the one-heavy-job rule applies to uncapped or near-capacity workloads — cap or stop unrelated servers first. A small, capped workload need not stop.
G7: NVFP4 Slower Than FP8 on SM121
- SYMPTOM: switching an inference workload from FP8 to NVFP4 on Spark makes it slower, not faster.
- CAUSE: SM121 lacks
cvt.e2m1x2unless kernels targetsm_121a; NVFP4 runs ~32% slower without it. - CHECK:
references/gotcha-checks.mdG7 — capability reports(12, 1); does the build targetsm_121a? - FIX: stay on FP8 unless the build targets
sm_121a.
G8: Stale Official Playbooks
- SYMPTOM: following an official DGX Spark playbook still fails, with no local misconfiguration explaining it.
- CAUSE: official playbooks have shipped broken before; the stack moves faster than the docs.
- CHECK:
references/gotcha-checks.mdG8 — the playbook repo's recent issues. - FIX: check
github.com/NVIDIA/dgx-spark-playbooksissues before trusting a recipe for an expensive run.
G9: Container-First, Not Bare Pip
- SYMPTOM: a bare-pip environment that worked yesterday
breaks after an unrelated
pip install, or two "identical" environments behave differently. - CAUSE: bare pip lets Triton, xformers, and transformers drift independently; nothing pins them to GB10's SM121 target.
- CHECK:
references/gotcha-checks.mdG9 — container or bare pip? - FIX: prefer an NGC container (see
spark-environment-setupfor tag guidance) or Unsloth's container. If bare pip is unavoidable, follow the NVIDIA install order, including--no-depson Unsloth.
G10: Dual-Spark Is DDP/FSDP Only
- SYMPTOM: a tensor-parallel launch across two Sparks hangs, runs far slower than single-Spark, or errors out.
- CAUSE: ConnectX-7 is fast enough for gradient/parameter sync (DDP, FSDP) but too thin for TP's fine-grained traffic.
- CHECK:
references/gotcha-checks.mdG10 — the configured parallelism strategy. - FIX: on a two-Spark setup, choose DDP or FSDP, never tensor parallelism — TP is single-node only here.
Fast Triage
The cheapest checks to run before anything else:
python3 -c "import torch; print(torch.version.cuda)" # expect 13.x (G1); NGC builds have no +cu130 tag — that's not a failure
import torch; print(torch.cuda.get_device_capability()) # expect (12, 1) (G7)
{ [ -f /.dockerenv -o -f /run/.containerenv ] || grep -qE 'docker|containerd' /proc/1/cgroup; } 2>/dev/null && echo container || echo unknown # G9
assets/preflight.sh runs G1, G3, G4, G7, G9 and produces one
output line per gotcha in a fixed format: G-number first, then
PASS/FAIL/WARN where automatable, SKIP when unavailable, or
INFO: for a raw reading (G3, G4). Full commands:
references/gotcha-checks.md. See also
spark-environment-setup for the environment assumed working.
Related Skills
ai-job-search
44.0kThe job search that runs on your machine. AI job application framework built on Claude Code: evaluate postings, tailor CVs, write cover letters, prep interviews. Fork it and own it.
claude-howto
41.7kA visual, example-driven guide to Claude Code — from basic concepts to advanced agents, with copy-paste templates that bring immediate value.
algorithmic-art
177.9kCreating algorithmic art using p5.js with seeded randomness and interactive parameter exploration. Use this when users request creating art using code, generative art, algorithmic art, flow fields, or particle systems.
pptx
177.9kUse this skill any time a .pptx or .potx file is involved in any way — as input, output, or both. This includes: creating slide decks, pitch decks, or presentations; reading, parsing, or extracting text from any .pptx or .potx file (even if the extracted content will be used elsewhere, like in an em…
Languages
Trust signals
From repository metadata: license, adoption, age and documentation. Not a code audit — see the Safety scan above for what the skill file itself contains.
