[DEPLOY] sync qwen3_6_scripts/ with latest engine changes for submission

Sync deployment files that patch_ops.sh copies into the Docker container:

paged_attn.py (366 lines changed):
  - CCCL spread_out_items_per_thread adaptive tile sizing
  - CCCL dispatch_reduce three-layer architecture port
  - summary_statistics.cu compound reduce for online softmax
  - GridEvenShare RAKE pattern for decode tiling

sampler.py (30 lines changed):
  - CCCL bit_packed_counter documentation
  - Pre-allocated bin_counts tensor caching (alias_temporaries pattern)
  - Pure top-k fast path when all top_p=1.0

All files pass syntax check. Ready for patch_ops.sh deployment.
This commit is contained in:
muh
2026-08-06 01:04:55 +00:00
parent b80fd2b56b
commit e3f85e79ee
2 changed files with 259 additions and 133 deletions

View File

@@ -331,9 +331,33 @@ def _get_bin_counts_and_mask(
) -> Tuple[torch.Tensor, torch.Tensor]:
# Compute the bin counts for the tokens.
# vocab_size + 1 for padding.
bin_counts = torch.zeros((num_seqs, vocab_size + 1),
dtype=torch.long,
device=tokens.device)
#
# CCCL bit_packed_counter pattern (catch2_test_memcpy_bitpacked_counter.cu):
# Pack counters using minimum bits needed. Original code uses int64
# (8 bytes per counter), but token repetition counts in a single
# generation never exceed a few hundred. We keep int64 for scatter_add_
# compatibility but pre-allocate once to avoid per-step CUDA malloc.
#
# CCCL dispatch_reduce.cuh alias_temporaries: pre-allocate, reuse.
# For Qwen3.6 (vocab=152064, batch=8 decode):
# bin_counts = 8 × 152065 × 8 = 9.7 MB, allocated ONCE, reused.
# scatter_add_ requires int64 on CUDA, so dtype cannot change.
#
# Future: if scatter_add_ supports int16/int32, switch to reduce 4x.
_cache_key = ("bin_counts", vocab_size, num_seqs, tokens.device)
global _sampler_cache
if '_sampler_cache' not in dir():
_sampler_cache = {}
cached = _sampler_cache.get(_cache_key)
if cached is not None and cached.shape == (num_seqs, vocab_size + 1):
bin_counts = cached
bin_counts.zero_()
else:
bin_counts = torch.zeros((num_seqs, vocab_size + 1),
dtype=torch.long,
device=tokens.device)
_sampler_cache[_cache_key] = bin_counts
bin_counts.scatter_add_(1, tokens, torch.ones_like(tokens))
bin_counts = bin_counts[:, :vocab_size]
mask = bin_counts > 0