-
Notifications
You must be signed in to change notification settings - Fork 444
CI: add vLLM + NIXL EP test to the EP CI job #2154
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
Merged
lishapira
merged 12 commits into
ai-dynamo:main
from
lishapira:nixl_ep_ci_vllm_precompiled
Aug 31, 2026
Merged
Changes from all commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
0485570
ci: add vLLM Elastic EP integration test
lishapira 2705c01
ci: fix vLLM Elastic EP UCX version mismatch
lishapira c2873f7
ci: inherit NIXL UCX for vLLM EP test
lishapira 4d43714
ci: isolate vLLM EP from the SPCx UCX runtime
lishapira 3fda402
ci: use NVLink UCX settings for vLLM EP
lishapira 8d9f9d5
ci: avoid FlashInfer JIT in vLLM EP test
lishapira a16fb16
ci: pass vLLM attention backend to server
lishapira bc1f686
ci: simplify vLLM EP test integration
lishapira 1d5b56e
ci: test NIXL EP with latest vLLM release
lishapira 48ccf3d
ci: reduce vLLM Elastic EP test runtime
lishapira d64f372
ci: document NIXL_PYTHON scope for EP builds
lishapira 77630e7
ci: document CUTLASS_MLA TODO and allow rc_gda
lishapira File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
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
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
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,26 @@ | ||
| diff --git a/tests/distributed/test_elastic_ep.py b/tests/distributed/test_elastic_ep.py | ||
| --- a/tests/distributed/test_elastic_ep.py | ||
| +++ b/tests/distributed/test_elastic_ep.py | ||
| @@ -175,6 +175,9 @@ def _base_serve_args(dp_size: int = 2, enforce_eager: bool = False) -> list[str | ||
| "--enable-expert-parallel", | ||
| "--all2all-backend", | ||
| - "allgather_reducescatter", | ||
| + os.getenv( | ||
| + "VLLM_TEST_ELASTIC_EP_ALL2ALL_BACKEND", | ||
| + "allgather_reducescatter", | ||
| + ), | ||
| "--enable-elastic-ep", | ||
| "--enable-eplb", | ||
| "--eplb-config.num_redundant_experts", | ||
| @@ -204,4 +207,8 @@ def _base_serve_args(dp_size: int = 2, enforce_eager: bool = False) -> list[str | ||
| - return args | ||
| - | ||
| - | ||
| + attention_backend = os.getenv("VLLM_ATTENTION_BACKEND") | ||
| + if attention_backend: | ||
| + args.extend(["--attention-backend", attention_backend]) | ||
| + | ||
| + return args | ||
| + | ||
| + | ||
| @pytest.mark.parametrize( |
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
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
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.