Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions aiter/ops/triton/attention/pa_mqa_logits.py
Original file line number Diff line number Diff line change
Expand Up @@ -506,6 +506,7 @@ def deepgemm_fp8_paged_mqa_logits(
)
if triton_version >= Version("3.5.0"):
cdna_version = get_cdna_version()
is_gfx1250 = get_gfx() == "gfx1250"
kernel[grid](
batch_size,
next_n,
Expand Down Expand Up @@ -533,6 +534,7 @@ def deepgemm_fp8_paged_mqa_logits(
KVBlockSize,
hidden_dim,
cdna_version,
is_gfx1250,
)
else: # load AOT compiled gluon kernel
assert triton_version < Version(
Expand Down
Loading