Commit 89a23d8
authored
[CUDA] Optimize FlashDecode split planning for local-window GQA (#29161)
## Description
When `GroupQueryAttention` runs the CUDA FlashDecode fast-decode path
with a sliding/local attention
window (`local_window_size > 0`), the split-K planning was sized using
the full
`total_sequence_length` even though only the last `local_window_size` KV
positions can contribute to
the output. This caused local-window decode layers to over-split and run
an unnecessary split-K
combine pass. This PR clamps the sequence length used for split planning
to the local window size, so
local-window decode no longer pays for splits/combine work it does not
need. This is motivated by
models that use local attention windows for GQA (e.g. gpt-oss-style
decode with a small sliding
window over a large KV cache).
## Summary of Changes
### Kernel dispatch
| File | Change |
|------|--------|
| `onnxruntime/contrib_ops/cuda/bert/group_query_attention.cc` | In the
FlashDecode fast-decode path, clamp the sequence length passed to
`get_num_splits_and_buffer_sizes` to `local_window_size` when
`local_window_size > 0`, so split-K planning reflects only the windowed
KV range. |
### Tests
| File | Change |
|------|--------|
| `onnxruntime/test/python/transformers/test_gqa.py` | Add
`test_gqa_local_window_large_context_decode` regression test: decode
step (q_len=1) with a large past context (4096) and a small local window
(128), verifying parity of the narrowed split planning. Skips when Flash
Attention is unavailable. |
### Profiling helpers
| File | Change |
|------|--------|
| `onnxruntime/test/python/transformers/profile_gqa.py` | New nsys
profiling helper for the GQA decode path, with a `--local-window-size`
option and NVTX range markers. |
| `onnxruntime/test/python/transformers/profile_gqa.sh` | New shell
wrapper that runs `nsys` profiling per precision mode and parses results
with the shared `parse_nsys.py`; checks `nsys`/`nvtx` availability
instead of mutating the environment. |
## Testing
- Unit test:
```bash
cd onnxruntime/test/python/transformers
PIPELINE_MODE=1 python test_gqa.py -k
test_gqa_local_window_large_context_decode -v
```
- Existing FlashDecode parity coverage:
```bash
PIPELINE_MODE=1 python test_gqa.py -k test_gqa_past_flash_attention -v
```
- Profiling (optional, requires an NVIDIA GPU + Nsight Systems):
```bash
cd onnxruntime/test/python/transformers
./profile_gqa.sh --fp16 --past-sequence-length 4096 --local-window-size
128
```
Observed on H200 (SM90, fp16, batch=2, num_heads=64, kv_num_heads=8,
head_size=64): the split-K
combine pass is eliminated for the local-window case and the main decode
kernel time drops
significantly versus the unclamped (full-context) split planning.
- Backward compatibility: behavior is unchanged when `local_window_size
<= 0`; the clamp only applies
on the FlashDecode fast-decode path with a positive local window.
## Motivation and Context
Local-window GQA decode layers only attend to the most recent
`local_window_size` KV positions, so
splitting and combining across the entire KV cache wastes split-K
combine work. Clamping the split
planning sequence length to the window size keeps the fast path correct
while removing the redundant
combine pass for windowed decode layers.
## Checklist
- [x] Tests added/updated
- [x] No breaking changes (behavior unchanged when `local_window_size <=
0`)
- [ ] Documentation updated (if applicable)1 parent 88468c2 commit 89a23d8
4 files changed
Lines changed: 453 additions & 1 deletion
File tree
- onnxruntime
- contrib_ops/cuda/bert
- test/python/transformers
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
452 | 452 | | |
453 | 453 | | |
454 | 454 | | |
| 455 | + | |
| 456 | + | |
| 457 | + | |
| 458 | + | |
| 459 | + | |
455 | 460 | | |
456 | | - | |
| 461 | + | |
457 | 462 | | |
458 | 463 | | |
459 | 464 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
| 23 | + | |
| 24 | + | |
| 25 | + | |
| 26 | + | |
| 27 | + | |
| 28 | + | |
| 29 | + | |
| 30 | + | |
| 31 | + | |
| 32 | + | |
| 33 | + | |
| 34 | + | |
| 35 | + | |
| 36 | + | |
| 37 | + | |
| 38 | + | |
| 39 | + | |
| 40 | + | |
| 41 | + | |
| 42 | + | |
| 43 | + | |
| 44 | + | |
| 45 | + | |
| 46 | + | |
| 47 | + | |
| 48 | + | |
| 49 | + | |
| 50 | + | |
| 51 | + | |
| 52 | + | |
| 53 | + | |
| 54 | + | |
| 55 | + | |
| 56 | + | |
| 57 | + | |
| 58 | + | |
| 59 | + | |
| 60 | + | |
| 61 | + | |
| 62 | + | |
| 63 | + | |
| 64 | + | |
| 65 | + | |
| 66 | + | |
| 67 | + | |
| 68 | + | |
| 69 | + | |
| 70 | + | |
| 71 | + | |
| 72 | + | |
| 73 | + | |
| 74 | + | |
| 75 | + | |
| 76 | + | |
| 77 | + | |
| 78 | + | |
| 79 | + | |
| 80 | + | |
| 81 | + | |
| 82 | + | |
| 83 | + | |
| 84 | + | |
| 85 | + | |
| 86 | + | |
| 87 | + | |
| 88 | + | |
| 89 | + | |
| 90 | + | |
| 91 | + | |
| 92 | + | |
| 93 | + | |
| 94 | + | |
| 95 | + | |
| 96 | + | |
| 97 | + | |
| 98 | + | |
| 99 | + | |
| 100 | + | |
| 101 | + | |
| 102 | + | |
| 103 | + | |
| 104 | + | |
| 105 | + | |
| 106 | + | |
| 107 | + | |
| 108 | + | |
| 109 | + | |
| 110 | + | |
| 111 | + | |
| 112 | + | |
| 113 | + | |
| 114 | + | |
| 115 | + | |
| 116 | + | |
| 117 | + | |
| 118 | + | |
| 119 | + | |
| 120 | + | |
| 121 | + | |
| 122 | + | |
| 123 | + | |
| 124 | + | |
| 125 | + | |
| 126 | + | |
| 127 | + | |
| 128 | + | |
| 129 | + | |
| 130 | + | |
| 131 | + | |
| 132 | + | |
| 133 | + | |
| 134 | + | |
| 135 | + | |
| 136 | + | |
| 137 | + | |
| 138 | + | |
| 139 | + | |
| 140 | + | |
| 141 | + | |
| 142 | + | |
| 143 | + | |
| 144 | + | |
| 145 | + | |
| 146 | + | |
| 147 | + | |
| 148 | + | |
| 149 | + | |
| 150 | + | |
| 151 | + | |
| 152 | + | |
| 153 | + | |
| 154 | + | |
| 155 | + | |
| 156 | + | |
| 157 | + | |
| 158 | + | |
| 159 | + | |
| 160 | + | |
| 161 | + | |
| 162 | + | |
| 163 | + | |
| 164 | + | |
| 165 | + | |
| 166 | + | |
| 167 | + | |
| 168 | + | |
| 169 | + | |
| 170 | + | |
| 171 | + | |
| 172 | + | |
| 173 | + | |
| 174 | + | |
| 175 | + | |
| 176 | + | |
| 177 | + | |
| 178 | + | |
| 179 | + | |
| 180 | + | |
| 181 | + | |
| 182 | + | |
| 183 | + | |
| 184 | + | |
| 185 | + | |
| 186 | + | |
| 187 | + | |
| 188 | + | |
| 189 | + | |
| 190 | + | |
| 191 | + | |
| 192 | + | |
| 193 | + | |
| 194 | + | |
| 195 | + | |
| 196 | + | |
| 197 | + | |
| 198 | + | |
| 199 | + | |
| 200 | + | |
| 201 | + | |
| 202 | + | |
| 203 | + | |
| 204 | + | |
| 205 | + | |
| 206 | + | |
| 207 | + | |
| 208 | + | |
| 209 | + | |
| 210 | + | |
| 211 | + | |
| 212 | + | |
| 213 | + | |
| 214 | + | |
| 215 | + | |
| 216 | + | |
| 217 | + | |
| 218 | + | |
| 219 | + | |
| 220 | + | |
| 221 | + | |
| 222 | + | |
| 223 | + | |
| 224 | + | |
| 225 | + | |
0 commit comments