mirror of
https://git.datalinker.icu/vllm-project/vllm.git
synced 2026-07-27 02:27:13 +08:00
Signed-off-by: Lucas Wilkinson <lwilkinson@neuralmagic.com> Signed-off-by: Lucas Wilkinson <lwilkins@redhat.com> Signed-off-by: Matthew Bonanni <mbonanni001@gmail.com> Co-authored-by: Matthew Bonanni <mbonanni001@gmail.com> Co-authored-by: Matthew Bonanni <mbonanni@redhat.com>
190 lines
7.0 KiB
Python
190 lines
7.0 KiB
Python
# SPDX-License-Identifier: Apache-2.0
|
|
# SPDX-FileCopyrightText: Copyright contributors to the vLLM project
|
|
|
|
from dataclasses import dataclass
|
|
from typing import ClassVar, Optional
|
|
|
|
import torch
|
|
|
|
from vllm.attention.backends.abstract import (AttentionLayer, AttentionType,
|
|
is_quantized_kv_cache)
|
|
from vllm.attention.utils.fa_utils import (flash_attn_supports_mla,
|
|
get_flash_attn_version)
|
|
from vllm.config import VllmConfig
|
|
from vllm.logger import init_logger
|
|
from vllm.v1.attention.backends.mla.common import (MLACommonBackend,
|
|
MLACommonDecodeMetadata,
|
|
MLACommonImpl,
|
|
MLACommonMetadata,
|
|
MLACommonMetadataBuilder)
|
|
from vllm.v1.kv_cache_interface import AttentionSpec
|
|
from vllm.vllm_flash_attn import flash_attn_varlen_func, get_scheduler_metadata
|
|
|
|
logger = init_logger(__name__)
|
|
|
|
|
|
class FlashAttnMLABackend(MLACommonBackend):
|
|
|
|
@staticmethod
|
|
def get_name() -> str:
|
|
return "FLASH_ATTN_MLA"
|
|
|
|
@staticmethod
|
|
def get_metadata_cls() -> type["FlashAttnMLAMetadata"]:
|
|
return FlashAttnMLAMetadata
|
|
|
|
@staticmethod
|
|
def get_builder_cls() -> type["FlashAttnMLAMetadataBuilder"]:
|
|
return FlashAttnMLAMetadataBuilder
|
|
|
|
@staticmethod
|
|
def get_impl_cls() -> type["FlashAttnMLAImpl"]:
|
|
return FlashAttnMLAImpl
|
|
|
|
|
|
@dataclass
|
|
class FlashAttnMLADecodeMetadata(MLACommonDecodeMetadata):
|
|
query_start_loc: torch.Tensor
|
|
max_query_len: int
|
|
max_seq_len: int
|
|
scheduler_metadata: Optional[torch.Tensor] = None
|
|
|
|
|
|
@dataclass
|
|
class FlashAttnMLAMetadata(MLACommonMetadata[FlashAttnMLADecodeMetadata]):
|
|
pass
|
|
|
|
|
|
class FlashAttnMLAMetadataBuilder(
|
|
MLACommonMetadataBuilder[FlashAttnMLAMetadata]):
|
|
reorder_batch_threshold: ClassVar[int] = 512
|
|
|
|
def __init__(self, kv_cache_spec: AttentionSpec, layer_names: list[str],
|
|
vllm_config: VllmConfig, device: torch.device):
|
|
super().__init__(kv_cache_spec, layer_names, vllm_config, device,
|
|
FlashAttnMLAMetadata)
|
|
self.fa_aot_schedule = (get_flash_attn_version() == 3)
|
|
|
|
def _schedule_decode(self, num_reqs, cu_query_lens, max_query_len, seqlens,
|
|
max_seq_len, causal):
|
|
if self.fa_aot_schedule:
|
|
return get_scheduler_metadata(
|
|
batch_size=num_reqs,
|
|
max_seqlen_q=max_query_len,
|
|
max_seqlen_k=max_seq_len,
|
|
num_heads_q=self.num_heads,
|
|
num_heads_kv=1,
|
|
headdim=self.mla_dims.qk_rope_head_dim,
|
|
cache_seqlens=seqlens,
|
|
qkv_dtype=self.kv_cache_spec.dtype,
|
|
headdim_v=self.mla_dims.kv_lora_rank,
|
|
page_size=self.page_size,
|
|
cu_seqlens_q=cu_query_lens,
|
|
causal=causal,
|
|
)
|
|
return None
|
|
|
|
def _build_decode(
|
|
self, block_table_tensor: torch.Tensor, seq_lens_cpu: torch.Tensor,
|
|
seq_lens_device: torch.Tensor, query_start_loc_cpu: torch.Tensor,
|
|
query_start_loc_device: torch.Tensor
|
|
) -> FlashAttnMLADecodeMetadata:
|
|
query_lens_cpu = (query_start_loc_cpu[1:] - query_start_loc_cpu[:-1])
|
|
max_query_len = query_lens_cpu.max().item()
|
|
max_seq_len = seq_lens_cpu.max().item()
|
|
|
|
scheduler_metadata = self._schedule_decode(
|
|
num_reqs=seq_lens_cpu.numel(),
|
|
cu_query_lens=query_start_loc_device,
|
|
max_query_len=max_query_len,
|
|
seqlens=seq_lens_device,
|
|
max_seq_len=max_seq_len,
|
|
causal=True,
|
|
)
|
|
|
|
return FlashAttnMLADecodeMetadata(
|
|
block_table=block_table_tensor,
|
|
seq_lens=seq_lens_device,
|
|
query_start_loc=query_start_loc_device,
|
|
max_query_len=max_query_len,
|
|
max_seq_len=max_seq_len,
|
|
scheduler_metadata=scheduler_metadata,
|
|
)
|
|
|
|
|
|
class FlashAttnMLAImpl(MLACommonImpl[FlashAttnMLAMetadata]):
|
|
|
|
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)
|
|
|
|
assert flash_attn_supports_mla(), \
|
|
"FlashAttnMLA is not supported on this device"
|
|
|
|
unsupported_features = [alibi_slopes, sliding_window, logits_soft_cap]
|
|
if any(unsupported_features):
|
|
raise NotImplementedError(
|
|
"FlashAttnMLAImpl 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 "
|
|
"FlashAttnMLAImpl")
|
|
|
|
if is_quantized_kv_cache(self.kv_cache_dtype):
|
|
raise NotImplementedError(
|
|
"FlashAttnMLA V1 with FP8 KV cache not yet supported")
|
|
|
|
def _forward_decode(
|
|
self,
|
|
q_nope: torch.Tensor,
|
|
q_pe: torch.Tensor,
|
|
kv_c_and_k_pe_cache: torch.Tensor,
|
|
attn_metadata: FlashAttnMLAMetadata,
|
|
layer: AttentionLayer,
|
|
) -> torch.Tensor:
|
|
assert kv_c_and_k_pe_cache.numel() > 0
|
|
assert attn_metadata.decode is not None
|
|
|
|
if self.kv_cache_dtype.startswith("fp8"):
|
|
raise NotImplementedError(
|
|
"FP8 FlashAttention MLA not yet supported")
|
|
|
|
kv_c_cache = kv_c_and_k_pe_cache[..., :self.kv_lora_rank]
|
|
k_pe_cache = kv_c_and_k_pe_cache[..., self.kv_lora_rank:]
|
|
|
|
o = flash_attn_varlen_func(
|
|
q=q_pe,
|
|
k=k_pe_cache.unsqueeze(-2), # Add head dim of 1
|
|
v=kv_c_cache.unsqueeze(-2), # Add head dim of 1
|
|
q_v=q_nope,
|
|
max_seqlen_q=attn_metadata.decode.max_query_len,
|
|
cu_seqlens_q=attn_metadata.decode.query_start_loc,
|
|
max_seqlen_k=attn_metadata.decode.max_seq_len,
|
|
seqused_k=attn_metadata.decode.seq_lens,
|
|
block_table=attn_metadata.decode.block_table,
|
|
softmax_scale=self.scale,
|
|
causal=True,
|
|
fa_version=3, # only version 3 is supported
|
|
scheduler_metadata=attn_metadata.decode.scheduler_metadata,
|
|
)
|
|
|
|
return self._v_up_proj(o)
|