Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tensorrt_llm/_torch/disaggregation/transceiver.py
Original file line number Diff line number Diff line change
Expand Up @@ -523,7 +523,7 @@ def check_context_transfer_status(
def check_gen_transfer_status(self, at_least_request_num: Optional[int]):
# Skip the allgather in _gen_consensus when this transceiver never receives (pure CTX role).
if not self._ever_had_recv_session:
return [], []
return [], [], []
block_all = at_least_request_num is None
wait_num = at_least_request_num if not block_all else 0

Expand Down
Loading