Skip to content

Commit d80b0cc

Browse files
authored
[CI] Fix test on pyhccl to 2 cards (vllm-project#2094)
### What this PR does / why we need it? Fix test on pyhccl to 2 cards ### Does this PR introduce _any_ user-facing change? N/A ### How was this patch tested? CI passed with existing test. - vLLM version: v0.10.0 - vLLM main: vllm-project/vllm@0d0cc9e Signed-off-by: MengqingCao <[email protected]>
1 parent 9b67c87 commit d80b0cc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/e2e/multicard/test_pyhccl_distributed.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ def worker_fn():
8989

9090

9191
def test_pyhccl():
92-
distributed_run(worker_fn, 4)
92+
distributed_run(worker_fn, 2)
9393

9494

9595
def broadcast_worker_fn():
@@ -118,4 +118,4 @@ def broadcast_worker_fn():
118118

119119

120120
def test_pyhccl_broadcast():
121-
distributed_run(broadcast_worker_fn, 4)
121+
distributed_run(broadcast_worker_fn, 2)

0 commit comments

Comments
 (0)