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
5 changes: 4 additions & 1 deletion .github/scripts/fbgemm_gpu_build.bash
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,10 @@ __configure_fbgemm_gpu_build_cuda () {
elif [[ $cuda_version_nvcc == *"V13.0"* ]] ||
[[ $cuda_version_nvcc == *"V12.9"* ]] ||
[[ $cuda_version_nvcc == *"V12.8"* ]]; then
local arch_list="8.0;9.0a;10.0a;12.0a"
# NOTE: If we reach this point, then we are not building and publishing on
# Nova, and so only a subset of supported architectures are selected, in
# order to reduce the binary size to fit into PyPI's storage limits
local arch_list="8.0;9.0a;10.0a"

elif [[ $cuda_version_nvcc == *"V12.6"* ]] ||
[[ $cuda_version_nvcc == *"V12.4"* ]] ||
Expand Down
Loading