Compare commits

...

3 Commits

Author SHA1 Message Date
5667ed8788 Merge branch 'main' into seemethere/cuda_arm64 2025-08-13 17:07:44 -04:00
846aa6dc80 Update torch_cuda_arch_list
Signed-off-by: Eli Uriegas <eliuriegas@meta.com>
2025-08-13 10:25:48 -07:00
f8b2e0067d ci: Add CUDA + arm64 relase builds
Signed-off-by: Eli Uriegas <eliuriegas@meta.com>
2025-08-13 10:25:35 -07:00

View File

@ -1,4 +1,22 @@
steps: steps:
# aarch64 + CUDA builds
# NOTE: PyTorch only has aarch64 builds for CUDA 12.9
# See CUDA_AARCH64_ARCHES in https://github.com/pytorch/pytorch/blob/main/.github/scripts/generate_binary_build_matrix.py#L41
- label: "Build arm64 wheel - CUDA 12.9"
id: build-wheel-arm64-cuda-12-9
agents:
queue: arm64_cpu_queue_postmerge
commands:
# #NOTE: torch_cuda_arch_list is derived from upstream PyTorch build files here:
# https://github.com/pytorch/pytorch/blob/main/.ci/aarch64_linux/aarch64_ci_build.sh#L7
- "DOCKER_BUILDKIT=1 docker build --build-arg max_jobs=16 --build-arg USE_SCCACHE=1 --build-arg GIT_REPO_CHECK=1 --build-arg CUDA_VERSION=12.9.1 --build-arg torch_cuda_arch_list='8.7 9.0 10.0+PTX' --tag vllm-ci:build-image --target build --progress plain -f docker/Dockerfile ."
- "mkdir artifacts"
- "docker run --rm -v $(pwd)/artifacts:/artifacts_host vllm-ci:build-image bash -c 'cp -r dist /artifacts_host && chmod -R a+rw /artifacts_host'"
- "bash .buildkite/scripts/upload-wheels.sh"
env:
DOCKER_BUILDKIT: "1"
# x86 + CUDA builds
- label: "Build wheel - CUDA 12.8" - label: "Build wheel - CUDA 12.8"
id: build-wheel-cuda-12-8 id: build-wheel-cuda-12-8
agents: agents: