Add a test case for Linux aarch64 cu129 build (#7373) - #7383
Merged
Conversation
pytorch#7364 missed this spot and failed to modify the right variable. Let's add a test case to avoid this. I can confirm that Linux aarch64 cu129 is showing up now https://github.com/pytorch/test-infra/actions/runs/18603342105 I also test this locally with: ``` OS=linux-aarch64 python3 tools/scripts/generate_binary_build_matrix.py | jq { "include": [ { "python_version": "3.10", "gpu_arch_type": "cpu-aarch64", "gpu_arch_version": "", "desired_cuda": "cpu", "container_image": "pytorch/manylinux2_28_aarch64-builder:cpu-aarch64", "package_type": "wheel", "build_name": "wheel-py3_10-cpu-aarch64", "validation_runner": "linux.arm64.2xlarge", "installation": "pip3 install --pre torch torchvision torchaudio --index-url https://download.pytorch.org/whl/nightly/cpu", "channel": "nightly", "upload_to_base_bucket": "no", "stable_version": "2.9.0" }, { "python_version": "3.10", "gpu_arch_type": "cuda-aarch64", "gpu_arch_version": "12.6-aarch64", "desired_cuda": "cu126", "container_image": "pytorch/manylinuxaarch64-builder:cuda12.6", "package_type": "wheel", "build_name": "wheel-py3_10-cuda-aarch6412_6-aarch64", "validation_runner": "linux.arm64.m7g.4xlarge", "installation": "pip3 install --pre torch torchvision torchaudio --index-url https://download.pytorch.org/whl/nightly/cu126", "channel": "nightly", "upload_to_base_bucket": "no", "stable_version": "2.9.0" }, { "python_version": "3.10", "gpu_arch_type": "cuda-aarch64", "gpu_arch_version": "12.8-aarch64", "desired_cuda": "cu128", "container_image": "pytorch/manylinuxaarch64-builder:cuda12.8", "package_type": "wheel", "build_name": "wheel-py3_10-cuda-aarch6412_8-aarch64", "validation_runner": "linux.arm64.m7g.4xlarge", "installation": "pip3 install --pre torch torchvision torchaudio --index-url https://download.pytorch.org/whl/nightly/cu128", "channel": "nightly", "upload_to_base_bucket": "no", "stable_version": "2.9.0" 1 Update os check }, { "python_version": "3.10", "gpu_arch_type": "cuda-aarch64", "gpu_arch_version": "13.0-aarch64", "desired_cuda": "cu130", "container_image": "pytorch/manylinuxaarch64-builder:cuda13.0", "package_type": "wheel", "build_name": "wheel-py3_10-cuda-aarch6413_0-aarch64", "validation_runner": "linux.arm64.m7g.4xlarge", "installation": "pip3 install --pre torch torchvision torchaudio --index-url https://download.pytorch.org/whl/nightly/cu130", "channel": "nightly", "upload_to_base_bucket": "no", "stable_version": "2.9.0" }, { "python_version": "3.10", "gpu_arch_type": "cuda-aarch64", "gpu_arch_version": "12.9-aarch64", "desired_cuda": "cu129", "container_image": "pytorch/manylinuxaarch64-builder:cuda12.9", "package_type": "wheel", "build_name": "wheel-py3_10-cuda-aarch6412_9-aarch64", "validation_runner": "linux.arm64.m7g.4xlarge", "installation": "pip3 install --pre torch torchvision torchaudio --index-url https://download.pytorch.org/whl/nightly/cu129", "channel": "nightly", "upload_to_base_bucket": "no", "stable_version": "2.9.0" } ] } ``` --------- Signed-off-by: Huy Do <huydhn@gmail.com>
|
@huydhn is attempting to deploy a commit to the Meta Open Source Team on Vercel. A member of the Team first needs to authorize it. |
|
The latest updates on your projects. Learn more about Vercel for GitHub. 1 Skipped Deployment
💡 Enable Vercel Agent with $100 free credit for automated AI reviews |
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.
#7364 missed this spot and failed to modify the right variable. Let's add a test case to avoid this. I can confirm that Linux aarch64 cu129 is showing up now https://github.com/pytorch/test-infra/actions/runs/18603342105
I also test this locally with: