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
9b693d02
Unverified
Commit
9b693d02
authored
Jan 21, 2026
by
Nick Hill
Committed by
GitHub
Jan 21, 2026
Browse files
[Misc] Omit "disable NCCL for DP sync" startup log when not applicable (#32707)
Signed-off-by:
Nick Hill
<
nickhill123@gmail.com
>
parent
808d6fd7
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
5 deletions
+8
-5
vllm/config/vllm.py
vllm/config/vllm.py
+8
-5
No files found.
vllm/config/vllm.py
View file @
9b693d02
...
@@ -622,11 +622,14 @@ class VllmConfig:
...
@@ -622,11 +622,14 @@ class VllmConfig:
if
self
.
parallel_config
.
disable_nccl_for_dp_synchronization
is
None
:
if
self
.
parallel_config
.
disable_nccl_for_dp_synchronization
is
None
:
if
self
.
scheduler_config
.
async_scheduling
:
if
self
.
scheduler_config
.
async_scheduling
:
logger
.
info_once
(
if
self
.
parallel_config
.
data_parallel_size
>
1
and
(
"Disabling NCCL for DP synchronization "
self
.
model_config
is
None
or
self
.
model_config
.
is_moe
"when using async scheduling."
,
):
scope
=
"local"
,
logger
.
info_once
(
)
"Disabling NCCL for DP synchronization "
"when using async scheduling."
,
scope
=
"local"
,
)
self
.
parallel_config
.
disable_nccl_for_dp_synchronization
=
True
self
.
parallel_config
.
disable_nccl_for_dp_synchronization
=
True
else
:
else
:
self
.
parallel_config
.
disable_nccl_for_dp_synchronization
=
False
self
.
parallel_config
.
disable_nccl_for_dp_synchronization
=
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