We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 78d72b6 commit a5d3c18Copy full SHA for a5d3c18
packaging/env_vars.txt
@@ -1,3 +1,3 @@
1
export CI_BUILD="1"
2
export RELEASE="1"
3
-export CXX11_ABI="1"
+export USE_CXX11_ABI="1"
setup.py
@@ -141,7 +141,9 @@ def load_dep_info():
141
CXX11_ABI = True
142
143
if (cxx11_abi_env_var := os.environ.get("USE_CXX11_ABI")) is not None:
144
- if cxx11_abi_env_var == "1":
+ if (
145
+ cxx11_abi_env_var == "1" and __cuda_version__ == "12.6"
146
+ ): # Only use CXX11_ABI for CUDA 12.6
147
148
149
if platform.uname().processor == "aarch64":
0 commit comments