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/pyexecutor/sampler.py
Original file line number Diff line number Diff line change
Expand Up @@ -601,7 +601,7 @@ def _process_requests(self,
current_slice = slice(0, steps), slot, beam
new_tokens[current_slice] = next_tokens
if request.py_draft_logits is not None:
# Could be cleaner, Izzy
# Could be cleaner
request.py_target_probs = softmax.clone()
if gen_logits_host is not None:
gen_logits_host[current_slice].copy_(logits, non_blocking=True)
Expand Down
Loading