From 4b7817c119e27ad9b1e1930a34006eff9680a457 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=B2=20Lucchesi?= Date: Tue, 3 Jun 2025 18:15:16 +0200 Subject: [PATCH] [Misc] Add missing `_Backend` enums (#19081) Signed-off-by: nicklucche --- vllm/platforms/interface.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/vllm/platforms/interface.py b/vllm/platforms/interface.py index 5c4f7a2f7dc7..c7a627262357 100644 --- a/vllm/platforms/interface.py +++ b/vllm/platforms/interface.py @@ -47,6 +47,8 @@ class _Backend(enum.Enum): TORCH_SDPA = enum.auto() FLASHINFER = enum.auto() TRITON_MLA = enum.auto() # Supported by V1 + TRITON_MLA_VLLM_V1 = enum.auto() + FLASHMLA_VLLM_V1 = enum.auto() FLASHMLA = enum.auto() # Supported by V1 HPU_ATTN = enum.auto() PALLAS = enum.auto()