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.
dp_rank==0
1 parent d022115 commit cf5984bCopy full SHA for cf5984b
vllm/v1/engine/core.py
@@ -701,7 +701,7 @@ def _init_data_parallel(self, vllm_config: VllmConfig):
701
for i in range(local_dp_rank * world_size, (local_dp_rank + 1) *
702
world_size))
703
704
- self.local_dp_rank = local_dp_rank
+ self.dp_rank = dp_rank
705
self.dp_group = vllm_config.parallel_config.stateless_init_dp_group()
706
self.current_wave = 0
707
@@ -774,7 +774,7 @@ def run_busy_loop(self):
774
local_unfinished_reqs)
775
776
if not self.engines_running:
777
- if self.local_dp_rank == 0:
+ if self.dp_rank == 0:
778
# Notify client that we are pausing the loop.
779
logger.debug("Wave %d finished, pausing engine loop.",
780
self.current_wave)
0 commit comments