Skip to content

Commit 41d8028

Browse files
authored
[misc] fix console hanging (#293)
1 parent c835ae6 commit 41d8028

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

verl/workers/rollout/vllm_rollout_spmd.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ def generate_sequences(self, prompts: DataProto) -> DataProto:
146146
# users can customize different sampling_params at different run
147147
with self.update_sampling_params(**prompts.meta_info):
148148
completions: List[RequestOutput] = self.inference_engine.generate(
149-
prompts=vllm_inputs, sampling_params=self.sampling_params, use_tqdm=(self.rank == 0)
149+
prompts=vllm_inputs, sampling_params=self.sampling_params, use_tqdm=False
150150
)
151151
response_ids = [output.token_ids for completion in completions for output in completion.outputs]
152152
response_ids = VF.pad_2d_list_to_length(

0 commit comments

Comments
 (0)