What is the EAGLE Fine Prefix Fix and why use it?
mainThe EAGLE Fine Prefix Fix is a runtime-only modification for vLLM that restores fine-grained hybrid prefix-cache hits when using MTP (Multi-Token Prediction) or EAGLE on full-attention + Mamba hybrid models (such as Qwen 3.5/3.6).
Standard vLLM behavior (after PR #46384) registers only the final prompt-tail hash at the prefix_match_unit granularity. This causes follow-up turns to miss cache entries if a context-load probe (like a single . token) occupies the last hash unit. This mod retains the predecessor FullAttention hash and the Mamba replay boundary, allowing EAGLE to rewind to a valid match even when the immediate tail has diverged.