mla.py 6.17 KB
Newer Older
1
2
3
4
5
6
# SPDX-License-Identifier: Apache-2.0
# SPDX-FileCopyrightText: Copyright contributors to the vLLM project
from dataclasses import dataclass

import torch

7
from vllm.attention.layer import MLAAttention
8
from vllm.config import CacheConfig
9
from vllm.model_executor.custom_op import PluggableLayer
10
11
12
13
14
from vllm.model_executor.layers.quantization import QuantizationConfig


@dataclass
class MLAModules:
15
16
    """Modules used in MLA."""

17
18
19
20
    kv_a_layernorm: torch.nn.Module
    kv_b_proj: torch.nn.Module
    rotary_emb: torch.nn.Module
    o_proj: torch.nn.Module
21
22
23
24
25
26
    fused_qkv_a_proj: torch.nn.Module | None
    kv_a_proj_with_mqa: torch.nn.Module | None
    q_a_layernorm: torch.nn.Module | None
    q_b_proj: torch.nn.Module | None
    q_proj: torch.nn.Module | None
    indexer: torch.nn.Module | None
27
    is_sparse: bool
28
    topk_indices_buffer: torch.Tensor | None
29
    indexer_rotary_emb: torch.nn.Module | None = None
30
31


32
# --8<-- [start:multi_head_latent_attention]
33
34
35
@PluggableLayer.register("multi_head_latent_attention")
class MultiHeadLatentAttentionWrapper(PluggableLayer):
    """Pluggable MLA layer which allows OOT backends to add
36
    custom implementations of the outer MLA layer (including rope & o_proj).
37
38
39
    Note that currently oot platforms can still use CustomOp.register_oot to
    replace MLA layer entirly, although we use PluggableLayer to register
    this layer now.
40

41
    This class takes positions and hidden_states as input.
42
43
44
45
46
47
48
49
50
    The input tensors can either contain prefill tokens or decode tokens.
    The class does the following:

    1. MLA Preprocess.
    2. Perform multi-head attention to prefill tokens and
       multi-query attention to decode tokens separately.
    3. Return the output tensor.
    """

51
52
    # --8<-- [end:multi_head_latent_attention]

53
54
55
56
57
58
59
60
    def __init__(
        self,
        hidden_size: int,
        num_heads: int,
        scale: float,
        qk_nope_head_dim: int,
        qk_rope_head_dim: int,
        v_head_dim: int,
61
        q_lora_rank: int | None,
62
63
        kv_lora_rank: int,
        mla_modules: MLAModules,
64
65
        cache_config: CacheConfig | None = None,
        quant_config: QuantizationConfig | None = None,
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
        prefix: str = "",
    ) -> None:
        super().__init__()
        self.hidden_size = hidden_size
        self.qk_nope_head_dim = qk_nope_head_dim
        self.qk_rope_head_dim = qk_rope_head_dim
        self.qk_head_dim = qk_nope_head_dim + qk_rope_head_dim
        self.v_head_dim = v_head_dim
        self.q_lora_rank = q_lora_rank
        self.kv_lora_rank = kv_lora_rank
        self.num_heads = num_heads
        self.fused_qkv_a_proj = mla_modules.fused_qkv_a_proj
        self.kv_a_proj_with_mqa = mla_modules.kv_a_proj_with_mqa
        self.q_a_layernorm = mla_modules.q_a_layernorm
        self.q_b_proj = mla_modules.q_b_proj
        self.q_proj = mla_modules.q_proj
        self.kv_a_layernorm = mla_modules.kv_a_layernorm
        self.kv_b_proj = mla_modules.kv_b_proj
        self.rotary_emb = mla_modules.rotary_emb
        self.o_proj = mla_modules.o_proj
86
        self.indexer = mla_modules.indexer
87
        self.indexer_rope_emb = mla_modules.indexer_rotary_emb
88
89
90
91
92
93
        self.is_sparse = mla_modules.is_sparse

        if self.indexer is not None:
            assert hasattr(self.indexer, "topk_tokens")
            self.topk_tokens = self.indexer.topk_tokens
            self.topk_indices_buffer = mla_modules.topk_indices_buffer
94

95
        self.mla_attn = MLAAttention(
96
97
98
99
100
            num_heads=self.num_heads,
            scale=scale,
            qk_nope_head_dim=self.qk_nope_head_dim,
            qk_rope_head_dim=self.qk_rope_head_dim,
            v_head_dim=self.v_head_dim,
101
102
103
104
105
            q_lora_rank=self.q_lora_rank,
            kv_lora_rank=self.kv_lora_rank,
            cache_config=cache_config,
            quant_config=quant_config,
            prefix=f"{prefix}.attn",
106
            kv_b_proj=self.kv_b_proj,
107
            use_sparse=self.is_sparse,
108
            indexer=self.indexer,
109
110
111
112
        )

        self.prefix = prefix

113
    def forward(
114
115
116
        self,
        positions: torch.Tensor,
        hidden_states: torch.Tensor,
117
        llama_4_scaling: torch.Tensor | None = None,
118
119
120
121
122
    ) -> torch.Tensor:
        q_c = None
        kv_lora = None

        if self.q_lora_rank is not None:
123
            assert self.fused_qkv_a_proj is not None, (
124
                "fused_qkv_a_proj is required when q_lora_rank is not None"
125
126
            )
            assert self.q_a_layernorm is not None, (
127
                "q_a_layernorm is required when q_lora_rank is not None"
128
129
            )
            assert self.q_b_proj is not None, (
130
                "q_b_proj is required when q_lora_rank is not None"
131
            )
132
133
134
135
136
137
138
139
            qkv_lora = self.fused_qkv_a_proj(hidden_states)[0]
            q_c, kv_lora = qkv_lora.split(
                [self.q_lora_rank, self.kv_lora_rank + self.qk_rope_head_dim],
                dim=-1,
            )
            q_c = self.q_a_layernorm(q_c)
            q = self.q_b_proj(q_c)[0]
        else:
140
            assert self.kv_a_proj_with_mqa is not None, (
141
                "kv_a_proj_with_mqa is required when q_lora_rank is None"
142
143
            )
            assert self.q_proj is not None, (
144
                "q_proj is required when q_lora_rank is None"
145
            )
146
147
148
            kv_lora = self.kv_a_proj_with_mqa(hidden_states)[0]
            q = self.q_proj(hidden_states)[0]

149
        kv_c, k_pe = kv_lora.split([self.kv_lora_rank, self.qk_rope_head_dim], dim=-1)
150
151
152
153
154
155
        kv_c_normed = self.kv_a_layernorm(kv_c)

        q = q.view(-1, self.num_heads, self.qk_head_dim)
        # Add head dim of 1 to k_pe
        k_pe = k_pe.unsqueeze(1)

156
157
158
159
        if self.rotary_emb is not None:
            q[..., self.qk_nope_head_dim :], k_pe = self.rotary_emb(
                positions, q[..., self.qk_nope_head_dim :], k_pe
            )
160

161
        if self.indexer and self.is_sparse:
162
163
164
            _topk_indices = self.indexer(
                hidden_states, q_c, positions, self.indexer_rope_emb
            )
165

166
167
168
        if llama_4_scaling is not None:
            q *= llama_4_scaling

169
170
171
172
        attn_out = self.mla_attn(
            q,
            kv_c_normed,
            k_pe,
173
174
            output_shape=(hidden_states.shape[0], self.num_heads * self.v_head_dim),
        )
175

176
        return self.o_proj(attn_out)[0]