Skip to content
Draft
Show file tree
Hide file tree
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
10 changes: 5 additions & 5 deletions tritonbench/kernels/blackwell_triton_fused_attention.py
Original file line number Diff line number Diff line change
Expand Up @@ -276,14 +276,14 @@ def make_standard_config(BM, BN, s, w, subtile, vectmul, add2reduce, maxreg):

configs = [
make_standard_config(BM, BN, s, w, subtile, vectmul, add2reduce, maxreg)
for BM in [128, 256]
for BN in [64, 128]
for s in NUM_STAGES_OPTIONS
for BM in [256] # 128, 256]
for BN in [128] # 64, 128]
for s in [3] # NUM_STAGES_OPTIONS
for w in [4]
for subtile in [True]
for vectmul in [0, 1]
for vectmul in [1] # 0, 1]
for add2reduce in [False]
for maxreg in [152, 192]
for maxreg in [152] # , 192]
]


Expand Down
Loading
Loading