Skip to content

Commit ae4a17a

Browse files
author
Muralidhar Andoorveedu
committed
Fix comments
Signed-off-by: Muralidhar Andoorveedu <muralidhar.andoorveedu@centml.ai>
1 parent e08e665 commit ae4a17a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

vllm/distributed/parallel_state.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -488,12 +488,12 @@ def send_tensor_dict(
488488
dict), f"Expecting a dictionary, got {type(tensor_dict)}"
489489
metadata_list, tensor_list = _split_tensor_dict(tensor_dict)
490490
# `metadata_list` lives in CPU memory.
491-
# `broadcast_object_list` has serialization & deserialization,
491+
# `send_object_list` has serialization & deserialization,
492492
# all happening on CPU. Therefore, we can use the CPU group.
493493
send_object_list([metadata_list], dst=dst, group=metadata_group)
494494
for tensor in tensor_list:
495495
if tensor.numel() == 0:
496-
# Skip broadcasting empty tensors.
496+
# Skip sending empty tensors.
497497
continue
498498
if tensor.is_cpu:
499499
# use metadata_group for CPU tensors

0 commit comments

Comments
 (0)