Commit 72526d5
authored
#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 <[email protected]>
1 parent 71da488 commit 72526d5
File tree
2 files changed
+57
-2
lines changed- .github/workflows
- tools/scripts
2 files changed
+57
-2
lines changedLines changed: 55 additions & 0 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
| 23 | + | |
| 24 | + | |
| 25 | + | |
| 26 | + | |
| 27 | + | |
| 28 | + | |
| 29 | + | |
| 30 | + | |
| 31 | + | |
| 32 | + | |
| 33 | + | |
| 34 | + | |
| 35 | + | |
| 36 | + | |
| 37 | + | |
| 38 | + | |
| 39 | + | |
| 40 | + | |
| 41 | + | |
| 42 | + | |
| 43 | + | |
| 44 | + | |
| 45 | + | |
| 46 | + | |
| 47 | + | |
| 48 | + | |
| 49 | + | |
| 50 | + | |
| 51 | + | |
| 52 | + | |
| 53 | + | |
| 54 | + | |
| 55 | + | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
149 | 149 | | |
150 | 150 | | |
151 | 151 | | |
152 | | - | |
| 152 | + | |
153 | 153 | | |
154 | 154 | | |
155 | 155 | | |
156 | 156 | | |
157 | 157 | | |
158 | 158 | | |
159 | 159 | | |
160 | | - | |
| 160 | + | |
161 | 161 | | |
162 | 162 | | |
163 | 163 | | |
| |||
0 commit comments