원클릭으로
vllm-v1-nav
Navigate vLLM V1 source code. Quick reference for subsystem locations, key classes, and data flow.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Navigate vLLM V1 source code. Quick reference for subsystem locations, key classes, and data flow.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Validate GRPO training configs against 36 cross-framework bug avoidance rules (19 MUST DO + 17 MUST NOT). Covers 7 frameworks (DeepSpeed, Megatron, vLLM, verl, SGLang, rLLM, MindIE), 7 pattern classes, and MoE NaN avoidance.
Debug and diagnose GRPO training issues across verl, Megatron, DeepSpeed, and RTX 4090. Symptom-to-bug mapping, NaN debugging, Muon clipping avoidance, and CUDA stream safety analysis.
Navigate SGLang source code. Quick reference for subsystem locations, key classes, and data flow.
Navigate mechanistic interpretability concepts, tools, and SAE architectures. Quick reference for SAE variants, feature steering methods, circuit discovery, and trust calibration.
Navigate model merging strategies and theory. Quick reference for Task Arithmetic, DARE, TIES merging methods, alpha selection, and RTX 4090 validation results.
Navigate RDMA, InfiniBand, RoCE v2, AI cluster networking topology, and NCCL transport internals. Quick reference for Verbs API, QP/CQ/SRQ/MR, fat-tree/rail-aligned topology, DCQCN congestion control, GPUDirect RDMA, and cluster configuration.
| name | vllm-v1-nav |
| description | Navigate vLLM V1 source code. Quick reference for subsystem locations, key classes, and data flow. |
| triggers | ["vllm v1 source","vllm architecture","vllm code location","vllm scheduler","vllm model runner","vllm attention","vllm kv cache","vllm weight loading","vllm engine core","vllm sampling","vllm spec decode","vllm ubatch","vllm DBO"] |
Executor → Worker → GPUModelRunner → Model
vllm/v1/core/sched/scheduler.pynotebook/vllm/vllm-v1-scheduler.md + notebook/projects/vllm-v1-scheduler-reading.mdnum_computed_tokensvllm/v1/worker/gpu_model_runner.pynotebook/vllm/vllm-v1-model-runner.md + notebook/projects/vllm-v1-executor-reading.mdexecute_model pipelinevllm/v1/attention/backends/ (10+ backends)notebook/vllm/vllm-v1-attention-system.md + notebook/projects/vllm-mla-backend-reading.mdvllm/v1/core/kv_cache_manager.py + 5 supporting files (~11,700 lines total)notebook/vllm/vllm-v1-kv-cache-manager.md + notebook/projects/vllm-v1-kv-cache-manager-reading.mdvllm/v1/worker/gpu_model_runner.py (loading section)notebook/vllm/vllm-v1-weight-loading.md + notebook/projects/vllm-weight-loading-reading.mdvllm/v1/engine/engine_core.pynotebook/projects/vllm-engine-core-reading.mdstep() loop (schedule→execute→sample→update), EngineCoreProc busy loopvllm/v1/sample/sampler.pynotebook/vllm/vllm-v1-sampling-pipeline.md + notebook/projects/vllm-sampling-pipeline-reading.mdvllm/v1/spec_decode/notebook/vllm/vllm-v1-spec-decode.md + notebook/projects/vllm-spec-decode-reading.mdvllm/v1/worker/gpu_model_runner.py (ubatch section)notebook/vllm/vllm-v1-ubatch-mechanism.mdvllm/v1/engine/async_llm.pynotebook/projects/vllm-async-engine-frontend-reading.mdvllm/v1/engine/notebook/projects/vllm-data-parallel-reading.mdvllm/quantization/notebook/projects/vllm-quantization-pipeline-reading.mdvllm/v1/worker/notebook/projects/vllm-cuda-graph-reading.mdvllm/lora/notebook/projects/vllm-lora-serving-reading.mdvllm/v1/spec_decode/ + vllm/distributed/kv_transfer/notebook/projects/vllm-pd-disaggregation-reading.md + notebook/projects/vllm-kv-transfer-connector.mdUser Request
→ AsyncLLM (asyncio+ZMQ)
→ EngineCore.step()
→ Scheduler.schedule() → SchedulerOutput
→ GPUModelRunner.execute_model() → ModelOutput
→ Sampler.sample() → SamplerOutput
→ RequestOutput → User