Skip to content

Commit

Permalink
Build CUDA 12 pip wheels alongside CUDA 11
Browse files Browse the repository at this point in the history
  • Loading branch information
sevagh committed Feb 24, 2023
1 parent c67526f commit 78082b3
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/wheels-manylinux-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ jobs:
matrix:
python: ['3.8', '3.10']
arch: [amd64, arm64]
ctk: ['11.8.0']
ctk: ['11.8.0', '12.0.1']
runs-on:
- self-hosted
- linux
Expand Down
11 changes: 8 additions & 3 deletions .github/workflows/wheels-manylinux-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,14 +65,19 @@ jobs:
export MATRICES=$(cat <<EOF
{
"pull-request": [
{ "arch": "amd64", "python": "3.8", "ctk": "11.8.0", "image": "ubuntu18.04", "test-type": "unit", "test-command": "${{ inputs.test-unittest }}", "gpu": "v100", "driver": "520" },
{ "arch": "arm64", "python": "3.8", "ctk": "11.8.0", "image": "ubuntu20.04", "test-type": "smoke", "test-command": "${{ inputs.test-smoketest }}", "gpu": "a100", "driver": "525" }
{ "arch": "amd64", "python": "3.8", "ctk": "11.8.0", "image": "ubuntu18.04", "test-type": "unit", "test-command": "${{ inputs.test-unittest }}", "gpu": "v100", "driver": "520" },
{ "arch": "amd64", "python": "3.8", "ctk": "12.0.1", "image": "ubuntu18.04", "test-type": "unit", "test-command": "${{ inputs.test-unittest }}", "gpu": "v100", "driver": "525" },
{ "arch": "arm64", "python": "3.8", "ctk": "12.0.1", "image": "ubuntu20.04", "test-type": "smoke", "test-command": "${{ inputs.test-smoketest }}", "gpu": "a100", "driver": "525" }
],
"nightly": [
{ "arch": "amd64", "python": "3.8", "ctk": "11.8.0", "image": "ubuntu18.04", "test-type": "unit", "test-command": "${{ inputs.test-unittest }}", "gpu": "v100", "driver": "520" },
{ "arch": "amd64", "python": "3.10", "ctk": "11.8.0", "image": "ubuntu18.04", "test-type": "unit", "test-command": "${{ inputs.test-unittest }}", "gpu": "v100", "driver": "520" },
{ "arch": "arm64", "python": "3.8", "ctk": "11.8.0", "image": "ubuntu20.04", "test-type": "unit", "test-command": "${{ inputs.test-unittest }}", "gpu": "a100", "driver": "525" },
{ "arch": "arm64", "python": "3.10", "ctk": "11.8.0", "image": "ubuntu20.04", "test-type": "unit", "test-command": "${{ inputs.test-unittest }}", "gpu": "a100", "driver": "525" }
{ "arch": "arm64", "python": "3.10", "ctk": "11.8.0", "image": "ubuntu20.04", "test-type": "unit", "test-command": "${{ inputs.test-unittest }}", "gpu": "a100", "driver": "525" },
{ "arch": "amd64", "python": "3.8", "ctk": "12.0.1", "image": "ubuntu18.04", "test-type": "unit", "test-command": "${{ inputs.test-unittest }}", "gpu": "v100", "driver": "525" },
{ "arch": "amd64", "python": "3.10", "ctk": "12.0.1", "image": "ubuntu18.04", "test-type": "unit", "test-command": "${{ inputs.test-unittest }}", "gpu": "v100", "driver": "525" },
{ "arch": "arm64", "python": "3.8", "ctk": "12.0.1", "image": "ubuntu20.04", "test-type": "unit", "test-command": "${{ inputs.test-unittest }}", "gpu": "a100", "driver": "525" },
{ "arch": "arm64", "python": "3.10", "ctk": "12.0.1", "image": "ubuntu20.04", "test-type": "unit", "test-command": "${{ inputs.test-unittest }}", "gpu": "a100", "driver": "525" }
]
}
EOF)
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/wheels-pure-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,10 +56,10 @@ jobs:
needs: wheel-epoch-timestamp
strategy:
matrix:
ctk: ["11.8.0"]
ctk: ["11.8.0", "12.0.1"]
runs-on: ubuntu-latest
container:
image: "rapidsai/cibuildwheel:cuda-runtime-${{ matrix.ctk }}-ubuntu20.04"
image: "rapidsai/cibuildwheel:cuda-runtime-11.8.0-ubuntu20.04"
env:
RAPIDS_BUILD_TYPE: ${{ inputs.build_type }}
RAPIDS_PY_VERSION: "3.8"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/wheels-pure-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
runs-on: [self-hosted, linux, amd64, gpu-v100-520-1]
strategy:
matrix:
ctk: ["11.8.0"]
ctk: ["11.8.0", "12.0.1"]
container:
image: "rapidsai/citestwheel:cuda-devel-${{ matrix.ctk }}-ubuntu18.04"
env:
Expand Down

0 comments on commit 78082b3

Please sign in to comment.