Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
OpenDAS
vllm_cscc
Commits
d54af615
Unverified
Commit
d54af615
authored
May 29, 2025
by
Michael Goin
Committed by
GitHub
May 30, 2025
Browse files
[Bugfix] Fix PP default fallback behavior for V1 (#18915)
Signed-off-by:
mgoin
<
mgoin64@gmail.com
>
parent
a1cc9f33
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
vllm/engine/arg_utils.py
vllm/engine/arg_utils.py
+2
-1
No files found.
vllm/engine/arg_utils.py
View file @
d54af615
...
@@ -1380,7 +1380,8 @@ class EngineArgs:
...
@@ -1380,7 +1380,8 @@ class EngineArgs:
if
(
self
.
pipeline_parallel_size
>
1
if
(
self
.
pipeline_parallel_size
>
1
and
self
.
distributed_executor_backend
and
self
.
distributed_executor_backend
not
in
(
"ray"
,
"mp"
,
"external_launcher"
)):
not
in
(
ParallelConfig
.
distributed_executor_backend
,
"ray"
,
"mp"
,
"external_launcher"
)):
name
=
"Pipeline Parallelism without Ray distributed executor "
\
name
=
"Pipeline Parallelism without Ray distributed executor "
\
"or multiprocessing executor or external launcher"
"or multiprocessing executor or external launcher"
_raise_or_fallback
(
feature_name
=
name
,
recommend_to_remove
=
False
)
_raise_or_fallback
(
feature_name
=
name
,
recommend_to_remove
=
False
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment