# SPDX-License-Identifier: Apache-2.0 # SPDX-FileCopyrightText: Copyright contributors to the vLLM project import pytest import torch from torch import Generator from tests.utils import large_gpu_mark from vllm.platforms import current_platform from vllm.triton_utils import HAS_TRITON from vllm.utils.torch_utils import set_random_seed from vllm.v1.sample.ops.topk_topp_sampler import ( apply_top_k_top_p_pytorch, random_sample, ) from vllm.v1.sample.sampler import Sampler DEVICE_TYPE = current_platform.device_type BATCH_SIZE = 1024 VOCAB_SIZE = 128 * 1024 def _flashinfer_topk_topp_supported() -> bool: """True iff the FlashInfer top-k/top-p sampler is usable on this host. Mirrors the gate in `TopKTopPSampler.__init__`: CUDA + flashinfer importable + GPU compute capability supported by the FlashInfer backend. """ if not current_platform.is_cuda(): return False try: import flashinfer # noqa: F401 from vllm.v1.attention.backends.flashinfer import FlashInferBackend except ImportError: return False capability = current_platform.get_device_capability() if capability is None: return False return FlashInferBackend.supports_compute_capability(capability) FLASHINFER_TOPK_TOPP_SUPPORTED = _flashinfer_topk_topp_supported() def _seed_default_generator(seed: int) -> None: set_random_seed(seed) @pytest.fixture(autouse=True) def reset_default_device(): """ Explicitly set the default device, which can affect subsequent tests. Adding this fixture helps avoid this problem. """ original_device = torch.get_default_device() yield torch.set_default_device(original_device) def test_sampler_threads_fp64_gumbel_to_topk_topp_sampler(): sampler = Sampler(use_fp64_gumbel=True) assert sampler.topk_topp_sampler.use_fp64_gumbel def test_rocm_aiter_sampler_defers_import_when_generators_force_native( monkeypatch: pytest.MonkeyPatch, ): from vllm.v1.sample.ops import topk_topp_sampler class MockPlatform: @staticmethod def is_cuda(): return False @staticmethod def is_cpu(): return False @staticmethod def is_xpu(): return False class MockRocmAiterOps: @staticmethod def is_enabled(): return True real_import = __import__ def guard_aiter_sampling_import(name, *args, **kwargs): if name == "aiter.ops.sampling": raise AssertionError("aiter sampling import should be deferred") return real_import(name, *args, **kwargs) monkeypatch.setattr(topk_topp_sampler, "current_platform", MockPlatform()) monkeypatch.setattr(topk_topp_sampler, "rocm_aiter_ops", MockRocmAiterOps()) monkeypatch.setattr("builtins.__import__", guard_aiter_sampling_import) sampler = topk_topp_sampler.TopKTopPSampler() logits = torch.randn(2, 8) k = torch.full((2,), 2, dtype=torch.int32) generators = {0: torch.Generator(device=logits.device).manual_seed(0)} token_ids, logits_to_return = sampler(logits, generators, k, None) assert token_ids.shape == (2,) assert logits_to_return is None def test_random_sample_uses_fp64_exponential_race_when_requested(): torch.set_default_device(DEVICE_TYPE) probs = torch.tensor( [ [0.70, 0.20, 0.10], [0.05, 0.15, 0.80], [0.25, 0.25, 0.50], ], dtype=torch.float32, device=DEVICE_TYPE, ) _seed_default_generator(12345) q = torch.empty(probs.shape, dtype=torch.float64, device=probs.device) q.exponential_() expected = q.reciprocal_().mul_(probs).argmax(dim=-1).view(-1) _seed_default_generator(12345) actual = random_sample(probs.clone(), {}, use_fp64_gumbel=True) assert torch.equal(actual, expected) def test_topk_impl_equivalence(): torch.set_default_device(DEVICE_TYPE) generator = Generator(device=DEVICE_TYPE).manual_seed(33) logits = torch.rand((BATCH_SIZE, VOCAB_SIZE), generator=generator) # Random top-k values between 1 and 9. k = torch.randint(1, 10, (BATCH_SIZE,), generator=generator) # Set k=vocab_size for ~50% of requests in the batch (top-k disabled). k.masked_fill_( torch.randint(0, 2, (BATCH_SIZE,), generator=generator, dtype=bool), VOCAB_SIZE ) # Top-k only implementation result1 = apply_top_k_top_p_pytorch(logits=logits.clone(), k=k, p=None) # Top-p + top-k no_op_top_p = torch.tensor([1.0]) result2 = apply_top_k_top_p_pytorch(logits=logits.clone(), k=k, p=no_op_top_p) assert torch.allclose(result1, result2) @pytest.mark.skip( reason="FlashInfer top-k/top-p renorm comparison fails; " "needs investigation of tolerance threshold or " "interface differences between Python and FlashInfer implementations" ) def test_flashinfer_sampler(): """ This test verifies that the FlashInfer top-k and top-p sampling implementation produces the same results as the Python implementation. NOTE: FlashInfer did not directly expose an interface for fused top-k and top-p prob renorm (it did provide fused sampling but we cannot compare sampling results due to randomness), so we will compare the probability renormed consequently by top-k and then top-p of FlashInfer implementation. """ try: from flashinfer.sampling import top_k_renorm_probs, top_p_renorm_probs is_flashinfer_available = True except ImportError: is_flashinfer_available = False FLASHINFER_ENABLED = current_platform.is_cuda() and is_flashinfer_available if not FLASHINFER_ENABLED: pytest.skip("FlashInfer not installed or not available on this platform.") torch.set_default_device(DEVICE_TYPE) generator = Generator(device=DEVICE_TYPE).manual_seed(42) # Generate random logits logits = torch.rand((BATCH_SIZE, VOCAB_SIZE), generator=generator) # Generate various top-k and top-p values k_values = torch.randint(1, 1000, (BATCH_SIZE,), generator=generator) p_values = ( torch.rand((BATCH_SIZE,), generator=generator) * 0.5 + 0.5 ) # range in [0.5, 1.0] # Sometimes disable top-k (k=vocab_size) k_values.masked_fill_( torch.randint(0, 2, (BATCH_SIZE,), generator=generator, dtype=torch.bool), VOCAB_SIZE, ) # Sometimes disable top-p (p=1.0) p_values.masked_fill_( torch.randint(0, 2, (BATCH_SIZE,), generator=generator, dtype=torch.bool), 1.0 ) python_logits = apply_top_k_top_p_pytorch( logits=logits.clone(), k=k_values, p=p_values, ) python_probs = torch.softmax(python_logits, dim=-1) # FlashInfer only exposed renorm interfaces for probs so convert first flashinfer_probs = torch.softmax(logits.clone(), dim=-1) flashinfer_probs = top_k_renorm_probs( probs=flashinfer_probs, top_k=k_values, ) flashinfer_probs = top_p_renorm_probs( probs=flashinfer_probs, top_p=p_values, ) # Compare the results assert torch.allclose(python_probs, flashinfer_probs, atol=2e-2), ( "FlashInfer and Python sampling implementations do not match!" ) # ============================================================================= # Triton kernel tests # ============================================================================= @pytest.mark.skipif(not HAS_TRITON, reason="Triton not available on this platform") class TestTritonTopkTopp: """Tests for the Triton top-k/top-p kernel.""" @pytest.fixture(autouse=True) def setup(self): """Set up test fixtures.""" torch.set_default_device(DEVICE_TYPE) self.generator = Generator(device=DEVICE_TYPE).manual_seed(42) def _compare_results( self, logits: torch.Tensor, k: torch.Tensor | None, p: torch.Tensor | None, ): """Compare Triton kernel results with PyTorch sorting implementation. For top-k only, we expect exact match. For top-p (with or without top-k), we allow small differences due to floating-point precision in probability sum calculations. """ from vllm.v1.sample.ops.topk_topp_triton import apply_top_k_top_p_triton # Clone logits for both implementations logits_pytorch = logits.clone() logits_triton = logits.clone().to(torch.float32) # Apply PyTorch sorting implementation result_pytorch = apply_top_k_top_p_pytorch(logits_pytorch, k, p) # Apply Triton kernel k_i32 = k.to(torch.int32) if k is not None else None p_f32 = p.to(torch.float32) if p is not None else None result_triton = apply_top_k_top_p_triton(logits_triton, k_i32, p_f32) # Compare kept counts per row pytorch_kept = (result_pytorch != float("-inf")).sum(dim=-1) triton_kept = (result_triton != float("-inf")).sum(dim=-1) if p is None: # Top-k only: expect exact match assert torch.equal(pytorch_kept, triton_kept), ( f"Top-k mask mismatch: PyTorch kept {pytorch_kept.tolist()}, " f"Triton kept {triton_kept.tolist()}" ) else: # Top-p involved: allow small differences # Either < 1% of kept values OR < 5 values absolute max_diff = (pytorch_kept - triton_kept).abs().max().item() max_kept = pytorch_kept.max().item() if max_kept > 0 and max_diff > 3: diff_pct = max_diff / max_kept * 100 assert diff_pct < 0.5, ( f"Top-p mask difference too large: {diff_pct:.2f}% " f"(max diff {max_diff} values out of {max_kept})" ) @pytest.mark.parametrize("batch_size", [1, 8, 32, 128, 512, 1024]) @pytest.mark.parametrize("vocab_size", [1024, 32000, 128256]) def test_topk_only(self, batch_size: int, vocab_size: int): """Test top-k only (p=None).""" logits = torch.randn( batch_size, vocab_size, generator=self.generator, dtype=torch.float32 ) k = torch.randint( 1, min(100, vocab_size), (batch_size,), generator=self.generator ) # Randomly disable top-k for some rows (~25%) disable_mask = torch.randint(0, 4, (batch_size,), generator=self.generator) == 0 k.masked_fill_(disable_mask, vocab_size) self._compare_results(logits, k, p=None) @pytest.mark.parametrize("batch_size", [1, 8, 32, 128, 512, 1024]) @pytest.mark.parametrize("vocab_size", [1024, 32000, 128256]) def test_topp_only(self, batch_size: int, vocab_size: int): """Test top-p only (k=None).""" logits = torch.randn( batch_size, vocab_size, generator=self.generator, dtype=torch.float32 ) p = torch.rand(batch_size, generator=self.generator) * 0.9 + 0.1 # [0.1, 1.0] # Randomly disable top-p for some rows (~25%) disable_mask = torch.randint(0, 4, (batch_size,), generator=self.generator) == 0 p.masked_fill_(disable_mask, 1.0) self._compare_results(logits, k=None, p=p) @pytest.mark.parametrize("batch_size", [1, 8, 32, 128, 512, 1024]) @pytest.mark.parametrize("vocab_size", [1024, 32000, 128256]) def test_topk_and_topp(self, batch_size: int, vocab_size: int): """Test combined top-k and top-p.""" logits = torch.randn( batch_size, vocab_size, generator=self.generator, dtype=torch.float32 ) k = torch.randint( 1, min(100, vocab_size), (batch_size,), generator=self.generator ) p = torch.rand(batch_size, generator=self.generator) * 0.9 + 0.1 # [0.1, 1.0] # Randomly disable top-k for some rows (~25%) disable_k = torch.randint(0, 4, (batch_size,), generator=self.generator) == 0 k.masked_fill_(disable_k, vocab_size) # Randomly disable top-p for some rows (~25%) disable_p = torch.randint(0, 4, (batch_size,), generator=self.generator) == 0 p.masked_fill_(disable_p, 1.0) self._compare_results(logits, k, p) def test_both_disabled(self): """Test when both k and p are None (should be no-op).""" from vllm.v1.sample.ops.topk_topp_triton import apply_top_k_top_p_triton logits = torch.randn(32, 1024, generator=self.generator, dtype=torch.float32) logits_clone = logits.clone() result = apply_top_k_top_p_triton(logits_clone, k=None, p=None) assert torch.equal(result, logits), "Should be no-op when both k and p are None" def test_extreme_k_values(self): """Test edge cases for k values.""" batch_size, vocab_size = 16, 1024 logits = torch.randn( batch_size, vocab_size, generator=self.generator, dtype=torch.float32 ) # k=1 (keep only top 1) k = torch.ones(batch_size, dtype=torch.int32) self._compare_results(logits.clone(), k, p=None) # k=vocab_size (keep all) k = torch.full((batch_size,), vocab_size, dtype=torch.int32) self._compare_results(logits.clone(), k, p=None) # Mixed extreme values k = torch.tensor([1, vocab_size, 2, vocab_size - 1] * 4, dtype=torch.int32) self._compare_results(logits.clone(), k, p=None) def test_extreme_p_values(self): """Test edge cases for p values.""" batch_size, vocab_size = 16, 1024 logits = torch.randn( batch_size, vocab_size, generator=self.generator, dtype=torch.float32 ) # p close to 0 (very restrictive) p = torch.full((batch_size,), 0.01, dtype=torch.float32) self._compare_results(logits.clone(), k=None, p=p) # p=1.0 (keep all) p = torch.ones(batch_size, dtype=torch.float32) self._compare_results(logits.clone(), k=None, p=p) # Mixed values p = torch.tensor([0.1, 0.5, 0.9, 1.0] * 4, dtype=torch.float32) self._compare_results(logits.clone(), k=None, p=p) def test_large_batch(self): """Test with a large batch size.""" batch_size, vocab_size = 512, 32000 logits = torch.randn( batch_size, vocab_size, generator=self.generator, dtype=torch.float32 ) k = torch.randint(1, 50, (batch_size,), generator=self.generator) p = torch.rand(batch_size, generator=self.generator) * 0.5 + 0.5 self._compare_results(logits, k, p) @large_gpu_mark(min_gb=24) def test_large_batch_int64_row_offset(self): """Regression: per-row offset (row * vocab_size) must not overflow int32. Speculative decoding expands the logits batch (e.g. DFlash drafts K tokens per request), so batch_size * vocab_size can exceed 2**31. With int32 offset arithmetic the per-row pointer wraps to a negative address and the kernel hits a CUDA illegal memory access. Use a batch where batch_size * vocab_size > 2**31 and give the highest-offset row the same logits as row 0: an overflow there would read a different row and change the kept set. """ from vllm.v1.sample.ops.topk_topp_triton import apply_top_k_top_p_triton if not current_platform.is_cuda(): pytest.skip("int32 row-offset overflow is a CUDA kernel issue") vocab_size = 131072 batch_size = 2**31 // vocab_size + 64 # batch_size * vocab_size > 2**31 # logits is modified in place; the only extra device memory is the # per-SM scratch buffer (~num_sm * vocab), so allow ~1 GB of headroom. required_bytes = batch_size * vocab_size * 4 + (1 << 30) if torch.accelerator.get_memory_info()[0] < required_bytes: pytest.skip(f"needs ~{required_bytes / 1e9:.0f} GB of free GPU memory") logits = torch.randn( batch_size, vocab_size, generator=self.generator, dtype=torch.float32 ) logits[batch_size - 1] = logits[0] k = torch.full((batch_size,), 5, dtype=torch.int32) result = apply_top_k_top_p_triton(logits, k, None) torch.accelerator.synchronize() # surface any async illegal memory access kept_first = (result[0] > float("-inf")).nonzero(as_tuple=True)[0] kept_last = (result[batch_size - 1] > float("-inf")).nonzero(as_tuple=True)[0] assert kept_first.numel() == 5, f"row 0 kept {kept_first.numel()}, expected 5" assert torch.equal(kept_first, kept_last), ( "highest-offset row produced a different top-k mask than the " "identical row 0 (int32 row-offset overflow)" ) @pytest.mark.parametrize( "mode", ["topk_only", "topp_only", "topk_and_topp"], ) def test_noncontiguous_logits_match_contiguous(self, mode: str): """Non-contiguous logits views should behave like contiguous inputs.""" from vllm.v1.sample.ops.topk_topp_triton import apply_top_k_top_p_triton device = torch.device(DEVICE_TYPE) batch_size, vocab_size, pad = 16, 4096, 8 backing = torch.full( (batch_size, vocab_size + pad), -1000.0, device=device, dtype=torch.float32, ) base = torch.linspace( 10.0, -10.0, vocab_size, device=device, dtype=torch.float32 ) source = base[None, :] + ( torch.arange(batch_size, device=device, dtype=torch.float32)[:, None] / 1000.0 ) logits = backing[:, :vocab_size] logits.copy_(source) contig_logits = source.clone() pytorch_logits = source.clone() assert logits.shape == (batch_size, vocab_size) assert logits.stride() == (vocab_size + pad, 1) assert not logits.is_contiguous() k: torch.Tensor | None = None p: torch.Tensor | None = None if mode in ("topk_only", "topk_and_topp"): k = torch.full((batch_size,), 154, device=device, dtype=torch.int32) if mode in ("topp_only", "topk_and_topp"): p = torch.full((batch_size,), 0.95, device=device, dtype=torch.float32) noncontig_out = apply_top_k_top_p_triton(logits, k, p) contig_out = apply_top_k_top_p_triton(contig_logits, k, p) pytorch_out = apply_top_k_top_p_pytorch(pytorch_logits, k, p) assert noncontig_out.data_ptr() == logits.data_ptr() assert not noncontig_out.is_contiguous() assert torch.equal(logits, noncontig_out) assert torch.equal(torch.isfinite(noncontig_out), torch.isfinite(contig_out)) assert torch.equal(torch.isfinite(noncontig_out), torch.isfinite(pytorch_out)) # ----------------------------------------------------------------- # Tests for -inf logits (e.g. from grammar / structured output masks) # ----------------------------------------------------------------- @pytest.mark.parametrize("inf_fraction", [0.5, 0.9, 0.99]) def test_topk_with_neginf_logits(self, inf_fraction: float): """Top-k with many -inf logits (simulating grammar bitmask). The kernel must not produce NaN when most logits are -inf, which can happen when structured-output grammar masks are applied before sampling. """ from vllm.v1.sample.ops.topk_topp_triton import apply_top_k_top_p_triton batch_size, vocab_size = 32, 128256 logits = torch.randn( batch_size, vocab_size, generator=self.generator, dtype=torch.float32 ) # Mask a fraction of logits to -inf. mask = ( torch.rand(batch_size, vocab_size, generator=self.generator) < inf_fraction ) logits[mask] = float("-inf") k = torch.randint( 1, 50, (batch_size,), generator=self.generator, dtype=torch.int32 ) result = apply_top_k_top_p_triton(logits.clone(), k, None) assert not result.isnan().any(), "NaN found in top-k result with -inf logits" for i in range(batch_size): kept = (result[i] > float("-inf")).sum().item() assert kept <= k[i].item(), f"Row {i}: kept {kept} > k={k[i].item()}" # At least one value should survive unless the row was all -inf. finite_in = (logits[i] > float("-inf")).sum().item() if finite_in > 0: assert kept > 0, f"Row {i}: no tokens kept despite finite input" @pytest.mark.parametrize("inf_fraction", [0.5, 0.9, 0.99]) def test_topp_with_neginf_logits(self, inf_fraction: float): """Top-p with many -inf logits.""" from vllm.v1.sample.ops.topk_topp_triton import apply_top_k_top_p_triton batch_size, vocab_size = 32, 128256 logits = torch.randn( batch_size, vocab_size, generator=self.generator, dtype=torch.float32 ) mask = ( torch.rand(batch_size, vocab_size, generator=self.generator) < inf_fraction ) logits[mask] = float("-inf") p = ( torch.rand(batch_size, generator=self.generator, dtype=torch.float32) * 0.9 + 0.1 ) result = apply_top_k_top_p_triton(logits.clone(), None, p) assert not result.isnan().any(), "NaN found in top-p result with -inf logits" for i in range(batch_size): finite_in = (logits[i] > float("-inf")).sum().item() kept = (result[i] > float("-inf")).sum().item() if finite_in > 0: assert kept > 0, f"Row {i}: no tokens kept despite finite input" @pytest.mark.parametrize("inf_fraction", [0.5, 0.9, 0.99]) def test_topk_topp_with_neginf_logits(self, inf_fraction: float): """Combined top-k + top-p with many -inf logits.""" from vllm.v1.sample.ops.topk_topp_triton import apply_top_k_top_p_triton batch_size, vocab_size = 32, 128256 logits = torch.randn( batch_size, vocab_size, generator=self.generator, dtype=torch.float32 ) mask = ( torch.rand(batch_size, vocab_size, generator=self.generator) < inf_fraction ) logits[mask] = float("-inf") k = torch.randint( 1, 50, (batch_size,), generator=self.generator, dtype=torch.int32 ) p = ( torch.rand(batch_size, generator=self.generator, dtype=torch.float32) * 0.9 + 0.1 ) result = apply_top_k_top_p_triton(logits.clone(), k, p) assert not result.isnan().any(), ( "NaN found in top-k+top-p result with -inf logits" ) for i in range(batch_size): kept = (result[i] > float("-inf")).sum().item() assert kept <= k[i].item(), f"Row {i}: kept {kept} > k={k[i].item()}" def test_all_neginf_logits(self): """All logits are -inf (fully masked). Kernel should be a no-op.""" from vllm.v1.sample.ops.topk_topp_triton import apply_top_k_top_p_triton batch_size, vocab_size = 16, 128256 logits = torch.full( (batch_size, vocab_size), float("-inf"), dtype=torch.float32 ) k = torch.randint( 1, 50, (batch_size,), generator=self.generator, dtype=torch.int32 ) p = torch.full((batch_size,), 0.9, dtype=torch.float32) # top-k only result = apply_top_k_top_p_triton(logits.clone(), k, None) assert not result.isnan().any(), "NaN from all-inf top-k" assert (result == float("-inf")).all(), "Expected all -inf unchanged" # top-p only result = apply_top_k_top_p_triton(logits.clone(), None, p) assert not result.isnan().any(), "NaN from all-inf top-p" assert (result == float("-inf")).all(), "Expected all -inf unchanged" # top-k + top-p result = apply_top_k_top_p_triton(logits.clone(), k, p) assert not result.isnan().any(), "NaN from all-inf top-k+top-p" assert (result == float("-inf")).all(), "Expected all -inf unchanged" def test_few_valid_tokens_with_neginf(self): """Only a handful of tokens are finite per row (strict grammar).""" from vllm.v1.sample.ops.topk_topp_triton import apply_top_k_top_p_triton batch_size, vocab_size = 32, 128256 logits = torch.full( (batch_size, vocab_size), float("-inf"), dtype=torch.float32 ) # Allow only 5 random tokens per row to be finite. for i in range(batch_size): indices = torch.randperm(vocab_size, generator=self.generator)[:5] logits[i, indices] = torch.randn( 5, generator=self.generator, dtype=torch.float32 ) k = torch.full((batch_size,), 50, dtype=torch.int32) p = torch.full((batch_size,), 0.9, dtype=torch.float32) # top-k only (k=50 but only 5 finite → keep all 5) result = apply_top_k_top_p_triton(logits.clone(), k, None) assert not result.isnan().any() for i in range(batch_size): kept = (result[i] > float("-inf")).sum().item() assert kept == 5, f"Row {i}: expected 5 kept, got {kept}" # top-k with k < num_finite k_small = torch.full((batch_size,), 3, dtype=torch.int32) result = apply_top_k_top_p_triton(logits.clone(), k_small, None) assert not result.isnan().any() for i in range(batch_size): kept = (result[i] > float("-inf")).sum().item() assert kept <= 3, f"Row {i}: expected <=3 kept, got {kept}" # top-p only result = apply_top_k_top_p_triton(logits.clone(), None, p) assert not result.isnan().any() for i in range(batch_size): kept = (result[i] > float("-inf")).sum().item() assert kept > 0, f"Row {i}: no tokens kept" @pytest.mark.parametrize("num_valid", [1, 2, 5, 10, 50]) @pytest.mark.parametrize( "mode", ["topk_only", "topp_only", "topk_and_topp"], ) def test_equal_logits_few_valid(self, num_valid: int, mode: str): """Few valid tokens all sharing the same logit value. This is the pattern produced by grammar bitmask filtering when the model assigns similar scores to the few allowed tokens. The ternary search can converge to a pivot equal to max_logit, causing the strict `>` keep_mask to exclude everything. Regression test for the `final_pivot >= max_logit` guard. """ from vllm.v1.sample.ops.topk_topp_triton import apply_top_k_top_p_triton batch_size, vocab_size = 32, 128256 logits = torch.full( (batch_size, vocab_size), float("-inf"), dtype=torch.float32 ) # Set exactly `num_valid` tokens per row to the SAME finite value. for i in range(batch_size): indices = torch.randperm(vocab_size, generator=self.generator)[:num_valid] logits[i, indices] = 1.0 # all equal k: torch.Tensor | None = None p: torch.Tensor | None = None if mode in ("topk_only", "topk_and_topp"): k = torch.full((batch_size,), max(1, num_valid - 1), dtype=torch.int32) if mode in ("topp_only", "topk_and_topp"): p = torch.full((batch_size,), 0.95, dtype=torch.float32) result = apply_top_k_top_p_triton(logits.clone(), k, p) assert not result.isnan().any(), "NaN in equal-logit result" for i in range(batch_size): kept = (result[i] > float("-inf")).sum().item() # The key invariant: at least one token must survive. # With all-equal logits the pivot search can't differentiate # tokens, so the guard may keep more than k — that is the # intended safe fallback. assert kept > 0, ( f"Row {i}: all tokens masked with {num_valid} equal-valued " f"finite logits ({mode})" ) @pytest.mark.parametrize("num_valid", [2, 5, 10]) def test_nearly_equal_logits_topp(self, num_valid: int): """Few valid tokens with very similar (but not identical) logits. Ensures the kernel handles near-degenerate probability distributions where the ternary search range collapses. """ from vllm.v1.sample.ops.topk_topp_triton import apply_top_k_top_p_triton batch_size, vocab_size = 32, 128256 logits = torch.full( (batch_size, vocab_size), float("-inf"), dtype=torch.float32 ) for i in range(batch_size): indices = torch.randperm(vocab_size, generator=self.generator)[:num_valid] # Tiny spread: values in [1.0, 1.0 + 1e-6] logits[i, indices] = ( 1.0 + torch.rand(num_valid, generator=self.generator, dtype=torch.float32) * 1e-6 ) p = torch.full((batch_size,), 0.95, dtype=torch.float32) result = apply_top_k_top_p_triton(logits.clone(), None, p) assert not result.isnan().any(), "NaN in nearly-equal-logit result" for i in range(batch_size): kept = (result[i] > float("-inf")).sum().item() assert kept > 0, ( f"Row {i}: all tokens masked with {num_valid} " f"nearly-equal finite logits" ) def test_mixed_neginf_and_normal_rows(self): """Batch with a mix of normal rows and heavily-masked rows.""" from vllm.v1.sample.ops.topk_topp_triton import apply_top_k_top_p_triton batch_size, vocab_size = 32, 32000 logits = torch.randn( batch_size, vocab_size, generator=self.generator, dtype=torch.float32 ) # Mask even rows heavily (99% -inf), leave odd rows normal. for i in range(0, batch_size, 2): mask = torch.rand(vocab_size, generator=self.generator) < 0.99 logits[i][mask] = float("-inf") k = torch.randint( 1, 50, (batch_size,), generator=self.generator, dtype=torch.int32 ) p = ( torch.rand(batch_size, generator=self.generator, dtype=torch.float32) * 0.9 + 0.1 ) result = apply_top_k_top_p_triton(logits.clone(), k, p) assert not result.isnan().any(), "NaN in mixed normal/-inf batch" for i in range(batch_size): kept = (result[i] > float("-inf")).sum().item() assert kept <= k[i].item() finite_in = (logits[i] > float("-inf")).sum().item() if finite_in > 0: assert kept > 0, f"Row {i}: no tokens kept" # ============================================================================= # FlashInfer top-k/top-p robustness tests # ============================================================================= @pytest.mark.skipif( not FLASHINFER_TOPK_TOPP_SUPPORTED, reason="FlashInfer top-k/top-p sampler requires CUDA " "and a GPU with FlashInfer support.", ) class TestFlashInferTopkToppRobustness: """Robustness of FlashInfer top-k / top-p sampling to NaN / Inf logits. The FlashInfer sampler is enabled by default on supported GPUs. A single poisoned request (NaN / +Inf / -Inf in row 0) must not: 1. crash or hang the process; 2. produce out-of-range token ids (anything outside ``[0, vocab)``); 3. corrupt other batch rows — neighbours of a poisoned row must still receive valid token ids (regression for cross-row corruption in a DP batch where one bad request would otherwise poison its peers). The reference is "no crash + valid token ids", not bit-exact equality against the PyTorch-native path. """ BATCH = 8 VOCAB = 32768 TOPK = 50 TOPP = 0.9 @pytest.fixture(autouse=True) def setup(self): torch.set_default_device(DEVICE_TYPE) self.generator = Generator(device=DEVICE_TYPE).manual_seed(1234) def _make_logits(self, pattern: str) -> torch.Tensor: """Build (BATCH, VOCAB) logits with `pattern` applied to row 0 (rows 1..B-1 stay clean so we can detect cross-row corruption).""" logits = ( torch.randn( self.BATCH, self.VOCAB, generator=self.generator, dtype=torch.float32, ) * 5.0 ) if pattern == "clean": return logits if pattern == "nan_one_row": logits[0, :] = float("nan") elif pattern == "nan_few": # Scatter 16 NaNs across row 0, keep the rest finite. idx = torch.randperm(self.VOCAB, generator=self.generator)[:16] logits[0, idx] = float("nan") elif pattern == "nan_at_top": # Poison the top-32 highest-scoring positions of row 0 — worst # case for top-k since these are exactly the tokens that would # otherwise be selected. Use argsort instead of topk to avoid # a known compute-sanitizer false positive in mbtopk. top_idx = logits[0].argsort(descending=True)[:32] logits[0, top_idx] = float("nan") elif pattern == "nan_all_rows": logits[:, :] = float("nan") elif pattern == "pos_inf_one_row": logits[0, :] = float("inf") elif pattern == "neg_inf_one_row": logits[0, :] = float("-inf") elif pattern == "mixed_inf_nan": assert self.BATCH >= 3 logits[0, :] = float("nan") logits[1, :] = float("inf") logits[2, :] = float("-inf") elif pattern == "degenerate_flat": logits[:, :] = 1.0 else: raise ValueError(f"unknown pattern: {pattern}") return logits def _check_tokens(self, tokens: torch.Tensor, ctx: str): assert tokens.dim() == 1, f"{ctx}: expected 1-D output, got {tokens.shape}" assert tokens.shape[0] == self.BATCH, ( f"{ctx}: expected batch size {self.BATCH}, got {tokens.shape[0]}" ) ids = tokens.tolist() min_id, max_id = min(ids), max(ids) assert 0 <= min_id < self.VOCAB and 0 <= max_id < self.VOCAB, ( f"{ctx}: token id(s) outside [0, {self.VOCAB}): min={min_id}, max={max_id}" ) @pytest.mark.parametrize( "pattern", [ "clean", "nan_one_row", "nan_few", "nan_at_top", "nan_all_rows", "pos_inf_one_row", "neg_inf_one_row", "mixed_inf_nan", "degenerate_flat", ], ) @pytest.mark.parametrize("path", ["topk_only", "topp_only", "topk_topp"]) def test_flashinfer_handles_pathological_logits(self, pattern: str, path: str): """flashinfer_sample must return valid ids even on poisoned logits. Direct call into ``flashinfer_sample`` — exactly the code path ``TopKTopPSampler.forward_cuda`` takes when FI is enabled. """ from vllm.v1.sample.ops.topk_topp_sampler import flashinfer_sample logits = self._make_logits(pattern) k = ( torch.full( (self.BATCH,), self.TOPK, device=DEVICE_TYPE, dtype=torch.int32, ) if path in ("topk_only", "topk_topp") else None ) p = ( torch.full( (self.BATCH,), self.TOPP, device=DEVICE_TYPE, dtype=torch.float32, ) if path in ("topp_only", "topk_topp") else None ) # flashinfer_sample may mutate its input in-place; pass a clone so # the parametrize iterations stay independent. tokens = flashinfer_sample(logits.clone().contiguous(), k, p, {}) # Surface any async CUDA error synchronously (e.g. illegal memory # access from a malformed FlashInfer call) so it's attributed to # this test rather than a later, unrelated GPU op. torch.accelerator.synchronize() self._check_tokens(tokens, ctx=f"pattern={pattern}, path={path}") # ============================================================================= # FlashInfer top-k/top-p distribution-match tests # ============================================================================= @pytest.mark.skipif( not FLASHINFER_TOPK_TOPP_SUPPORTED, reason="FlashInfer top-k/top-p sampler requires CUDA " "and a GPU with FlashInfer support.", ) class TestFlashInferDistributionMatch: """Chi-square goodness-of-fit: FlashInfer and PyTorch-native samplers both reproduce the expected token distribution after top-k / top-p. Regression guard against historical FlashInfer distribution-shift. Each impl is compared to the theoretical distribution (softmax of filtered logits); if both pass they are statistically equivalent to each other by transitivity. """ VOCAB = 32 N_SAMPLES = 50_000 ALPHA = 1e-6 SEED = 0 @pytest.mark.parametrize( "topk,topp", [ (8, None), (16, None), (None, 0.5), (None, 0.7), (None, 0.99), (8, 0.9), (4, 0.5), ], ) def test_distribution_matches_theoretical(self, topk, topp): from scipy.stats import chisquare from vllm.v1.sample.ops.topk_topp_sampler import ( apply_top_k_top_p, flashinfer_sample, random_sample, ) torch.set_default_device(DEVICE_TYPE) torch.manual_seed(self.SEED) # Same logits row used for both impls so the comparison is fair. logits_one = ( torch.randn( (1, self.VOCAB), dtype=torch.float32, ) * 2.0 ) # Theoretical expected distribution from PyTorch-native filter. k_one = torch.tensor([topk], dtype=torch.int32) if topk is not None else None p_one = torch.tensor([topp], dtype=torch.float32) if topp is not None else None masked = apply_top_k_top_p_pytorch(logits_one.clone(), k_one, p_one) expected_probs = masked.softmax(dim=-1).flatten().cpu().numpy() expected_counts = expected_probs * self.N_SAMPLES # Build a batch of N identical rows for both impls. batch = logits_one.expand(self.N_SAMPLES, self.VOCAB).contiguous() k_batch = ( torch.full((self.N_SAMPLES,), topk, dtype=torch.int32) if topk is not None else None ) p_batch = ( torch.full((self.N_SAMPLES,), topp, dtype=torch.float32) if topp is not None else None ) # FlashInfer dispatch path. fi_tokens = flashinfer_sample(batch.contiguous(), k_batch, p_batch, {}) fi_counts = torch.bincount(fi_tokens, minlength=self.VOCAB).cpu().numpy() self._chi2_check( fi_counts, expected_counts, chisquare, label=f"flashinfer top-k={topk} top-p={topp}", ) # PyTorch-native dispatch path (Triton-routed filter + Gumbel sample). processed = apply_top_k_top_p(batch.clone(), k_batch, p_batch) probs = processed.softmax(dim=-1, dtype=torch.float32) pt_tokens = random_sample(probs, {}) pt_counts = torch.bincount(pt_tokens, minlength=self.VOCAB).cpu().numpy() self._chi2_check( pt_counts, expected_counts, chisquare, label=f"native top-k={topk} top-p={topp}", ) def _chi2_check(self, empirical, expected, chisquare_fn, *, label): import numpy as np # Hard check: the sampler must never produce a token outside the # expected support (zero theoretical probability). outside = (expected == 0) & (empirical > 0) assert not outside.any(), ( f"{label}: sampled out-of-support tokens " f"(zero expected prob): indices={outside.nonzero()[0].tolist()}" ) # Skip chi-square in the degenerate case where the support # collapses to a single token (e.g. very restrictive joint # top-k + top-p): all samples must land there and the hard # check above already verified they do. in_support = expected > 0 if int(in_support.sum()) <= 1: return # Soft check: chi-square goodness-of-fit on in-support tokens. # Cast to float64 so the rescaling step below stays within # scipy.chisquare's strict 1.5e-8 sum-equality tolerance. emp = empirical[in_support].astype(np.float64) exp = expected[in_support].astype(np.float64) exp = exp * (emp.sum() / exp.sum()) chi2, p_value = chisquare_fn(emp, exp) assert p_value > self.ALPHA, ( f"{label}: distribution differs from theoretical: " f"chi2={chi2:.2f} p_value={p_value:.2e} alpha={self.ALPHA}" )