From d80b0cca5d129358fafc53c7aa1836c9c09b89c8 Mon Sep 17 00:00:00 2001 From: Mengqing Cao Date: Wed, 30 Jul 2025 09:08:00 +0800 Subject: [PATCH] [CI] Fix test on pyhccl to 2 cards (#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: https://github.com/vllm-project/vllm/commit/0d0cc9e15001b18997207fc86af6810500d587d9 Signed-off-by: MengqingCao --- tests/e2e/multicard/test_pyhccl_distributed.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/e2e/multicard/test_pyhccl_distributed.py b/tests/e2e/multicard/test_pyhccl_distributed.py index e3d9aed..2300e0a 100644 --- a/tests/e2e/multicard/test_pyhccl_distributed.py +++ b/tests/e2e/multicard/test_pyhccl_distributed.py @@ -89,7 +89,7 @@ def worker_fn(): def test_pyhccl(): - distributed_run(worker_fn, 4) + distributed_run(worker_fn, 2) def broadcast_worker_fn(): @@ -118,4 +118,4 @@ def broadcast_worker_fn(): def test_pyhccl_broadcast(): - distributed_run(broadcast_worker_fn, 4) + distributed_run(broadcast_worker_fn, 2)