Upgrade to vllm 0.17.0 corex v4.1 overlay

This commit is contained in:
2026-04-29 19:38:22 +08:00
parent 8fac6062e4
commit 938d0854a5
430 changed files with 35969 additions and 14511 deletions

View File

@@ -220,12 +220,13 @@ class Platform:
@classmethod
def import_kernels(cls) -> None:
"""Import any platform-specific C kernels."""
try:
import vllm._C # noqa: F401
except ImportError as e:
logger.warning("Failed to import from vllm._C: %r", e)
with contextlib.suppress(ImportError):
import vllm._moe_C # noqa: F401
pass
# try:
# import vllm._C # noqa: F401
# except ImportError as e:
# logger.warning("Failed to import from vllm._C: %r", e)
# with contextlib.suppress(ImportError):
# import vllm._moe_C # noqa: F401
@classmethod
def get_attn_backend_cls(