mirror of
https://git.datalinker.icu/vllm-project/vllm.git
synced 2026-03-17 16:17:14 +08:00
Fix AttributeError about _use_fi_prefill (#29734)
Signed-off-by: Huamin Li <3ericli@gmail.com>
This commit is contained in:
parent
e1464c3a08
commit
82c795d6f2
@ -2061,7 +2061,7 @@ class MLACommonImpl(MLACommonBaseImpl[M], Generic[M]):
|
||||
attn_out,
|
||||
lse,
|
||||
get_dcp_group(),
|
||||
is_lse_base_on_e=not self._use_fi_prefill,
|
||||
is_lse_base_on_e=not getattr(self, "_use_fi_prefill", False),
|
||||
)
|
||||
|
||||
# v_up projection
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user