We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a682ff7 commit 18848d5Copy full SHA for 18848d5
.circleci/scripts/binary_populate_env.sh
@@ -68,9 +68,10 @@ if [[ -z "$DOCKER_IMAGE" ]]; then
68
fi
69
70
71
-USE_GOLD_LINKER="ON"
72
-if [[ ${DESIRED_CUDA} = "cu102" ]]; then
73
- USE_GOLD_LINKER="OFF"
+USE_GOLD_LINKER="OFF"
+# GOLD linker can not be used if CUPTI is statically linked into PyTorch, see https://github.com/pytorch/pytorch/issues/57744
+if [[ ${DESIRED_CUDA} == "cpu" ]]; then
74
+ USE_GOLD_LINKER="ON"
75
76
77
# Default to nightly, since that's where this normally uploads to
0 commit comments