-
-
Notifications
You must be signed in to change notification settings - Fork 19.2k
[Kernel] Flashinfer MLA (trtllm-gen) decode kernel integration #21078
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 11 commits
Commits
Show all changes
16 commits
Select commit
Hold shift + click to select a range
1106bff
Squash commit
hjjq cd711c5
Merge branch 'main' into trtllm_gen_mla
mgoin 648f2c3
Update tests to enable for blackwell and refactor a few others
mgoin 6f1c29f
Use common max_seq_len
mgoin 2371cc4
Merge branch 'main' into trtllm_gen_mla
hjjq a1a606f
zero initialize workspace
hjjq a3db435
Merge branch 'main' into trtllm_gen_mla
hjjq 03cea88
Merge branch 'main' into trtllm_gen_mla
mgoin aa6622d
Merge branch 'main' into trtllm_gen_mla
mgoin ae0bef6
Merge branch 'main' into trtllm_gen_mla
hjjq e081ffa
Merge branch 'main' into trtllm_gen_mla
hjjq 8bec84d
Merge branch 'main' into trtllm_gen_mla
hjjq bfbc0c9
Make compat w/new chg; Revert test loc.
hjjq 0360bc8
revert
hjjq 7e5678f
mypy
hjjq bcf1050
Merge branch 'main' into trtllm_gen_mla
hjjq File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,123 @@ | ||
| # SPDX-License-Identifier: Apache-2.0 | ||
| # SPDX-FileCopyrightText: Copyright contributors to the vLLM project | ||
| import pytest | ||
| import torch | ||
| import torch.nn.functional as F | ||
| from flashinfer.decode import trtllm_batch_decode_with_kv_cache_mla | ||
| from torch import Tensor | ||
|
|
||
| from vllm.platforms import current_platform | ||
|
|
||
| FLASHINFER_WORKSPACE_BUFFER_SIZE = 128 * 1024 * 1024 | ||
|
|
||
| if not current_platform.has_device_capability(100): | ||
| pytest.skip( | ||
| reason="FlashInfer MLA Requires compute capability of 10 or above.", | ||
| allow_module_level=True) | ||
|
|
||
|
|
||
| def ref_mla( | ||
| out: Tensor, # (bs, num_heads, v_head_dim) | ||
| query: Tensor, # (bs, num_heads, head_dim) | ||
| kv_cache: Tensor, # (num_blocks, block_size, head_dim) | ||
| scale: float, | ||
| block_tables: Tensor, # (bs, max_num_blocks) | ||
| seq_lens: Tensor, # (bs,) | ||
| ): | ||
| bs, num_heads, v_head_dim = out.shape | ||
| head_dim = query.shape[2] | ||
|
|
||
| for i in range(bs): | ||
| # gather and flatten KV-cache | ||
| kv = kv_cache[ | ||
| block_tables[i]] # (max_num_blocks, block_size, head_dim) | ||
| kv = kv.view(1, -1, | ||
| head_dim)[:, :seq_lens[i]] # (1, seq_len, head_dim) | ||
| v = kv[:, :, :v_head_dim] | ||
|
|
||
| q = query[i].view(num_heads, 1, head_dim) | ||
| o = F.scaled_dot_product_attention(q, | ||
| kv, | ||
| v, | ||
| scale=scale, | ||
| enable_gqa=True) | ||
| out[i] = o.view(num_heads, v_head_dim) | ||
|
|
||
| return out | ||
|
|
||
|
|
||
| @pytest.mark.parametrize("dtype", [torch.bfloat16]) | ||
| @pytest.mark.parametrize("bs", [1, 2, 4, 16]) | ||
| @pytest.mark.parametrize("block_size", [32, 64]) | ||
| def test_flashinfer_mla_decode(dtype: torch.dtype, bs: int, block_size: int): | ||
| torch.set_default_device('cuda') | ||
| torch.manual_seed(42) | ||
|
|
||
| # Deepseek R1 config | ||
| num_heads = 128 | ||
| kv_lora_rank = 512 | ||
| qk_nope_head_dim = 128 | ||
| qk_rope_head_dim = 64 | ||
| qk_head_dim = kv_lora_rank + qk_rope_head_dim | ||
| scale = (qk_nope_head_dim + qk_rope_head_dim)**-0.5 | ||
|
|
||
| MAX_SEQ_LEN = 1024 | ||
|
|
||
| seq_lens = [torch.randint(2, MAX_SEQ_LEN, (1, )).item() for _ in range(bs)] | ||
| seq_lens[-1] = MAX_SEQ_LEN | ||
| max_seq_len = max(seq_lens) | ||
| seq_lens_tensor = torch.tensor(seq_lens, dtype=torch.int32) | ||
|
|
||
| # Generate block tables with random but unique block IDs | ||
| # From https://github.com/flashinfer-ai/flashinfer/pull/1222 | ||
| blocks_per_seq = (seq_lens_tensor + block_size - 1) // block_size | ||
| max_num_blocks_per_seq = max(blocks_per_seq.max().item(), 4) | ||
| total_blocks_needed = sum(blocks_per_seq) | ||
| # Get random unique IDs for all blocks | ||
| all_block_ids = torch.randperm(total_blocks_needed) | ||
|
|
||
| block_id = 0 | ||
| block_tables = torch.zeros( | ||
| (bs, max_num_blocks_per_seq), | ||
| dtype=torch.int32, | ||
| ) | ||
|
|
||
| # Populate block tables and track block assignments | ||
| block_id = 0 | ||
| for i in range(bs): | ||
| num_blocks_needed = blocks_per_seq[i] | ||
| block_tables[i, :num_blocks_needed] = all_block_ids[block_id:block_id + | ||
| num_blocks_needed] | ||
| block_id += num_blocks_needed | ||
|
|
||
| kv_cache = torch.randn(block_tables.numel(), block_size, | ||
| qk_head_dim).to(dtype) | ||
| q = torch.randn(bs, num_heads, qk_head_dim).to(dtype) | ||
|
|
||
| out_ref = q.new_zeros(bs, num_heads, kv_lora_rank) | ||
| ref_mla(out_ref, q, kv_cache, scale, block_tables, seq_lens_tensor) | ||
|
|
||
| workspace_buffer = torch.zeros( | ||
| FLASHINFER_WORKSPACE_BUFFER_SIZE, | ||
| dtype=torch.uint8, | ||
| device=q.device, | ||
| ) | ||
| # Flashinfer MLA expects the query to be of shape | ||
| # (bs, q_len_per_request, num_heads, qk_head_dim), | ||
| # where q_len_per_request is the MTP query length (=1 without MTP) | ||
| q = q.unsqueeze(1) | ||
|
|
||
| out_ans = trtllm_batch_decode_with_kv_cache_mla( | ||
| query=q, | ||
| kv_cache=kv_cache.unsqueeze(1), | ||
| workspace_buffer=workspace_buffer, | ||
| qk_nope_head_dim=qk_nope_head_dim, | ||
| kv_lora_rank=kv_lora_rank, | ||
| qk_rope_head_dim=qk_rope_head_dim, | ||
| block_tables=block_tables, | ||
| seq_lens=seq_lens_tensor, | ||
| max_seq_len=max_seq_len, | ||
| bmm1_scale=scale, | ||
| ) | ||
| out_ans = out_ans.squeeze(1) | ||
| torch.testing.assert_close(out_ans, out_ref, atol=1e-2, rtol=1e-2) |
File renamed without changes.
5 changes: 1 addition & 4 deletions
5
tests/kernels/test_triton_flash_attention.py → .../attention/test_triton_flash_attention.py
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,106 @@ | ||
| # SPDX-License-Identifier: Apache-2.0 | ||
| # SPDX-FileCopyrightText: Copyright contributors to the vLLM project | ||
|
|
||
| from typing import Optional | ||
|
|
||
| import torch | ||
| from flashinfer.decode import trtllm_batch_decode_with_kv_cache_mla | ||
|
|
||
| from vllm.attention.backends.abstract import (AttentionLayer, AttentionType, | ||
| is_quantized_kv_cache) | ||
| from vllm.logger import init_logger | ||
| from vllm.v1.attention.backends.mla.common import (MLACommonBackend, | ||
| MLACommonImpl, | ||
| MLACommonMetadata) | ||
|
|
||
| logger = init_logger(__name__) | ||
|
|
||
| FLASHINFER_MLA_WORKSPACE_BUFFER_SIZE = 128 * 1024 * 1024 | ||
|
|
||
|
|
||
| class FlashInferMLABackend(MLACommonBackend): | ||
|
|
||
| @staticmethod | ||
| def get_name() -> str: | ||
| return "FLASHINFER_MLA" | ||
|
|
||
| @staticmethod | ||
| def get_impl_cls() -> type["FlashInferMLAImpl"]: | ||
| return FlashInferMLAImpl | ||
|
|
||
|
|
||
| g_fi_workspace = torch.zeros( | ||
| FLASHINFER_MLA_WORKSPACE_BUFFER_SIZE, | ||
| dtype=torch.uint8, | ||
| device="cuda", | ||
| ) | ||
|
|
||
|
|
||
| class FlashInferMLAImpl(MLACommonImpl[MLACommonMetadata]): | ||
|
|
||
| def __init__( | ||
| self, | ||
| num_heads: int, | ||
| head_size: int, | ||
| scale: float, | ||
| num_kv_heads: int, | ||
| alibi_slopes: Optional[list[float]], | ||
| sliding_window: Optional[int], | ||
| kv_cache_dtype: str, | ||
| logits_soft_cap: Optional[float], | ||
| attn_type: str, | ||
| kv_sharing_target_layer_name: Optional[str], | ||
| # MLA Specific Arguments | ||
| **mla_args) -> None: | ||
| super().__init__(num_heads, head_size, scale, num_kv_heads, | ||
| alibi_slopes, sliding_window, kv_cache_dtype, | ||
| logits_soft_cap, attn_type, | ||
| kv_sharing_target_layer_name, **mla_args) | ||
|
|
||
| unsupported_features = [alibi_slopes, sliding_window, logits_soft_cap] | ||
| if any(unsupported_features): | ||
| raise NotImplementedError( | ||
| "FlashInferMLAImpl does not support one of the following: " | ||
| "alibi_slopes, sliding_window, logits_soft_cap") | ||
|
|
||
| if attn_type != AttentionType.DECODER: | ||
| raise NotImplementedError("Encoder self-attention and " | ||
| "encoder/decoder cross-attention " | ||
| "are not implemented for " | ||
| "FlashInferMLAImpl") | ||
|
|
||
| if is_quantized_kv_cache(self.kv_cache_dtype): | ||
| raise NotImplementedError( | ||
| "FlashInferMLA V1 with FP8 KV cache not yet supported") | ||
|
|
||
| self._workspace_buffer = g_fi_workspace | ||
|
|
||
| def _forward_decode( | ||
| self, | ||
| q_nope: torch.Tensor, | ||
| q_pe: torch.Tensor, | ||
| kv_c_and_k_pe_cache: torch.Tensor, | ||
| attn_metadata: MLACommonMetadata, | ||
| layer: AttentionLayer, | ||
| ) -> torch.Tensor: | ||
| assert kv_c_and_k_pe_cache.numel() > 0 | ||
| assert attn_metadata.decode is not None | ||
|
|
||
| q = torch.cat([q_nope, q_pe], dim=-1) | ||
| # trtllm API requires extra dimension q_len_per_request for MTP | ||
| q = q.unsqueeze(1) | ||
|
|
||
| o = trtllm_batch_decode_with_kv_cache_mla( | ||
| query=q, | ||
| kv_cache=kv_c_and_k_pe_cache.unsqueeze(1), | ||
| workspace_buffer=self._workspace_buffer, | ||
| qk_nope_head_dim=self.qk_nope_head_dim, | ||
| kv_lora_rank=self.kv_lora_rank, | ||
| qk_rope_head_dim=self.qk_rope_head_dim, | ||
| block_tables=attn_metadata.decode.block_table, | ||
| seq_lens=attn_metadata.decode.seq_lens, | ||
| max_seq_len=attn_metadata.max_seq_len, | ||
| bmm1_scale=self.scale, | ||
| ) | ||
|
|
||
| return self._v_up_proj(o) | ||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.