Add vllm-pytorch-ci-triage skill#8045
Closed
atalman wants to merge 3 commits into
Closed
Conversation
Adds a Claude Code skill that automates triage of failing vLLM Buildkite CI runs for PyTorch version-bump PRs (e.g. vLLM #40077 for torch 2.12.0 + triton 3.7.0). The workflow: - pulls the failing build's job list and filters to true hard failures (excluding soft_failed and waiting_failed cascades), - compares each failing job against recent main "Full CI run - nightly/daily" builds to drop pre-existing failures, - classifies remaining failures by root-cause signature (Inductor MetaProxy, triton PassManager, AOT cache pickling, CUDA OOM / contention, custom-op fake-kernel stride mismatch, accuracy drift, etc.) and routes them to pytorch/pytorch vs vllm-project/vllm, - drafts upstream issues with reproducibility tables, environment blocks, and tracebacks, then posts them under an umbrella issue. Derived from the multi-week triage that produced umbrella pytorch/pytorch#180899. Signed-off-by: atalman <atalman@meta.com>
|
@atalman is attempting to deploy a commit to the Meta Open Source Team on Vercel. A member of the Team first needs to authorize it. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Adds a Claude Code skill that automates end-to-end triage of failing vLLM Buildkite CI runs for PyTorch version-bump PRs.
Derived from the multi-week triage of vLLM PR vllm-project/vllm#40077 (torch 2.12.0 + triton 3.7.0), which produced umbrella issue pytorch/pytorch#180899 with 25+ tracked sub-issues over a series of daily runs.
What the skill does
soft_failed=True,waiting_failed, and infra-aborted jobs).Full CI run - nightly/dailybuilds to drop pre-existing failures, with the caveat that infra-killed main jobs are not a valid baseline (must be retried first).Notable lessons baked in
state=failed+soft_failed=Trueis non-blocking — always filter both.Engine core initialization failed. See root cause above.is a red herring — the actual exception is several lines up in the EngineCore worker output.assert_size_stridefailures ontorch.ops.vllm.<X>.defaultare almost always vLLM-side fake-kernel bugs, not torch regressions — inspect thedirect_register_custom_op(... fake_impl=...)registration first.exit_status=125+nvidia-container-cli: device error / driver rpc error: timed outis agent infra, not a regression — recommend rerun.while read(inline$(cat …)silently produces 0-byte log files).[vllm] [<sub-area tag>] <concise root cause>. Always include[vllm]from the start (post-hoc edits are noisy).Test plan
This skill is invoked manually by Claude Code when the user points at a failing Buildkite build. Validation has been the actual triage of vLLM #40077 over 16+ daily runs since 2026-04-20:
No automated test harness exists for Claude skills today; the skill is exercised through the live triage workflow.
File added
.claude/skills/vllm-pytorch-ci-triage/SKILL.md(379 lines)This follows the same convention as the four existing skills under
.claude/skills/(each is a single-fileSKILL.mdwith YAML frontmatter).