Files
lightseekorg--tokenspeed/python/tokenspeed/runtime/sampling/utils.py
T
wehub-resource-sync 59a0a3844c
PR Test AMD / cancel-on-close (push) Has been skipped
PR Test NVIDIA ARM / scan (push) Has been skipped
PR Test NVIDIA / cancel-on-close (push) Has been skipped
PR Test AMD / scan (push) Has been skipped
PR Test NVIDIA ARM / cancel-on-close (push) Has been skipped
PR Test NVIDIA / scan (push) Has been skipped
Release Docker Images / build (cu129-torch-2.11.0) (push) Has been skipped
Release Docker Images / build (cu130-torch-2.11.0) (push) Has been skipped
Release PyPI / publish (push) Has been skipped
Scheduler Python Test / test (push) Successful in 27m19s
Docs / build (push) Successful in 28m8s
Scheduler C++ Test / test (push) Successful in 28m19s
Scheduler C++ Test / test-flat (push) Successful in 28m18s
Docs / deploy (push) Has been cancelled
PR Test AMD / finish (push) Has been cancelled
PR Test NVIDIA / finish (push) Has been cancelled
PR Test NVIDIA ARM / finish (push) Has been cancelled
PR Test NVIDIA ARM / ${{ matrix.name }} (${{ matrix.runner }}) (push) Has been cancelled
PR Test AMD / ${{ matrix.name }} (${{ matrix.runner }}) (push) Has been cancelled
PR Test NVIDIA / ${{ matrix.name }} (${{ matrix.runner }}) (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 12:32:31 +08:00

87 lines
3.5 KiB
Python

# Copyright (c) 2026 LightSeek Foundation
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
from __future__ import annotations
import torch
from tokenspeed_kernel.torch_compile import get_compiler_backend
from tokenspeed.runtime.utils import crash_on_warnings, get_colorful_logger
logger = get_colorful_logger(__name__)
# Smallest positive value per dtype, used as the lower bound for `uniform_`
# draws that feed rejection-sampling kernels. A coin of exact 0 silently
# accepts a zero-probability draft in `chain_speculative_sampling_target_only`
# (the kernel condition `coin <= target_prob / threshold_acc` reduces to
# `0 <= 0`), so the coin must be strictly positive.
COIN_EPS = {
torch.float32: torch.finfo(torch.float32).tiny,
torch.bfloat16: torch.finfo(torch.bfloat16).tiny,
}
def coin_eps(dtype: torch.dtype) -> float:
"""Lower bound for uniform coin draws of the given dtype. See COIN_EPS."""
return COIN_EPS[dtype]
def nan_guard_logits(
logits: torch.Tensor,
enable_nan_detection: bool,
) -> torch.Tensor:
"""Replace NaNs with -1e5 and optionally crash; no-op when detection is disabled."""
if not enable_nan_detection:
return logits
if not torch.any(torch.isnan(logits)):
return logits
logger.warning("Detected errors during sampling! NaN in the logits.")
logits = torch.where(torch.isnan(logits), torch.full_like(logits, -1e5), logits)
if crash_on_warnings():
raise ValueError("Detected errors during sampling! NaN in the logits.")
return logits
@torch.compile(dynamic=True, backend=get_compiler_backend())
def gather_token_logprobs_torch(
logits: torch.Tensor,
tokens: torch.Tensor,
) -> torch.Tensor:
"""Per-row log_softmax(logits)[tokens]. Fuses cast + online softmax + gather
into one Triton kernel sequence so the full [B, V] log_softmax matrix is
never materialized."""
raw_logprobs = torch.log_softmax(logits.float(), dim=-1)
return raw_logprobs.gather(-1, tokens.unsqueeze(-1)).squeeze(-1)
@torch.compile(dynamic=True, backend=get_compiler_backend())
def top_p_normalize_probs_torch(
probs: torch.Tensor,
top_ps: torch.Tensor,
) -> torch.Tensor:
"""Pure-torch nucleus renorm — used by the prefill-logprob path."""
probs_sort, probs_idx = probs.sort(dim=-1, descending=True)
probs_sum = torch.cumsum(probs_sort, dim=-1)
probs_sort[(probs_sum - probs_sort) > top_ps.view(-1, 1)] = 0.0
probs_sort.div_(probs_sort.sum(dim=-1, keepdim=True))
return torch.zeros_like(probs_sort).scatter_(-1, probs_idx, probs_sort)