Skip to content
Open
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 @@ -141,9 +141,9 @@ def _host_descriptor_pre_hook(nargs):
if is_hip():
NUM_STAGES_OPTIONS = [1]
elif supports_host_descriptor():
NUM_STAGES_OPTIONS = [2, 3, 4]
NUM_STAGES_OPTIONS = [3]
else:
NUM_STAGES_OPTIONS = [2, 3, 4]
NUM_STAGES_OPTIONS = [3]

configs = [
triton.Config(
Expand All @@ -152,10 +152,10 @@ def _host_descriptor_pre_hook(nargs):
num_warps=w,
pre_hook=_host_descriptor_pre_hook,
)
for BM in [64, 128]
for BN in [32, 64, 128]
for BM in [128]
for BN in [128]
for s in NUM_STAGES_OPTIONS
for w in [4, 8]
for w in [4]
]


Expand Down
Loading
Loading