File tree Expand file tree Collapse file tree 1 file changed +2
-8
lines changed Expand file tree Collapse file tree 1 file changed +2
-8
lines changed Original file line number Diff line number Diff line change @@ -237,11 +237,7 @@ def get_libtorch_install_command(
237
237
if libtorch_config == "debug"
238
238
else libtorch_variant
239
239
)
240
- build_name = (
241
- f"{ prefix } -{ devtoolset } -{ _libtorch_variant } -latest.zip"
242
- if devtoolset == "cxx11-abi"
243
- else f"{ prefix } -{ _libtorch_variant } -latest.zip"
244
- )
240
+ build_name = f"{ prefix } -{ _libtorch_variant } -latest.zip"
245
241
246
242
if os == MACOS_ARM64 :
247
243
arch = "arm64"
@@ -251,9 +247,7 @@ def get_libtorch_install_command(
251
247
252
248
elif os == LINUX and (channel in (RELEASE , TEST )):
253
249
build_name = (
254
- f"{ prefix } -{ devtoolset } -{ _libtorch_variant } -{ CURRENT_VERSION } %2B{ desired_cuda } .zip"
255
- if devtoolset == "cxx11-abi"
256
- else f"{ prefix } -{ _libtorch_variant } -{ CURRENT_VERSION } %2B{ desired_cuda } .zip"
250
+ f"{ prefix } -{ _libtorch_variant } -{ CURRENT_VERSION } %2B{ desired_cuda } .zip"
257
251
)
258
252
elif os == WINDOWS and (channel in (RELEASE , TEST )):
259
253
build_name = (
You can’t perform that action at this time.
0 commit comments