Skip to content

Commit

Permalink
style
Browse files Browse the repository at this point in the history
  • Loading branch information
ssarkar2 authored and michalkuligowski committed Dec 12, 2024
1 parent 208e21b commit c6023de
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions vllm/model_executor/layers/sampler.py
Original file line number Diff line number Diff line change
Expand Up @@ -405,10 +405,10 @@ def __init__(self, increment: int):
self._increment = increment

def __call__(self, logits: torch.Tensor, p: float, k: int):
if k==1 and not ApplyToppTopkScalar._handle_duplicates:
if k == 1 and not ApplyToppTopkScalar._handle_duplicates:
new_logits = torch.full(logits.shape,
-float("inf"),
device=logits.device)
-float("inf"),
device=logits.device)
vals, idx = torch.max(logits, keepdim=True, dim=1)
new_logits.scatter_(1, idx, vals.to(new_logits.dtype))
return new_logits
Expand Down

0 comments on commit c6023de

Please sign in to comment.