Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 7 additions & 9 deletions tools/scripts/generate_binary_build_matrix.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,13 @@

PYTHON_ARCHES_DICT = {
"nightly": ["3.10", "3.11", "3.12", "3.13", "3.13t", "3.14", "3.14t"],
"test": ["3.10", "3.11", "3.12", "3.13", "3.13t", "3.14", "3.14t"],
"release": ["3.9", "3.10", "3.11", "3.12", "3.13", "3.13t"],

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Need to add python and cuda config as in test

"test": ["3.10", "3.11", "3.12", "3.13", "3.13t", "3.14"],
Comment thread
atalman marked this conversation as resolved.
Outdated
"release": ["3.10", "3.11", "3.12", "3.13", "3.14"],
Comment thread
atalman marked this conversation as resolved.
Outdated
}
CUDA_ARCHES_DICT = {
"nightly": ["12.6", "12.8", "13.0"],
"test": ["12.6", "12.8", "13.0"],
"release": ["12.6", "12.8", "12.9"],
"nightly": ["12.6", "12.8", "12.9", "13.0"],
Comment thread
atalman marked this conversation as resolved.
Outdated
"test": ["12.6", "12.8", "12.9", "13.0"],
Comment thread
atalman marked this conversation as resolved.
Outdated
"release": ["12.6", "12.8", "12.9", "13.0"],
Comment thread
atalman marked this conversation as resolved.
Outdated
}

ROCM_ARCHES_DICT = {
Expand Down Expand Up @@ -78,7 +78,7 @@

CURRENT_NIGHTLY_VERSION = "2.10.0"
CURRENT_CANDIDATE_VERSION = "2.9.0"
CURRENT_STABLE_VERSION = "2.8.0"
CURRENT_STABLE_VERSION = "2.9.0"
CURRENT_VERSION = CURRENT_STABLE_VERSION

# By default use Nightly for CUDA arches
Expand Down Expand Up @@ -297,9 +297,7 @@ def get_wheel_install_command(
whl_install_command = ""
if os == WINDOWS_ARM64:
# winarm64 has only nightly torch package for now
whl_install_command = (
f"{WHL_INSTALL_BASE} --pre {PACKAGES_TO_INSTALL_WHL_WIN_ARM64}" # noqa: E501
)
whl_install_command = f"{WHL_INSTALL_BASE} --pre {PACKAGES_TO_INSTALL_WHL_WIN_ARM64}" # noqa: E501
elif channel == "nightly":
whl_install_command = f"{WHL_INSTALL_BASE} --pre {PACKAGES_TO_INSTALL}"
else:
Expand Down
Loading
Loading