Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 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
10 changes: 5 additions & 5 deletions .github/workflows/build_vllm.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ permissions:

jobs:
build:
name: forge-cu128-nightly
name: forge-cu126-nightly
uses: pytorch/test-infra/.github/workflows/build_wheels_linux.yml@main
strategy:
fail-fast: false
Expand All @@ -31,11 +31,11 @@ jobs:
{
"python_version": "3.10",
"gpu_arch_type": "cpu",
"gpu_arch_version": "12.8",
"desired_cuda": "cu128",
"container_image": "pytorch/manylinux2_28-builder:cuda12.8",
"gpu_arch_version": "12.6",
"desired_cuda": "cu126",
"container_image": "pytorch/manylinux2_28-builder:cuda12.6",
"package_type": "manywheel",
"build_name": "manywheel-py3_10-cuda12_8",
"build_name": "manywheel-py3_10-cuda12_6",
"validation_runner": "linux.12xlarge.memory",
"installation": "pip3 install --pre torch torchvision torchaudio --index-url https://download.pytorch.org/whl/nightly/cu128",
"channel": "nightly",
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/build_wheels.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ permissions:

jobs:
build:
name: forge-cu128-nightly
name: forge-cu126-nightly
uses: pytorch/test-infra/.github/workflows/build_wheels_linux.yml@main
strategy:
fail-fast: false
Expand All @@ -31,11 +31,11 @@ jobs:
{
"python_version": "3.10",
"gpu_arch_type": "cuda",
"gpu_arch_version": "12.8",
"desired_cuda": "cu128",
"container_image": "pytorch/manylinux2_28-builder:cuda12.8",
"gpu_arch_version": "12.6",
"desired_cuda": "cu126",
"container_image": "pytorch/manylinux2_28-builder:cuda12.6",
"package_type": "manywheel",
"build_name": "manywheel-py3_10-cuda12_8",
"build_name": "manywheel-py3_10-cuda12_6",
"validation_runner": "linux.4xlarge.nvidia.gpu",
"installation": "pip3 install --pre torch torchvision torchaudio --index-url https://download.pytorch.org/whl/nightly/cu128",
"channel": "nightly",
Expand Down
2 changes: 1 addition & 1 deletion scripts/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@ main() {
download_vllm_wheel

log_info "Installing PyTorch nightly..."
pip install torch==$PYTORCH_VERSION --index-url https://download.pytorch.org/whl/nightly/cu129
pip install torch==$PYTORCH_VERSION --index-url https://download.pytorch.org/whl/nightly/cu126
Copy link
Contributor

Choose a reason for hiding this comment

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

leave this as is for now


log_info "Installing all wheels (local + downloaded)..."
pip install "$WHEEL_DIR"/*.whl
Expand Down
Loading