[Bugfix] Fix Can't instantiate abstract class DeepseekV32IndexerBackend (#33052)

Signed-off-by: chaunceyjiang <chaunceyjiang@gmail.com>
This commit is contained in:
Chauncey
2026-01-26 22:44:02 +08:00
committed by GitHub
parent bb17e8f11c
commit 9ef3b718d9

View File

@@ -302,7 +302,7 @@ class NixlConnector(KVConnectorBase_V1):
@property
def prefer_cross_layer_blocks(self) -> bool:
backend = get_current_attn_backend(self._vllm_config)
if backend().get_name() not in (
if backend.get_name() not in (
"FLASH_ATTN",
"FLASHINFER",
):