mirror of
https://github.com/huggingface/text-generation-inference.git
synced 2025-04-21 14:52:20 +00:00
14 lines
604 B
Python
14 lines
604 B
Python
|
from text_generation_server.utils.import_utils import SYSTEM
|
||
|
import os
|
||
|
|
||
|
if os.getenv("USE_FLASH_ATTENTION", "").lower() == "false":
|
||
|
raise ImportError("`USE_FLASH_ATTENTION` is false.")
|
||
|
if SYSTEM == "cuda":
|
||
|
from .cuda import attention, paged_attention, reshape_and_cache, SUPPORTS_WINDOWING
|
||
|
elif SYSTEM == "rocm":
|
||
|
from .rocm import attention, paged_attention, reshape_and_cache, SUPPORTS_WINDOWING
|
||
|
elif SYSTEM == "xpu":
|
||
|
from .xpu import attention, paged_attention, reshape_and_cache, SUPPORTS_WINDOWING
|
||
|
else:
|
||
|
raise ImportError(f"System {SYSTEM} doesn't support flash/paged attention")
|