From 254d39d2068c8e45a3ce6b61f9fc238b2646ad54 Mon Sep 17 00:00:00 2001 From: Johnny Date: Fri, 10 Jan 2025 19:26:22 +0100 Subject: [PATCH] Update wheels.yml --- .github/workflows/wheels.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/wheels.yml b/.github/workflows/wheels.yml index db6ba6572a..f740c52853 100644 --- a/.github/workflows/wheels.yml +++ b/.github/workflows/wheels.yml @@ -31,8 +31,8 @@ jobs: PY_VERSIONS = ['3.9', '3.10', '3.11', '3.12'] # NOTE: Don't forget to update `upload_pt`'s matrix # when changing the CUDA/ROCM versions below! - CU_VERSIONS = ['118', '121', '124'] - ROCM_VERSIONS = ["6.1"] # <- 6.0 broken in `manylinux_2_28` + CU_VERSIONS = ['118', '121', '124', '126'] + ROCM_VERSIONS = ['6.1', '6.2', '6.3'] # <- 6.0 broken in `manylinux_2_28` PY_CU = list(itertools.product(PY_VERSIONS, CU_VERSIONS)) PY_ROCM = list(itertools.product(PY_VERSIONS, ROCM_VERSIONS)) print("Full matrix PY_CU", PY_CU) @@ -111,6 +111,8 @@ jobs: - cu121 - cu124 - rocm6.1 + - rocm6.2 + - rocm6.3 uses: ./.github/workflows/wheels_upload_s3.yml with: aws_role: "arn:aws:iam::749337293305:role/pytorch_bot_uploader_role" @@ -118,4 +120,3 @@ jobs: aws_s3_cp_extra_args: --acl public-read filter: "*torch2.5.1+${{ matrix.suffix }}*" execute: ${{ github.repository == 'facebookresearch/xformers' && github.ref_type == 'tag' }} -