Skip to content

Commit d9b3b6e

Browse files
authored
adding Enabling Blackwell support (#1254)
Signed-off-by: LosCrossos <165311345+loscrossos@users.noreply.github.com>
1 parent eb3ea37 commit d9b3b6e

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

setup.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,9 @@ def get_flash_attention2_nvcc_archs_flags(cuda_version: int):
176176
return []
177177
# Figure out default archs to target
178178
DEFAULT_ARCHS_LIST = ""
179-
if cuda_version >= 1108:
179+
if cuda_version >= 1208:
180+
DEFAULT_ARCHS_LIST = "8.0;8.6;9.0;10.0;12.0"
181+
elif cuda_version >= 1108:
180182
DEFAULT_ARCHS_LIST = "8.0;8.6;9.0"
181183
elif cuda_version > 1100:
182184
DEFAULT_ARCHS_LIST = "8.0;8.6"

0 commit comments

Comments
 (0)