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

import torch
import torch.nn as nn

7
from vllm.attention.backends.abstract import AttentionMetadata
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
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,
        sliding_window: Optional[int] = None,
34
        cache_config: Optional[CacheConfig] = None,
35
        quant_config: Optional[QuantizationConfig] = None,
36
37
    ) -> None:
        super().__init__()
38
39
40
41
42
43
44
45
        if cache_config is not None:
            kv_cache_dtype = cache_config.cache_dtype
            block_size = cache_config.block_size
        else:
            kv_cache_dtype = "auto"
            block_size = 16
        if num_kv_heads is None:
            num_kv_heads = num_heads
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66

        # The default kv_scale is set to 1.0. This is ignored
        # when kv-cache is not fp8, and should be used with
        # kv-cache in fp8_e5m2. For kv-cache in fp8_e4m3, we
        # expect the pre-quantized kv_scale to be loaded along
        # with the model weights.
        self.kv_cache_dtype = kv_cache_dtype
        self._kv_scale = 1.0
        quant_method = quant_config.get_quant_method(
            self) if quant_config else None
        if quant_method is not None:
            if self.kv_cache_dtype == "fp8_e5m2":
                raise ValueError("fp8_e5m2 kv-cache is not supported with "
                                 "fp8 checkpoints.")
            # When FP8 quantization is enabled, we make a parameter
            # "kv_scale" so that it can be loaded from FP8 checkpoint.
            # The kv_scale will then be converted back
            # to self._kv_scale in a native float32 value after weight loading.
            self.quant_method = quant_method
            self.quant_method.create_weights(self)

67
68
69
70
71
72
73
        # During model initialization, the default dtype is set as the model
        # weight and activation dtype.
        dtype = torch.get_default_dtype()
        attn_backend = get_attn_backend(num_heads, head_size, num_kv_heads,
                                        sliding_window, dtype, kv_cache_dtype,
                                        block_size)
        impl_cls = attn_backend.get_impl_cls()
74
        self.impl = impl_cls(num_heads, head_size, scale, num_kv_heads,
75
                             alibi_slopes, sliding_window, kv_cache_dtype)
76
77
78
79
80
81
82

    def forward(
        self,
        query: torch.Tensor,
        key: torch.Tensor,
        value: torch.Tensor,
        kv_cache: Optional[torch.Tensor],
83
        attn_metadata: AttentionMetadata,
84
    ) -> torch.Tensor:
85
        return self.impl.forward(query, key, value, kv_cache, attn_metadata,
86
                                 self._kv_scale)
87
88
89
90
91
92
93

    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
        return s