Files
project_6/muh
muh-bot b50bd2dfd5 [gen_patch] fix critical struct selection: dispatch by kernel data type
CCCL policy_selector dispatches by (accum_size, type_t, offset_size).
gen_patch was picking first non-default struct → bi100_plus_accum1_o4
(int8 items=32) for reduce. paged_attention uses float32 scores →
correct struct is bi100_plus_float32_o4 (items=24).

Before: 512*32*4=65536 > 49152 SMEM → crash
After:  512*24*4=49152 = 100% SMEM → correct

SCAN_BLOCK_SIZE: 512→384 (bench_bi100.py ipt=22 tpb=384 dcid=0)
2026-08-05 03:21:31 +00:00
..