[ROCm] Add Python 3.15 to the ROCm CI matrices - #40304
Open
mminutoli wants to merge 1 commit into
Open
Conversation
Build jax-rocm-plugin wheels for Python 3.15 in both the continuous and nightly/release workflows, and run the nightly ROCm pytest and Bazel test legs against 3.15. As with 3.13 and 3.14, jax-rocm-pjrt is excluded since it is built once against 3.12. Also offer 3.15 in the manual dispatch choices of build_rocm_artifacts.yml. Add 3.15 to the default version list of build/rocm/tools/build_wheels.py, which build/rocm/ci_build uses to build wheels in the manylinux container. The default was also a list rather than a comma-separated string, so it crashed in the argument parsing when the flag was not passed explicitly; make it a string. Hermetic Python 3.15 is already available (build/requirements_lock_3_15.txt and MODULE.bazel), and the nightly CPU/CUDA legs already publish cp315 jax/jaxlib wheels for the ROCm test jobs to download.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Adds Python 3.15 coverage to the ROCm CI, matching how 3.13 and 3.14 are already handled.
jax-rocm-pluginfor 3.15 inwheel_tests_continuous.ymlandwheel_tests_nightly_release.yml, and run the nightly ROCm pytest and Bazel legs against 3.15.jax-rocm-pjrtexcluded at 3.15, since it is built once against 3.12.build_rocm_artifacts.ymlmanual dispatch choices.build/rocm/tools/build_wheels.py, used bybuild/rocm/ci_build. The default was a list rather than a comma-separated string, so it raisedAttributeErroron.split(",")whenever the flag was not passed explicitly; it is now a string.