Skip to content

Commit 82c795d

Browse files
authored
Fix AttributeError about _use_fi_prefill (#29734)
Signed-off-by: Huamin Li <3ericli@gmail.com>
1 parent e1464c3 commit 82c795d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

vllm/v1/attention/backends/mla/common.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2061,7 +2061,7 @@ def forward(
20612061
attn_out,
20622062
lse,
20632063
get_dcp_group(),
2064-
is_lse_base_on_e=not self._use_fi_prefill,
2064+
is_lse_base_on_e=not getattr(self, "_use_fi_prefill", False),
20652065
)
20662066

20672067
# v_up projection

0 commit comments

Comments
 (0)