[CI/Build] Investigate torchrun distributed tests hanging issue (#33650)

Signed-off-by: Isotr0py <mozf@mail2.sysu.edu.cn>
This commit is contained in:
Isotr0py
2026-02-03 15:49:17 +08:00
committed by GitHub
parent fd9c83d0e0
commit 32e84fa1ff
2 changed files with 6 additions and 0 deletions

View File

@@ -39,6 +39,9 @@ llm = LLM(
gpu_memory_utilization=random.uniform(0.7, 0.9),
swap_space=random.randint(1, 4),
seed=0,
# FIXME(Isotr0py): async scheduling causes deadlock
# on torchrun with PP, need to investigate further.
async_scheduling=False,
)
outputs = llm.generate(prompts, sampling_params)