vllm.v1.attention.backends.mla.prefill.cpu_native ¶
Inert MLA prefill backend for the CPU platform.
CPU's MLA attention impl (CPUMLAImpl) fully overrides forward_mha with a kernel that attends directly against the paged latent KV cache (covering both fresh prefill and cached-prefix continuation in one pass), so it never calls into a pluggable MLAPrefillBackend's run_prefill_new_tokens/ run_prefill_context_chunk. This class exists only to satisfy MLACommonMetadataBuilder's structural requirement that MLAAttention.prefill_backend be a real, cloneable object.
Classes:
-
CPUNativeMLAPrefillBackend–Placeholder MLA prefill backend for CPU; never actually invoked.
CPUNativeMLAPrefillBackend ¶
Bases: MLAPrefillBackend
Placeholder MLA prefill backend for CPU; never actually invoked.