-
-
Notifications
You must be signed in to change notification settings - Fork 19.8k
[ROCm][CI] Stage C mirrors #42793
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
[ROCm][CI] Stage C mirrors #42793
Changes from 1 commit
15bb9a4
bdfa49f
376e8cd
540a781
d110fee
0e7af5f
42e00a6
31aa985
d344e42
50d14d0
137ded3
1e778e1
7122d4d
df36db6
a9d4442
9e7698d
31ef59c
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 |
|---|---|---|
|
|
@@ -2,8 +2,8 @@ group: Attention | |
| depends_on: | ||
| - image-build | ||
| steps: | ||
| - label: V1 attention (H100) | ||
| key: v1-attention-h100 | ||
| - label: V1 attention (H100-MI300) | ||
| key: v1-attention-h100-mi300 | ||
| timeout_in_minutes: 30 | ||
| device: h100 | ||
| source_file_dependencies: | ||
|
|
@@ -13,6 +13,20 @@ steps: | |
| - tests/v1/attention | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The parent step's - tests/v1/attention
- vllm/_aiter_ops.py
- vllm/envs.py
- vllm/platforms/rocm.py |
||
| commands: | ||
| - pytest -v -s v1/attention | ||
| mirror: | ||
| amd: | ||
| device: mi300_1 | ||
| timeout_in_minutes: 70 | ||
| depends_on: | ||
| - image-build-amd | ||
| source_file_dependencies: | ||
| - vllm/config/attention.py | ||
| - vllm/model_executor/layers/attention | ||
| - vllm/v1/attention | ||
| - tests/v1/attention | ||
| - vllm/_aiter_ops.py | ||
| - vllm/envs.py | ||
| - vllm/platforms/rocm.py | ||
|
|
||
| - label: V1 attention (B200) | ||
| key: v1-attention-b200 | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -149,3 +149,21 @@ steps: | |
| - vllm/model_executor/models/whisper.py | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The parent step is missing several dependencies that are explicitly required by the AMD mirror (e.g., - vllm/model_executor/models/whisper.py
- vllm/model_executor/layers/
- vllm/v1/attention/backends/
- vllm/v1/attention/selector.py
- vllm/_aiter_ops.py
- vllm/platforms/rocm.py
- vllm/model_executor/model_loader/ |
||
| commands: # LMEval | ||
| - pytest -s entrypoints/openai/correctness/ | ||
| mirror: | ||
| amd: | ||
| device: mi300_1 | ||
| depends_on: | ||
| - image-build-amd | ||
| source_file_dependencies: | ||
| - csrc/ | ||
| - vllm/entrypoints/openai/ | ||
| - vllm/model_executor/models/whisper.py | ||
| - vllm/model_executor/layers/ | ||
| - vllm/v1/attention/backends/ | ||
| - vllm/v1/attention/selector.py | ||
| - vllm/_aiter_ops.py | ||
| - vllm/platforms/rocm.py | ||
| - vllm/model_executor/model_loader/ | ||
| commands: | ||
| - bash ../tools/install_torchcodec_rocm.sh || exit 1 | ||
| - pytest -s entrypoints/openai/correctness/ | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -36,6 +36,21 @@ steps: | |
| - tests/v1/e2e/spec_decode/ | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
| commands: | ||
| - pytest -v -s v1/e2e/spec_decode -k "speculators or mtp_correctness" | ||
| mirror: | ||
| amd: | ||
| device: mi300_1 | ||
| timeout_in_minutes: 65 | ||
| depends_on: | ||
| - image-build-amd | ||
| source_file_dependencies: | ||
| - vllm/v1/spec_decode/ | ||
| - vllm/v1/worker/gpu/spec_decode/ | ||
| - vllm/model_executor/model_loader/ | ||
| - vllm/v1/sample/ | ||
| - vllm/model_executor/layers/ | ||
| - vllm/transformers_utils/configs/speculators/ | ||
| - tests/v1/e2e/spec_decode/ | ||
| - vllm/platforms/rocm.py | ||
|
|
||
| - label: Spec Decode Speculators + MTP Nightly B200 | ||
| key: spec-decode-speculators-mtp-nightly-b200 | ||
|
|
@@ -60,6 +75,20 @@ steps: | |
| - tests/v1/e2e/spec_decode/ | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
| commands: | ||
| - pytest -v -s v1/e2e/spec_decode -k "ngram or suffix" | ||
| mirror: | ||
| amd: | ||
| device: mi300_1 | ||
| timeout_in_minutes: 65 | ||
| depends_on: | ||
| - image-build-amd | ||
| source_file_dependencies: | ||
| - vllm/v1/spec_decode/ | ||
| - vllm/v1/worker/gpu/spec_decode/ | ||
| - vllm/model_executor/model_loader/ | ||
| - vllm/v1/sample/ | ||
| - vllm/model_executor/layers/ | ||
| - tests/v1/e2e/spec_decode/ | ||
| - vllm/platforms/rocm.py | ||
|
|
||
| - label: Spec Decode Draft Model | ||
| key: spec-decode-draft-model | ||
|
|
@@ -71,6 +100,20 @@ steps: | |
| - tests/v1/e2e/spec_decode/ | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
| commands: | ||
| - pytest -v -s v1/e2e/spec_decode -k "draft_model or no_sync or batch_inference" | ||
| mirror: | ||
| amd: | ||
| device: mi300_1 | ||
| timeout_in_minutes: 50 | ||
| depends_on: | ||
| - image-build-amd | ||
| source_file_dependencies: | ||
| - vllm/v1/spec_decode/ | ||
| - vllm/v1/worker/gpu/spec_decode/ | ||
| - vllm/model_executor/model_loader/ | ||
| - vllm/v1/sample/ | ||
| - vllm/model_executor/layers/ | ||
| - tests/v1/e2e/spec_decode/ | ||
| - vllm/platforms/rocm.py | ||
|
|
||
| - label: Spec Decode Draft Model Nightly B200 | ||
| key: spec-decode-draft-model-nightly-b200 | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.