We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c0dfc89 commit 9e1e5d5Copy full SHA for 9e1e5d5
vllm/config/parallel.py
@@ -593,10 +593,10 @@ def __post_init__(self) -> None:
593
"max_parallel_loading_workers is currently "
594
"not supported and will be ignored."
595
)
596
- if self.distributed_executor_backend not in ("mp", "uni") and self.nnodes > 1:
+ if self.distributed_executor_backend not in ("mp", "uni", "external_launcher") and self.nnodes > 1:
597
raise ValueError(
598
"nnodes > 1 can only be set when distributed executor "
599
- "backend is mp or uni."
+ "backend is mp, uni or external_launcher."
600
601
602
@property
0 commit comments