| name | debug-agent-locate-kernel |
| description | Identify which GPU kernel is faulting/hanging in ATOM via rocm-debug-agent (for faults/asserts) or rocgdb (for silent livelocks). debug-agent dumps wave registers + faulting PC + (with --save-code-objects) disassembled code object on memory faults / ASSERT_TRAP. rocgdb attaches to a live process and lists in-flight `info dispatches` + HSA `info queues` — works when the kernel isn't faulting but just stuck (e.g. atomic-counter deadlock). Use when: server crashes with "Memory access fault by GPU node-N", server hangs with GPU at 100% but no token output, kernel asserting `s_trap`, or `HIP_LAUNCH_BLOCKING=1` makes a hang vanish. Do NOT use for: numerical bugs (use dump-bisect-debug), compile errors, OOM. |
Tool selection: debug-agent vs rocgdb
| Symptom | Use first |
|---|
Memory access fault by GPU node-N / MEMORY_VIOLATION / ASSERT_TRAP in log | debug-agent — only it dumps wave regs + faulting PC + code-object disassembly |
| Silent livelock (GPU 100%, no fault, no log output) | rocgdb — debug-agent never fires (no trap event); rocgdb's info dispatches lists in-flight kernels directly |
HIP_LAUNCH_BLOCKING=1 makes hang disappear (async race) | rocgdb first to name the stuck kernel(s); debug-agent only if you need wave-level detail later |
| Need disassembly / per-lane register values | debug-agent (rocgdb doesn't go to that depth on AMD) |
The two tools cannot be combined. debug-agent loads HSA_TOOLS_LIB=librocm-debug-agent.so.2 which occupies the HSA debugger hook — rocgdb attached to the same process reports "No queues / No dispatches are currently active" because the agent has the slot. To use rocgdb, launch the server with plain start_atom_server.sh (no run_debug_agent.sh wrapper).
When to use
Symptoms that point to this skill:
Memory access fault by GPU node-N (Agent handle: 0x...) on address 0x... in atom_server.log
- Server alive (
curl /v1/models returns) but rocm-smi --showuse shows 100% GPU and no Engine Core: output send for >30s — silent kernel hang / livelock
- Workers stuck at
torch.cuda.synchronize() per py-spy dump --pid <rank-pid> — prior kernel never completes
HIP_LAUNCH_BLOCKING=1 makes the bug disappear → you have an async race; agent will tell you which kernel
- Reproduces only at certain batch shapes (e.g. MTP-3 + long prefill)
Do NOT use this skill for: precision bugs (use [[dump-bisect-debug]]), build/compile errors (use /build-fix), OOM.
Required tools (verify before starting)
ls /opt/rocm/lib/librocm-debug-agent.so.2
ls /opt/rocm/bin/rocgdb
ls /opt/rocm/llvm/bin/llvm-objdump
which py-spy && py-spy --version
If any missing: install rocm-debug-agent, rocgdb, llvm, pip install py-spy. Stop here if not available.
Critical pre-flight
ulimit -c 0 — disables gpucore dumps. ROCm fault dumps gpucore files of 30-50 GB each per rank; on 8-GPU TP this fills disk in seconds. The launcher script sets this for you.
--enforce-eager / --level 0 — optional fallbacks, not required. Try the default launch first; the debug agent runs fine under hipgraph in most cases. Only reach for these flags when symptoms point at graph mode:
--enforce-eager disables CUDAGraph capture. Try this when the agent reports faults that don't reproduce in eager mode, or when capture/replay itself crashes under the agent's no-caching-allocator behavior.
--level 0 disables Inductor. Try this on AMD when you hit the cluster_dims autotune bug or other Inductor-side crashes during warmup.
- They are independent — apply only the one(s) the symptom points at. The launcher script does NOT inject either; pass via
EXTRA_ARGS when you want them.
- Clean GPU state — kill any prior
spawn_main/openai_server processes. Stale KFD process entries (rocm-smi --showpids showing UNKNOWN PIDs holding VRAM) cause the next launch to OOM at NCCL barrier. scripts/start_atom_server.sh does the standard cleanup.
- Model-specific env — pass on the command line or export before calling. Examples:
- V4-Pro requires
ATOM_USE_TRITON_MOE=1
- Kimi-K2.5-MXFP4 requires
--trust-remote-code + HSA_NO_SCRATCH_RECLAIM=1
Launcher scripts (in repo)
| Script | Purpose |
|---|
scripts/start_atom_server.sh [MODEL] [TP] [PORT] [EXTRA_ARGS...] | Standard launcher: clears GPU, clears compile cache, backgrounds server, redirects to atom_server.log. |
scripts/stop_atom_server.sh | SIGTERM atom.entrypoints, force-kill spawn workers, wait for VRAM release. |
scripts/run_debug_agent.sh [MODEL] [TP] [PORT] [EXTRA_ARGS...] | Wraps start_atom_server.sh with HSA_TOOLS_LIB=librocm-debug-agent.so.2 + --save-code-objects. Server output goes to atom_server.log; code objects land in /app/logs_claude/debug_run/. |
scripts/run_debug_agent.sh --simple [MODEL] [TP] [EXTRA_ARGS...] | Same wrapper but invokes start_simple_inference.sh (offline, no port). Default log: /app/logs_claude/simple_inference_debug_agent.log (override via LOG_FILE=). Use for offline batch repros (e.g. V4 MTP-3 prefill hang). |
scripts/wait_server_ready.sh [PORT] [MAX_MIN] [POLL] [LOG_FILE] | Poll /v1/models until ready or startup error detected. Allow MAX_MIN ≥ 5 under the agent (3-5× slower than normal). |
Workflow
Step 1: Reproduce under the agent
bash scripts/stop_atom_server.sh
ATOM_USE_TRITON_MOE=1 \
bash scripts/run_debug_agent.sh \
/data/DeepSeek-V4-Pro 8 8000 \
--method mtp --num-speculative-tokens 3 &
bash scripts/wait_server_ready.sh 8000 5 30
cd /app/logs_claude && python <repro_script>.py
Server load is 3-5× slower under the debug agent. Expect ready at 2-4 min, repro at 30-90s after first big batch.
Step 2: Find the fault wave dump
grep -E "stopped, reason|Memory access fault|MEMORY_VIOLATION|Disassembly" \
/app/logs_claude/atom_server.log | head -20
Each fault produces a block like:
wave_27876: pc=0x7f20f5e534c4 (kernel_code_entry=0x7f20f5e52900 <FQN OF KERNEL>) (stopped, reason: <REASON>)
scalar registers: ...
vector registers: ... ← v0..v? show per-lane values; v6 often holds index values being processed
trap registers: ...
general registers: pc=...
Disassembly for function <FQN>:
code object: memory://<pid>#offset=<hex>&size=<bytes>
loaded at: [<base>-<top>]
=> <pc>: <faulting instruction>
The <FQN> is the demangled kernel name. That's the suspect kernel. Common cases:
| Kernel name fragment | What it actually is |
|---|
at::native::index_copy_kernel_impl<OpaqueType<N>> | Tensor.index_copy_(dim, idx, src) for dtype with N-byte size (4=int32/float32, 8=int64/float64) |
at::native::scatter_kernel | Tensor.scatter_(dim, idx, src) |
at::native::index_kernel_impl | Advanced indexing READ tensor[idx] |
_swa_write_kernel / _update_compressor_states_kernel | ATOM Triton kernel — name in state_writes.py |
Step 3: Read the trap reason
| reason | what it means |
|---|
ASSERT_TRAP | Kernel hit s_trap 2 — almost always a CUDA_KERNEL_ASSERT(...) failed device-side. For PyTorch index_copy_/scatter_ this is the bound check 0 <= idx < self.size(dim). Recompile PyTorch with TORCH_USE_HIP_DSA=1 for the assert text — usually unavailable, infer from kernel name. |
MEMORY_VIOLATION | Real OOB load/store. The pc instruction is the access; back-trace the address from s_*/v_* registers. |
INVALID_OPCODE | Corrupted code object — usually an allocator stomp on the kernel binary (very rare). |
Step 4: Disassemble the code object
The trap dump points to code object: memory://<pid>#offset=<hex>&size=<bytes>. The agent saved it under /app/logs_claude/debug_run/. Find it:
ls /app/logs_claude/debug_run/ | grep "<pid>" | grep "size_<bytes>"
Disassemble:
/opt/rocm/llvm/bin/llvm-objdump --disassemble-all \
/app/logs_claude/debug_run/<file> > /app/logs_claude/fault.s
grep -nE "<faulting-pc-low-bits>|s_trap|s_endpgm" /app/logs_claude/fault.s | head -20
The PC's surrounding instructions tell you what the kernel was doing. For s_trap 2 followed by s_endpgm you've confirmed an assert (PyTorch CUDA_KERNEL_ASSERT lowering). For random other instructions it's a true memory violation — read the address from registers (e.g. v[0:1] typically holds the destination address being stored).
Step 5: Verify it's actually that kernel (PC can lie)
Wave debugger PC reports can be off when the wave is mid-flight or when the trap fires from a sibling wave. Especially common with Triton — a swa_write trap might be a downstream kernel's fault attributed back. Cross-check:
- Does the trap reproduce only when this code path runs? Disable the call (comment out in Python), retest.
- Does
HIP_LAUNCH_BLOCKING=1 make it disappear? Then it's an async race, not a static OOB; the PC kernel is the victim, not necessarily the root cause. Bisect for the racer (next step).
- Does inserting
torch.cuda.synchronize() right before this kernel call eliminate the trap? Then root cause is upstream of this point on the same stream.
Step 6: Bisect the racer (when PC is racer-victim)
- Comment out one suspect call at a time. The one whose absence fixes it is the racer (or one of the racing parties).
- If neither alone but both together fail: the race is between them sharing storage / launch slot. Add
torch.cuda.synchronize() between them as a workaround, but THIS IS NOT A SHIPPABLE FIX — see Step 7.
py-spy dump --pid <rank-pid> on stuck ranks: shows the Python frame waiting on the GPU. If it's at your inserted synchronize(), the racer is upstream of that line.
Step 7: Real fix vs workaround
Per [[atom-patterns]] / DeepSeek V4 guidance, do not ship cuda.synchronize() workarounds without root-causing the race — they mask one workload and surface a worse hang on a larger one. Common real fixes:
| Symptom | Real fix |
|---|
Race involves freshly-allocated transient tensors (e.g. from torch.where, arange, .reshape, .to(int64)) | Pre-allocate them in _alloc_v4_metadata_buffers (ATOM) or as module-level scratch. Eliminates allocator churn entirely. |
Multiple index_copy_ / scatter_ in sequence | Replace with a single Triton kernel that writes all destinations once. |
| Per-fwd kernel reads stale forward_vars from prior fwd | Switch H2D path off prep_stream to default stream (matches ATOM prepare_mtp_decode v2 pattern). |
| Cross-rank inconsistency causes one rank to OOB | Ensure all ranks see identical batch shapes before launching kernel; check cu_seqlens_q / state_slot_mapping parity. |
rocgdb workflow (for silent livelocks — when debug-agent gives no wave dump)
debug-agent only fires on MEMORY_VIOLATION / ASSERT_TRAP etc. — for a silent livelock (GPU stuck at 100% with no kernel making progress, no fault, no log), it sits idle and gives you nothing. rocgdb fills that gap: attached to a live worker, it can enumerate in-flight HSA dispatches and queue head/tail pointers, naming the stuck kernel directly.
Pre-flight (rocgdb only)
which rocgdb
rocgdb --version | head -3
The "Symbol PySlice_Type has different size" warnings on attach are benign — Python symbol size mismatch between rocgdb's bundled Python and the venv. Wave-debug commands still work.
Step R1: Launch WITHOUT debug-agent
Use plain start_atom_server.sh — NOT run_debug_agent.sh. debug-agent's HSA_TOOLS_LIB occupies the HSA debugger hook and rocgdb will report "No agents / No dispatches / No queues are currently active" because the agent has the slot. Run only ONE of the two tools at a time on the same process.
bash scripts/stop_atom_server.sh
<MODEL_ENV> bash scripts/start_atom_server.sh <MODEL> <TP> <PORT> <EXTRA_ARGS...> &
bash scripts/wait_server_ready.sh <PORT> 10 5 /app/logs_claude/atom_server.log
<run workload that triggers the hang>
Step R2: Pick the right worker PID (NOT the dispatcher)
ATOM at TP=N has 1 openai_server + 1 spawn dispatcher + N spawn workers. Only the workers hold GPU queues — attaching to the dispatcher returns "No dispatches" (it has no GPU work).
ps -ef | grep spawn_main | grep -v grep
WORKER_PID=<one of the worker PIDs>
Step R3: Dump GPU state non-interactively
cat > /tmp/rocgdb_cmds.txt <<'EOF'
set pagination off
set confirm off
set logging file /app/logs_claude/rocgdb_dump.txt
set logging overwrite on
set logging on
echo === info agents ===\n
info agents
echo \n=== info dispatches ===\n
info dispatches
echo \n=== info queues ===\n
info queues
echo \n=== main thread bt ===\n
bt 30
detach
quit
EOF
timeout 90 rocgdb -p $WORKER_PID -x /tmp/rocgdb_cmds.txt -batch
detach (not just quit) is required or the worker stays SIGSTOP'd after rocgdb exits — kills your repro and leaves zombies.
Step R3.5: Anchor on the stuck kernel name + PC — BEFORE any theory
This is the single most important step, and the easiest to skip. info dispatches already prints the demangled kernel name of the in-flight dispatch, and the AMDGPU wave backtrace prints the exact stuck PC inside that kernel:
timeout 90 rocgdb -p $WORKER_PID -batch \