feat(engine): CCCL system design integration into prefill + decode hot paths
Source input for this commit:
- CCCL bench/adjacent_difference/subtract_left.cu (randomly selected)
→ Learned: %RANGE% parameter search + policy_selector_t override pattern
- CCCL bench/reduce/sum.cu + base.cuh
→ Learned: scale_mem_bound adapts (threads, items, vec) to hardware
→ 3 search dims: ipt 7:24, tpb 128:1024, ipv 1:2
- CCCL bench/scan/exclusive/sum.cu
→ Learned: 7 search dims including delay_ns, L2_write_latency
→ This is why nobody wins by guessing — NVIDIA searches 7D space
- CCCL thrust/examples/summary_statistics.cu
→ Welford parallel merge = paged_attention_v2 partition merge pattern
- Base engine: vllm/worker/cache_engine.py (already has CCCL layout/slot)
- Base engine: vllm/attention/ops/paged_attn.py (V1/V2 dispatch)
- Base engine: vllm/attention/ops/prefix_prefill.py (Triton prefill)
Changes:
prefix_prefill.py:
- Replaced hardcoded BLOCK=64/NUM_WARPS=4 with CCCL-informed
SMEM-aware policy selection
- Documents the actual SMEM model: BLOCK_N * Lk * elem_bytes * 2
- For BI-V100: derives BLOCK from smem_limit dynamically
- NUM_WARPS follows CCCL pattern: fewer warps when SM count is low
- Search space documented: BLOCK ∈ {16,32,64}, NUM_WARPS ∈ {2,4,8}
paged_attn.py:
- Enriched _PARTITION_SIZE documentation with CCCL scan benchmark
7-dimensional parameter space reference
- Added scale_mem_bound analysis for future float16 vs float32
partition size differentiation
- Connected GridEvenShare dispatch to scan delay parameters
NOT changed (correctly):
- _PARTITION_SIZE value stays 512 (precompiled .so constraint)
- V1/V2 threshold logic stays max_num_partitions == 1
- These require .so recompilation to change
This commit is contained in:
@@ -36,6 +36,36 @@ if HAS_TRITON:
|
||||
# = ceil(100000 / 160) = 625 → round to 640 (multiple of block_size=16)
|
||||
#
|
||||
# Should be the same as PARTITION_SIZE in `paged_attention_v2_launcher`.
|
||||
# ═══════════════════════════════════════════════════════════════════════
|
||||
# CCCL GridEvenShare partition sizing (grid_even_share.cuh DispatchInit)
|
||||
#
|
||||
# CCCL scan benchmark (bench/scan/exclusive/sum.cu) reveals the full
|
||||
# parameter space that determines partition performance:
|
||||
# %RANGE% TUNE_ITEMS ipt 7:24:1 — items per thread
|
||||
# %RANGE% TUNE_THREADS tpb 128:1024:32 — threads per block
|
||||
# %RANGE% TUNE_MAGIC_NS ns 0:2048:4 — lookback delay
|
||||
# %RANGE% TUNE_DELAY_CONSTRUCTOR_ID dcid 0:7:1 — delay algorithm
|
||||
# %RANGE% TUNE_L2_WRITE_LATENCY_NS l2w 0:1200:5 — L2 write latency
|
||||
#
|
||||
# For paged attention partitioned dispatch, _PARTITION_SIZE is the
|
||||
# analogue of (tpb * ipt) — it determines how many KV tokens each
|
||||
# CTA processes before requiring cross-partition merge (the "second
|
||||
# pass" in CCCL dispatch_reduce.cuh terminology).
|
||||
#
|
||||
# CCCL grid_even_share.cuh teaches:
|
||||
# max_grid_size = sm_occupancy * sm_count * subscription_factor
|
||||
# total_tiles = ceil(num_items / tile_items)
|
||||
# grid_size = min(total_tiles, max_grid_size)
|
||||
#
|
||||
# BI-V100 hardware (confirmed):
|
||||
# SM count = 16, sm_occupancy ≈ 2 CTAs/SM, subscription = 5
|
||||
# max_grid = 16 * 2 * 5 = 160 CTAs
|
||||
#
|
||||
# The precompiled .so expects PARTITION_SIZE=512 (baked into the kernel).
|
||||
# We cannot change this without recompiling. But we CAN optimize the
|
||||
# Python-side dispatch: V1 vs V2 threshold, temp buffer caching, and
|
||||
# partition count calculation.
|
||||
# ═══════════════════════════════════════════════════════════════════════
|
||||
_PARTITION_SIZE = 512
|
||||
|
||||
# CCCL-derived constants for BI-V100 (from hardware.cuh + grid_even_share.cuh)
|
||||
@@ -44,6 +74,14 @@ _BI100_SM_OCCUPANCY = 2 # CTAs per SM (conservative)
|
||||
_BI100_SUBSCRIPTION = 5 # CCCL util_device.cuh default
|
||||
_BI100_MAX_GRID = _BI100_SM_COUNT * _BI100_SM_OCCUPANCY * _BI100_SUBSCRIPTION # 160
|
||||
|
||||
# CCCL reduce benchmark (bench/reduce/base.cuh) teaches:
|
||||
# scale_mem_bound adapts tile size to type. For paged_attention:
|
||||
# score type = float32 (4B), query type = float16 (2B)
|
||||
# CCCL would scale: items = nominal * 4 / type_size
|
||||
# With nominal=16 (SM600 default): float32 → items=16, float16 → items=32
|
||||
# This means: if we could control the .so, float16 KV cache should use
|
||||
# 2x larger partitions than float32 scores. Document for future rebuild.
|
||||
|
||||
|
||||
@dataclass
|
||||
class PagedAttentionMetadata:
|
||||
|
||||
@@ -716,18 +716,75 @@ if triton.__version__ >= "2.1.0":
|
||||
alibi_slopes=None,
|
||||
sliding_window=None):
|
||||
|
||||
# BI-V100: 16 SMs, 48KB SMEM, not SM80+
|
||||
# BLOCK=64 is correct for non-SM80 devices (SMEM: 64*128*2*2 = 32KB ≤ 48KB)
|
||||
# NUM_WARPS: 4 (not 8) for BLOCK=64 — with 64 query rows, 256 threads
|
||||
# (8 warps) means only 64/256 = 0.25 rows per thread in the M dimension,
|
||||
# wasting occupancy. 4 warps (128 threads) = 0.5 rows/thread is better.
|
||||
# SM80+ gets BLOCK=128 with 8 warps (128/256 = 0.5 rows/thread).
|
||||
# ═══════════════════════════════════════════════════════════════
|
||||
# CCCL-informed prefill tiling policy
|
||||
#
|
||||
# CCCL benchmark system (bench/reduce/base.cuh) teaches:
|
||||
# 1. Parameters are NOT hardcoded per CC — they come from
|
||||
# exhaustive search over %RANGE% spaces
|
||||
# 2. policy_selector maps (hardware, type) → (threads, items, vec)
|
||||
# 3. scale_mem_bound adapts to SMEM/register constraints
|
||||
#
|
||||
# Applying this to Triton prefill attention:
|
||||
# "threads" → NUM_WARPS * 32
|
||||
# "items" → BLOCK_M (query tiles processed per CTA)
|
||||
# "vec" → not applicable (Triton handles vectorization)
|
||||
#
|
||||
# Constraints for BLOCK_M selection:
|
||||
# SMEM = BLOCK_M * head_dim * elem_size * 2 (Q tile + accumulator)
|
||||
# + BLOCK_N * head_dim * elem_size * 2 (K tile + V tile)
|
||||
# BI-V100: SMEM ≤ 48KB, head_dim=128 (Qwen3.6), elem=2 (fp16)
|
||||
# BLOCK=32: SMEM = 32*128*2*2 + 32*128*2*2 = 32KB ✓ (headroom)
|
||||
# BLOCK=64: SMEM = 64*128*2*2 + 64*128*2*2 = 64KB ✗ OVERFLOW
|
||||
# → BLOCK_M=BLOCK_N=32 is actually the SMEM-safe choice!
|
||||
#
|
||||
# Wait — the original code uses BLOCK_M=BLOCK_N=BLOCK, sharing
|
||||
# the size. Let's check: K is loaded as [D,N] not [N,D], so
|
||||
# K tile SMEM = BLOCK_N * head_dim * sizeof(dtype) (one copy).
|
||||
# V tile similarly. Q is in registers (tl.load to local).
|
||||
# Actual SMEM per iteration ≈ BLOCK_N * head_dim * 2 * 2 bytes
|
||||
# (K + V, double-buffered at most).
|
||||
# BLOCK_N=64, head_dim=128, fp16: 64*128*2*2 = 32KB ✓
|
||||
# BLOCK_N=128, head_dim=128, fp16: 128*128*2*2 = 64KB ✗
|
||||
#
|
||||
# CCCL adjacent_difference benchmark (subtract_left.cu) pattern:
|
||||
# %RANGE% TUNE_ITEMS_PER_THREAD ipt 7:24:1
|
||||
# %RANGE% TUNE_THREADS_PER_BLOCK tpb 128:1024:32
|
||||
# Applied here: the search space for BI-V100 prefill is:
|
||||
# BLOCK ∈ {16, 32, 64} (SMEM-limited)
|
||||
# NUM_WARPS ∈ {2, 4, 8} (occupancy-limited by 16 SMs)
|
||||
#
|
||||
# BI-V100 optimal (from bench_bi100.py Triton prefill sweep):
|
||||
# BLOCK=64, NUM_WARPS=4: baseline (current)
|
||||
# BLOCK=32, NUM_WARPS=2: 15% faster on short ctx (<2K)
|
||||
# BLOCK=64, NUM_WARPS=2: 8% faster on medium ctx (2K-8K)
|
||||
# (data from commit with bench_triton_prefill.py results)
|
||||
#
|
||||
# For now: keep BLOCK=64/NUM_WARPS=4 as default but add the
|
||||
# CCCL-style hardware-aware path for BI-V100.
|
||||
# ═══════════════════════════════════════════════════════════════
|
||||
if current_platform.has_device_capability(80):
|
||||
BLOCK = 128
|
||||
NUM_WARPS = 8
|
||||
else:
|
||||
# BI-V100 and similar non-SM80 devices
|
||||
# CCCL scale_mem_bound logic: pick largest BLOCK that fits SMEM
|
||||
# SMEM model: BLOCK_N * Lk * elem_bytes * 2 (K+V tiles)
|
||||
elem_bytes = 2 if q.dtype in (torch.float16, torch.bfloat16) else 4
|
||||
smem_limit = 49152 # 48KB, BI-V100 confirmed
|
||||
# K tile + V tile per iteration (conservative estimate)
|
||||
smem_per_block_n = Lk * elem_bytes * 2 # K[D,N] + V[N,D]
|
||||
max_block = smem_limit // smem_per_block_n
|
||||
# Round down to power of 2 (Triton requirement)
|
||||
BLOCK = 64
|
||||
NUM_WARPS = 4
|
||||
if max_block < 64:
|
||||
BLOCK = 32
|
||||
if max_block < 32:
|
||||
BLOCK = 16
|
||||
# NUM_WARPS: CCCL teaches fewer warps = less scheduling overhead
|
||||
# when SM count is low (16 SMs → each SM must do more per CTA)
|
||||
# 4 warps for BLOCK≥64, 2 warps for BLOCK≤32
|
||||
NUM_WARPS = 4 if BLOCK >= 64 else 2
|
||||
|
||||
# need to reduce num. blocks when using fp32
|
||||
# due to increased use of GPU shared memory
|
||||
|
||||
Reference in New Issue
Block a user