Skip to content

Commit 122ce40

Browse files
committed
fix
1 parent af73738 commit 122ce40

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scripts/gen_quick_start_module.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -158,8 +158,8 @@ def update_versions(versions, release_matrix, release_version):
158158
}
159159
if instr["versions"] is not None:
160160
for ver in [CXX11_ABI, PRE_CXX11_ABI]:
161-
# temporarily apply removal of cxx11 abi only to nightly
162-
if ver == PRE_CXX11_ABI and release_version == "nightly":
161+
# temporarily apply removal of cxx11 abi only to nightly and rocm builds
162+
if ver == PRE_CXX11_ABI and (release_version == "nightly" or gpu_arch_type == "rocm"):
163163
continue
164164
else:
165165
instr["versions"][LIBTORCH_DWNL_INSTR[ver]] = (

0 commit comments

Comments
 (0)