Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
d89f90f
Updated QoLA (to port CK receipt patch) and TE manifest
Micky774 Apr 28, 2026
312212f
Updated manifest
Micky774 Apr 28, 2026
89f6983
Corrected AITER mha args validation against pinned commit
Micky774 Apr 28, 2026
c417e40
Updated cmake w/ dubious ownership protection
Micky774 Apr 28, 2026
90e3a5a
Merge branch 'dev' into zain/qola/aiter-update
Micky774 Apr 29, 2026
c7ecaf7
Corrected logging
Micky774 Apr 29, 2026
da6e9a6
Updated qola to build aiter w/ new third_party spec
Micky774 Apr 29, 2026
e7ed124
Added guards against AITER known buggy implementations
Micky774 Apr 29, 2026
6241f99
Updated build
Micky774 May 12, 2026
82ebdb6
Drop guard for corrected bug
Micky774 May 19, 2026
68a2eaf
Merge branch 'dev' into zain/qola/aiter-update
Micky774 May 28, 2026
f9ab59c
Update AITER commit, adopt new API
Micky774 May 28, 2026
e68b435
Initial two-tier lib w/ runtime dispatch -- WIP
Micky774 May 29, 2026
fec80b8
Added guard against graph-unsafe CK V2 kernels
Micky774 Jun 5, 2026
6eb3b23
Merge branch 'dev' into zain/qola/aiter-update
Micky774 Jun 5, 2026
8c11552
Merge branch 'zain/qola/aiter-update' into zain/aiter-gfx1250
Micky774 Jun 5, 2026
31681b8
Update AITER commit
Micky774 Jun 5, 2026
7716482
Updated QoLA commit
Micky774 Jun 5, 2026
eaf6b94
Bumped aiter commit
Micky774 Jun 11, 2026
bbe3e3b
CK-free build for gfx1250
Micky774 Jun 11, 2026
794bf7d
Add exclusions for CK-free build
Micky774 Jun 11, 2026
86c08f9
FWD V3 support
ipanfilo Jun 11, 2026
a0e92d9
Fix FWD V3 run and test
ipanfilo Jun 14, 2026
3fee7fd
Merge branch 'dev' into zain/aiter-gfx1250
Micky774 Jun 15, 2026
8fd79f9
Updated with AOT memory handling (dynamic on host)
Micky774 Jun 16, 2026
12e4b37
Merge branch 'zain/qola/aiter-update' into zain/aiter-gfx1250
Micky774 Jun 16, 2026
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
8 changes: 6 additions & 2 deletions tests/pytorch/attention/test_attention.py
Original file line number Diff line number Diff line change
Expand Up @@ -297,7 +297,9 @@ def test_dot_product_attention(

# Skip if only unfused backend is supported
# Double-count the CK backend since we want to compare V2/V3 kernels
has_ck_backend = IS_HIP_EXTENSION and FusedAttnBackend["CK"] in fused_attn_backends
# Issue #16948 CK V2 is disabled for gfx1250
has_ck_backend = ( IS_HIP_EXTENSION and FusedAttnBackend["CK"] in fused_attn_backends and
get_device_compute_capability() != (12, 5) )
if not has_ck_backend and (
len(fused_attn_backends) + flash_attn_supported + unfused_attn_supported
) < 2:
Expand Down Expand Up @@ -1494,7 +1496,9 @@ def test_transformer_layer(

# Skip if only unfused backend is supported
# Double-count the CK backend since we want to compare V2/V3 kernels
has_ck_backend = IS_HIP_EXTENSION and FusedAttnBackend["CK"] in fused_attn_backends
# Issue #16948 CK V2 is disabled for gfx1250
has_ck_backend = ( IS_HIP_EXTENSION and FusedAttnBackend["CK"] in fused_attn_backends and
get_device_compute_capability() != (12, 5) )
if not has_ck_backend and (
len(fused_attn_backends) + flash_attn_supported + unfused_attn_supported
) < 2:
Expand Down
Loading