Skip to content

Commit 480aa60

Browse files
committed
Enable cuda 12.4 build for release
1 parent 2561b6c commit 480aa60

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

scripts/gen_quick_start_module.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ class OperatingSystem(Enum):
4444
"accnone": ("cpu", ""),
4545
"cuda.x": ("cuda", "11.8"),
4646
"cuda.y": ("cuda", "12.1"),
47+
"cuda.z": ("cuda", "12.4"),
4748
"rocm5.x": ("rocm", "6.0")
4849
}
4950
}
@@ -107,8 +108,6 @@ def update_versions(versions, release_matrix, release_version):
107108

108109
if release_version != "nightly":
109110
version = release_matrix[OperatingSystem.LINUX.value][0]["stable_version"]
110-
# temporary change until release 2.4.0 - to generate cuda.x, cuda.y, cuda.z
111-
template = "2.3.0"
112111
if version not in versions["versions"]:
113112
versions["versions"][version] = copy.deepcopy(versions["versions"][template])
114113
versions["latest_stable"] = version

0 commit comments

Comments
 (0)