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
aa54a7bf
Unverified
Commit
aa54a7bf
authored
Jun 01, 2025
by
rongfu.leng
Committed by
GitHub
Jun 01, 2025
Browse files
[BugFix] fix data parallel construct ipv6 url addres (#18991)
Signed-off-by:
rongfu.leng
<
rongfu.leng@daocloud.io
>
parent
2ad6194a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
vllm/distributed/parallel_state.py
vllm/distributed/parallel_state.py
+3
-3
No files found.
vllm/distributed/parallel_state.py
View file @
aa54a7bf
...
...
@@ -41,8 +41,8 @@ from vllm.distributed.device_communicators.base_device_communicator import (
DeviceCommunicatorBase
)
from
vllm.distributed.utils
import
StatelessProcessGroup
from
vllm.logger
import
init_logger
from
vllm.utils
import
(
direct_register_custom_op
,
resolve_obj_by_qualname
,
supports_custom_op
)
from
vllm.utils
import
(
direct_register_custom_op
,
get_distributed_init_method
,
resolve_obj_by_qualname
,
supports_custom_op
)
@
dataclass
...
...
@@ -929,7 +929,7 @@ def init_distributed_environment(
world_size
=
parallel_config
.
world_size_across_dp
ip
=
parallel_config
.
data_parallel_master_ip
port
=
parallel_config
.
get_next_dp_init_port
()
distributed_init_method
=
f
"tcp://
{
ip
}
:
{
port
}
"
# noqa
distributed_init_method
=
get_distributed_init_method
(
ip
,
port
)
logger
.
info
(
"Adjusting world_size=%d rank=%d distributed_init_method=%s for DP"
,
world_size
,
rank
,
distributed_init_method
)
...
...
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