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: 1 addition & 1 deletion fbgemm_gpu/experimental/gemm/triton_gemm/fp8_gemm.py
Original file line number Diff line number Diff line change
Expand Up @@ -3846,7 +3846,7 @@ def _should_skip_config(block_k, matrix_instr_nonkdim):
"""Skip config if BLOCK_K=64 and matrix_instr_nonkdim=16 on GFX95+"""
try:
return (
block_k == 64
block_k <= 64
and matrix_instr_nonkdim == 16
and torch.version.hip is not None
and torch.cuda.get_device_capability() >= (9, 5)
Expand Down
Loading