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
Original file line number Diff line number Diff line change
Expand Up @@ -629,6 +629,10 @@ def _disable_all_flash_attention() -> None:
if cudnn_version < (9, 21, 0):
logger.debug("Disabling FusedAttention for MXFP8 with cuDNN < 9.21.0")
use_fused_attention = False
elif cudnn_version in ((9, 23, 0), (9, 23, 1)):
# 9.23.0/9.23.1: known bugs with MXFP8 SDPA
logger.debug("Disabling FusedAttention for MXFP8 with cuDNN 9.23.0/9.23.1")
Comment thread
cyanguwa marked this conversation as resolved.
use_fused_attention = False
elif qkv_format == "thd":
logger.debug("Disabling FusedAttention for MXFP8 with qkv_format = thd")
use_fused_attention = False
Expand Down
Loading