Files
bi100_contest-03/vllm/triton_utils/importing.py
4paradigm 780b5e1ff4
Some checks failed
Docker Build and Push / docker (push) Failing after 2m10s
Initial commit
2026-07-24 15:17:23 +08:00

12 lines
259 B
Python

from importlib.util import find_spec
from vllm.logger import init_logger
logger = init_logger(__name__)
HAS_TRITON = False
if not HAS_TRITON:
logger.info("Triton not installed; certain GPU-related functions"
" will not be available.")