-
-
Notifications
You must be signed in to change notification settings - Fork 13.4k
[CI] Reduce Blackwell Fusion test runtime by filtering tests and only run all tests in nightly #28074
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[CI] Reduce Blackwell Fusion test runtime by filtering tests and only run all tests in nightly #28074
Changes from 2 commits
9cb815d
d789a5c
b1c0671
c937253
3bd55f7
24f8274
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -471,7 +471,7 @@ steps: | |
| - tests/compile | ||
| commands: | ||
| - pytest -v -s compile/test_full_graph.py | ||
| - pytest -v -s compile/test_fusions_e2e.py | ||
| - pytest -v -s compile/test_fusions_e2e.py -k "-quant_fp8" | ||
|
|
||
| - label: Cudagraph test | ||
| timeout_in_minutes: 20 | ||
|
|
@@ -925,6 +925,27 @@ steps: | |
| - pytest -v -s tests/compile/test_silu_mul_quant_fusion.py | ||
| # this runner has 2 GPUs available even though num_gpus=2 is not set | ||
| - pytest -v -s tests/compile/test_fusion_all_reduce.py | ||
| - pytest -v -s tests/compile/test_fusions_e2e.py::test_tp2_attn_quant_allreduce_rmsnorm -k "True and Llama-3.1 and -quant_fp8 and -rms_norm" | ||
|
||
|
|
||
ProExpertProg marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| - label: Blackwell Fusion E2E Tests # 30 min | ||
| timeout_in_minutes: 40 | ||
| working_dir: "/vllm-workspace/" | ||
| gpu: b200 | ||
| optional: true | ||
| num_gpus: 2 | ||
| source_file_dependencies: | ||
| - csrc/quantization/fp4/ | ||
| - vllm/model_executor/layers/quantization/utils/flashinfer_utils.py | ||
| - vllm/v1/attention/backends/flashinfer.py | ||
| - vllm/compilation/ | ||
| # can affect pattern matching | ||
| - vllm/model_executor/layers/layernorm.py | ||
| - vllm/model_executor/layers/activation.py | ||
| - vllm/model_executor/layers/quantization/input_quant_fp8.py | ||
| - tests/compile/test_fusions_e2e.py | ||
| commands: | ||
| - nvidia-smi | ||
| # Run all e2e fusion tests | ||
| - pytest -v -s tests/compile/test_fusions_e2e.py | ||
|
|
||
| - label: Blackwell GPT-OSS Eval | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.