ci: decouple stage and runner for cuda registry#25197
Merged
Merged
Conversation
Contributor
|
Warning You have reached your daily quota limit. Please wait up to 24 hours and I will start processing your requests again! |
Collaborator
Author
|
/tag-and-rerun-ci |
3 tasks
1am9trash
pushed a commit
that referenced
this pull request
May 15, 2026
kpham-sgl
added a commit
that referenced
this pull request
May 17, 2026
Per #25197, stage-shaped per-commit CUDA suites must register via stage=/runner_config= kwargs; the legacy suite= form is reserved for nightly/stress/weekly and non-stage backends. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
5 tasks
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.
Split
register_cuda_ci(..., suite="stage-X-test-Y", ...)into two independent fieldsstage="stage-X"andrunner="Y". Schema inci_register.pyaccepts either style —suite=is preserved for nightly, AMD, CPU, NPU, and weekly/stress/full-* legacy buckets.CIRegistrygains aneffective_suiteproperty that auto-derivesf"{stage}-test-{runner}"when the pair is set, otherwise returnssuite. All downstream consumers (run_suite.py:filter_tests,scripts/ci/utils/compute_partitions.py) updated to readeffective_suite; workflow yaml unchanged.Migration scope: 258
register_cuda_cicalls across 256 files. Only suite names matching^stage-[abc]-test-are split; nightly-, stress, weekly- stay onsuite=.Mechanical refactor + verification script: https://gist.github.com/hnyls2002/932b17106b850029ff4170c539b07c4a
Verified by parsing the registry with the AST parser before and after migration: 954
CIRegistryentries identical moduloeffective_suitereconstruction.compute_partitions.pyJSON output byte-identical before/after.