Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[V1] TP Ray executor #11107

Merged
merged 19 commits into from
Dec 23, 2024
Prev Previous commit
Next Next commit
up
Signed-off-by: Rui Qiao <ruisearch42@gmail.com>
ruisearch42 committed Dec 23, 2024
commit b46ee5538bd36882f0579bacdc9f08a34d1da8b5
6 changes: 3 additions & 3 deletions vllm/distributed/parallel_state.py
Original file line number Diff line number Diff line change
@@ -247,9 +247,9 @@ def __init__(
from vllm.distributed.device_communicators.shm_broadcast import (
MessageQueue)
self.mq_broadcaster: Optional[MessageQueue] = None
# if use_message_queue_broadcaster and self.world_size > 1:
# self.mq_broadcaster = MessageQueue.create_from_process_group(
# self.cpu_group, 1 << 22, 6)
if use_message_queue_broadcaster and self.world_size > 1:
self.mq_broadcaster = MessageQueue.create_from_process_group(
self.cpu_group, 1 << 22, 6)

@property
def first_rank(self):