mirror of
https://git.datalinker.icu/vllm-project/vllm.git
synced 2025-12-24 08:15:02 +08:00
12 lines
306 B
Python
12 lines
306 B
Python
from vllm.triton_utils.importing import HAS_TRITON
|
|
|
|
__all__ = ["HAS_TRITON"]
|
|
|
|
if HAS_TRITON:
|
|
|
|
from vllm.triton_utils.custom_cache_manager import (
|
|
maybe_set_triton_cache_manager)
|
|
from vllm.triton_utils.libentry import libentry
|
|
|
|
__all__ += ["maybe_set_triton_cache_manager", "libentry"]
|