Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
OpenDAS
vllm_cscc
Commits
047797ef
Unverified
Commit
047797ef
authored
Apr 23, 2025
by
vllmellm
Committed by
GitHub
Apr 22, 2025
Browse files
[Bugfix] Triton FA function takes no keyword arguments (#16902)
Signed-off-by:
vllmellm
<
vllm.ellm@embeddedllm.com
>
parent
eb8ef422
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
1 deletion
+8
-1
vllm/attention/backends/mla/common.py
vllm/attention/backends/mla/common.py
+8
-1
No files found.
vllm/attention/backends/mla/common.py
View file @
047797ef
...
...
@@ -1091,7 +1091,14 @@ class MLACommonImpl(MLAAttentionImpl[T], Generic[T]):
q
,
k
,
maybe_padded_v
,
**
kwargs
,
None
,
# output
kwargs
[
"cu_seqlens_q"
],
kwargs
[
"cu_seqlens_k"
],
kwargs
[
"max_seqlen_q"
],
kwargs
[
"max_seqlen_k"
],
kwargs
[
"causal"
],
softmax_scale
,
None
,
# bias
)
if
is_vllm_fa
:
attn_out
=
self
.
flash_attn_varlen_func
(
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment