vllm.v1.attention.backends.triton_attn_diffkv ¶
Triton attention backend with different K/V head dimensions (DiffKV).
The KV cache layout is identical to FlashAttentionDiffKVBackend: K and V are packed along the last dim in the logical shape [num_blocks, num_kv_heads, block_size, head_size_qk + head_size_v].
Classes:
-
TritonAttentionDiffKVImpl–Triton attention impl for the DiffKV packed KV cache layout.
-
TritonAttentionDiffKVMetadataBuilder–Override the parent's softmax buffer last-dim to head_size_v.
TritonAttentionDiffKVImpl ¶
Bases: TritonAttentionImpl
Triton attention impl for the DiffKV packed KV cache layout.
Methods:
-
forward–Forward pass.
Source code in vllm/v1/attention/backends/triton_attn_diffkv.py
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 | |
forward(layer, query, key, value, kv_cache, attn_metadata, output, output_scale=None, output_block_scale=None) ¶
Forward pass.
Shapes
query: [num_tokens, num_heads, head_size_qk] key: [num_tokens, num_kv_heads, head_size_qk] value: [num_tokens, num_kv_heads, head_size_v] kv_cache: [num_blocks, num_kv_heads, block_size, head_size_qk + head_size_v] output: [num_tokens, num_heads, head_size_v]
Source code in vllm/v1/attention/backends/triton_attn_diffkv.py
TritonAttentionDiffKVMetadataBuilder ¶
Bases: TritonAttentionMetadataBuilder
Override the parent's softmax buffer last-dim to head_size_v.
The parent allocates softmax_segm_output with last-dim sized to next_power_of_2(head_size) (== Q/K head size). For DiffKV the accumulator and per-segment partial outputs are V-shaped, so we re-allocate with next_power_of_2(head_size_v) instead.