layer.py 4.65 KB
Newer Older
1
"""Attention layer."""
2
from typing import Any, Dict, List, Optional
3
4
5
6

import torch
import torch.nn as nn

7
from vllm.attention import AttentionMetadata, AttentionType
8
from vllm.attention.selector import get_attn_backend
9
from vllm.config import CacheConfig
10
11
from vllm.model_executor.layers.quantization.base_config import (
    QuantizationConfig)
12
from vllm.model_executor.layers.quantization.kv_cache import BaseKVCacheMethod
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33


class Attention(nn.Module):
    """Attention layer.

    This class takes query, key, and value tensors as input. The input tensors
    can either contain prompt tokens or generation tokens.
    The class does the following:

    1. Store the input key and value tensors in the KV cache.
    2. Perform (multi-head/multi-query/grouped-query) attention.
    3. Return the output tensor.
    """

    def __init__(
        self,
        num_heads: int,
        head_size: int,
        scale: float,
        num_kv_heads: Optional[int] = None,
        alibi_slopes: Optional[List[float]] = None,
34
        cache_config: Optional[CacheConfig] = None,
35
        quant_config: Optional[QuantizationConfig] = None,
36
        blocksparse_params: Optional[Dict[str, Any]] = None,
37
        logits_soft_cap: Optional[float] = None,
38
        prefix: str = "",
39
40
    ) -> None:
        super().__init__()
41
42
43
        if cache_config is not None:
            kv_cache_dtype = cache_config.cache_dtype
            block_size = cache_config.block_size
44
            sliding_window = cache_config.sliding_window
45
            is_attention_free = cache_config.is_attention_free
46
47
48
        else:
            kv_cache_dtype = "auto"
            block_size = 16
49
            sliding_window = None
50
            is_attention_free = False
51
52
        if num_kv_heads is None:
            num_kv_heads = num_heads
53

54
        # The default k/v_scale is set to 1.0. This is ignored
55
56
        # when kv-cache is not fp8, and should be used with
        # kv-cache in fp8_e5m2. For kv-cache in fp8_e4m3, we
57
        # expect the pre-quantized k/v_scale to be loaded along
58
59
        # with the model weights.
        self.kv_cache_dtype = kv_cache_dtype
60
61
        self._k_scale = 1.0
        self._v_scale = 1.0
62
        quant_method = quant_config.get_quant_method(
63
            self, prefix=prefix) if quant_config else None
64
        if quant_method is not None:
65
            assert isinstance(quant_method, BaseKVCacheMethod)
66
67
            # TODO (mgoin): kv cache dtype should be specified in the FP8
            # checkpoint config and become the "auto" behavior
68
69
70
71
72
73
74
75
76
            if self.kv_cache_dtype == "fp8_e5m2":
                raise ValueError("fp8_e5m2 kv-cache is not supported with "
                                 "fp8 checkpoints.")
            # If quantization is enabled, we make "k_scale" and "v_scale"
            # parameters so that it can be loaded from the model checkpoint.
            # The k/v_scale will then be converted back to native float32
            # values after weight loading.
            self.quant_method = quant_method
            self.quant_method.create_weights(self)
77

78
79
80
        # During model initialization, the default dtype is set as the model
        # weight and activation dtype.
        dtype = torch.get_default_dtype()
81
82
83
        attn_backend = get_attn_backend(head_size, sliding_window, dtype,
                                        kv_cache_dtype, block_size,
                                        is_attention_free, blocksparse_params
84
                                        is not None)
85
        impl_cls = attn_backend.get_impl_cls()
86
        self.impl = impl_cls(num_heads, head_size, scale, num_kv_heads,
87
                             alibi_slopes, sliding_window, kv_cache_dtype,
88
                             blocksparse_params, logits_soft_cap)
89
90
91
92
93
94
95

    def forward(
        self,
        query: torch.Tensor,
        key: torch.Tensor,
        value: torch.Tensor,
        kv_cache: Optional[torch.Tensor],
96
        attn_metadata: AttentionMetadata,
97
        attn_type: AttentionType = AttentionType.DECODER,
98
    ) -> torch.Tensor:
99
100
101
102
103
104

        return self.impl.forward(query,
                                 key,
                                 value,
                                 kv_cache,
                                 attn_metadata,
105
106
                                 self._k_scale,
                                 self._v_scale,
107
                                 attn_type=attn_type)
108
109
110
111
112
113

    def extra_repr(self) -> str:
        s = f"head_size={self.impl.head_size}"  # type: ignore
        s += f", num_heads={self.impl.num_heads}"  # type: ignore
        s += f", num_kv_heads={self.impl.num_kv_heads}"  # type: ignore
        s += f", scale={self.impl.scale}"  # type: ignore
114
        s += f", backend={self.impl.__class__.__name__}"
115
        return s