selector.py 1.55 KB
Newer Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
from functools import lru_cache

import torch

from vllm.attention.backends.abstract import AttentionBackend
from vllm.logger import init_logger
from vllm.utils import is_hip

logger = init_logger(__name__)


@lru_cache(maxsize=None)
def get_attn_backend(dtype: torch.dtype) -> AttentionBackend:
    if _can_use_flash_attn(dtype):
        logger.info("Using FlashAttention backend.")
16
17
        from vllm.attention.backends.flash_attn import (  # noqa: F401
            FlashAttentionBackend)
18
19
20
        return FlashAttentionBackend
    else:
        logger.info("Using XFormers backend.")
21
22
        from vllm.attention.backends.xformers import (  # noqa: F401
            XFormersBackend)
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
        return XFormersBackend


def _can_use_flash_attn(dtype: torch.dtype) -> bool:
    if is_hip():
        # AMD GPUs.
        logger.info("Cannot use FlashAttention backend for AMD GPUs.")
        return False
    if torch.cuda.get_device_capability()[0] < 8:
        # Volta and Turing NVIDIA GPUs.
        logger.info("Cannot use FlashAttention backend for Volta and Turing "
                    "GPUs.")
        return False
    if dtype not in (torch.float16, torch.bfloat16):
        logger.info("Cannot use FlashAttention backend for dtype other than "
                    "torch.float16 or torch.bfloat16.")
        return False

    try:
        import flash_attn  # noqa: F401
    except ImportError:
44
45
46
        logger.info(
            "Cannot use FlashAttention because the package is not found. "
            "Please install it for better performance.")
47
48
        return False
    return True