Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CUDA 12.0 conda support #101

Merged
merged 34 commits into from
Jul 18, 2023
Merged
Show file tree
Hide file tree
Changes from 32 commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
a747f52
update conda workflows to support CUDA 12
ajschmidt8 Feb 21, 2023
2254ee8
Merge branch 'branch-23.04' into cuda-120
sevagh Feb 23, 2023
14d781d
Merge branch-23.04 into cuda-120
ajschmidt8 Feb 23, 2023
229b0eb
update `arm` PR jobs to test against CUDA `12.0`
ajschmidt8 Feb 23, 2023
849a00e
update missed `arm` job to test against CUDA `12.0`
ajschmidt8 Feb 23, 2023
c67526f
update conda jobs to use `12.0.1`
ajschmidt8 Feb 23, 2023
bc72bda
Build CUDA 12 pip wheels alongside CUDA 11 (#49)
sevagh Feb 24, 2023
638734b
Merge remote-tracking branch 'origin/branch-23.04' into cuda-120
ajschmidt8 Mar 7, 2023
a9c5f8b
Merge remote-tracking branch 'origin/branch-23.04' into cuda-120
ajschmidt8 Mar 8, 2023
1239481
Bump driver version from 520 to 525 (#55)
jjacobelli Mar 13, 2023
3c45b88
Merge remote-tracking branch 'origin/branch-23.04' into cuda-120
ajschmidt8 Mar 17, 2023
741a177
Merge remote-tracking branch 'origin/branch-23.04' into cuda-120
ajschmidt8 Mar 20, 2023
3cb3eca
Merge remote-tracking branch 'origin/branch-23.04' into cuda-120
ajschmidt8 Mar 24, 2023
d690357
Merge remote-tracking branch 'upstream/branch-23.06' into cuda-120
bdice Mar 28, 2023
c28147e
Merge remote-tracking branch 'origin/branch-23.06' into cuda-120
ajschmidt8 Apr 10, 2023
fb96256
Merge remote-tracking branch 'origin/branch-23.06' into cuda-120
ajschmidt8 Apr 10, 2023
f432376
Merge remote-tracking branch 'origin/branch-23.06' into cuda-120
ajschmidt8 Apr 11, 2023
955dc3b
Merge remote-tracking branch 'origin/branch-23.06' into cuda-120
ajschmidt8 Apr 11, 2023
f287afc
fix quotes from bad merge conflict
ajschmidt8 Apr 13, 2023
3f4ed53
Merge branch 'branch-23.06' into cuda-120
jjacobelli Apr 17, 2023
68a2652
Merge remote-tracking branch 'origin/branch-23.06' into cuda-120
ajschmidt8 Apr 28, 2023
11770a6
Merge remote-tracking branch 'origin/branch-23.06' into cuda-120
ajschmidt8 May 19, 2023
cc4c0e2
Merge remote-tracking branch 'origin/branch-23.06' into cuda-120
ajschmidt8 May 19, 2023
ea3f07a
Merge branch 'branch-23.08' into cuda-120
bdice May 25, 2023
56825f2
Merge pull request #100 from bdice/cuda-120-branch-23.08
bdice May 25, 2023
881685b
Fix Python version 3.8 to 3.9.
bdice May 26, 2023
7050391
Merge remote-tracking branch 'upstream/branch-23.08' into cuda-120
bdice May 26, 2023
da85c6e
Drop arm64 support until CUDA 12 on conda-forge supports it.
bdice Jun 1, 2023
adca42e
Merge remote-tracking branch 'origin/branch-23.08' into cuda-120
ajschmidt8 Jun 5, 2023
f932dae
Merge remote-tracking branch 'origin/branch-23.08' into cuda-120
ajschmidt8 Jun 21, 2023
abfc3ca
Merge remote-tracking branch 'origin/branch-23.08' into cuda-120
vyasr Jun 29, 2023
d7295f7
Merge pull request #111 from rapidsai/branch-23.08
raydouglass Jul 5, 2023
78e8801
Add back CUDA 11.8 arm64 job.
bdice Jul 18, 2023
59da32d
Use rockylinux8 to match previous matrix.
bdice Jul 18, 2023
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
1 change: 1 addition & 0 deletions .github/workflows/conda-cpp-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ jobs:
export MATRIX="
- { CUDA_VER: '11.8.0', LINUX_VER: 'ubuntu22.04', ARCH: 'amd64', PY_VER: '3.10' }
- { CUDA_VER: '11.8.0', LINUX_VER: 'ubuntu22.04', ARCH: 'arm64', PY_VER: '3.10' }
- { CUDA_VER: '12.0.1', LINUX_VER: 'ubuntu22.04', ARCH: 'amd64', PY_VER: '3.10' }
"

echo "MATRIX=$(
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/conda-cpp-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ jobs:
- { CUDA_VER: '11.2.2', LINUX_VER: 'centos7', ARCH: 'amd64', PY_VER: '3.9', GPU: 'v100', DRIVER: 'earliest' }
- { CUDA_VER: '11.4.3', LINUX_VER: 'ubuntu20.04', ARCH: 'amd64', PY_VER: '3.9', GPU: 'v100', DRIVER: 'latest' }
- { CUDA_VER: '11.8.0', LINUX_VER: 'ubuntu22.04', ARCH: 'amd64', PY_VER: '3.10', GPU: 'v100', DRIVER: 'latest' }
- { CUDA_VER: '11.8.0', LINUX_VER: 'ubuntu22.04', ARCH: 'arm64', PY_VER: '3.10', GPU: 'a100', DRIVER: 'latest' }
- { CUDA_VER: '12.0.1', LINUX_VER: 'ubuntu22.04', ARCH: 'amd64', PY_VER: '3.10', GPU: 'v100', DRIVER: 'latest' }
bdice marked this conversation as resolved.
Show resolved Hide resolved
nightly:
- { CUDA_VER: '11.2.2', LINUX_VER: 'centos7', ARCH: 'amd64', PY_VER: '3.9', GPU: 'v100', DRIVER: 'earliest' }
- { CUDA_VER: '11.2.2', LINUX_VER: 'ubuntu20.04', ARCH: 'amd64', PY_VER: '3.9', GPU: 'v100', DRIVER: 'earliest' }
Expand All @@ -78,7 +78,7 @@ jobs:
- { CUDA_VER: '11.8.0', LINUX_VER: 'ubuntu22.04', ARCH: 'amd64', PY_VER: '3.10', GPU: 'v100', DRIVER: 'latest' }
- { CUDA_VER: '11.8.0', LINUX_VER: 'ubuntu22.04', ARCH: 'arm64', PY_VER: '3.10', GPU: 'a100', DRIVER: 'latest' }
- { CUDA_VER: '11.8.0', LINUX_VER: 'rockylinux8', ARCH: 'amd64', PY_VER: '3.10', GPU: 'v100', DRIVER: 'latest' }
- { CUDA_VER: '11.8.0', LINUX_VER: 'rockylinux8', ARCH: 'arm64', PY_VER: '3.10', GPU: 'a100', DRIVER: 'latest' }
- { CUDA_VER: '12.0.1', LINUX_VER: 'ubuntu22.04', ARCH: 'amd64', PY_VER: '3.10', GPU: 'v100', DRIVER: 'latest' }
ext_nightly:
- { CUDA_VER: '11.2.2', LINUX_VER: 'ubuntu22.04', ARCH: 'amd64', PY_VER: '3.10', GPU: 't4', DRIVER: 'latest' }
"
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/conda-python-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,8 @@ jobs:
- { CUDA_VER: '11.8.0', LINUX_VER: 'ubuntu22.04', ARCH: 'arm64', PY_VER: '3.9' }
- { CUDA_VER: '11.8.0', LINUX_VER: 'ubuntu22.04', ARCH: 'amd64', PY_VER: '3.10' }
- { CUDA_VER: '11.8.0', LINUX_VER: 'ubuntu22.04', ARCH: 'arm64', PY_VER: '3.10' }
- { CUDA_VER: '12.0.1', LINUX_VER: 'ubuntu22.04', ARCH: 'amd64', PY_VER: '3.9' }
- { CUDA_VER: '12.0.1', LINUX_VER: 'ubuntu22.04', ARCH: 'amd64', PY_VER: '3.10' }
"

echo "MATRIX=$(
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/conda-python-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ jobs:
- { CUDA_VER: '11.2.2', LINUX_VER: 'centos7', ARCH: 'amd64', PY_VER: '3.9', GPU: 'v100', DRIVER: 'earliest' }
- { CUDA_VER: '11.4.3', LINUX_VER: 'ubuntu20.04', ARCH: 'amd64', PY_VER: '3.9', GPU: 'v100', DRIVER: 'latest' }
- { CUDA_VER: '11.8.0', LINUX_VER: 'ubuntu22.04', ARCH: 'amd64', PY_VER: '3.10', GPU: 'v100', DRIVER: 'latest' }
- { CUDA_VER: '11.8.0', LINUX_VER: 'ubuntu22.04', ARCH: 'arm64', PY_VER: '3.10', GPU: 'a100', DRIVER: 'latest' }
- { CUDA_VER: '12.0.1', LINUX_VER: 'ubuntu22.04', ARCH: 'amd64', PY_VER: '3.10', GPU: 'v100', DRIVER: 'latest' }
nightly:
- { CUDA_VER: '11.2.2', LINUX_VER: 'centos7', ARCH: 'amd64', PY_VER: '3.9', GPU: 'v100', DRIVER: 'earliest' }
- { CUDA_VER: '11.2.2', LINUX_VER: 'ubuntu20.04', ARCH: 'amd64', PY_VER: '3.9', GPU: 'v100', DRIVER: 'earliest' }
Expand All @@ -81,7 +81,7 @@ jobs:
- { CUDA_VER: '11.8.0', LINUX_VER: 'ubuntu22.04', ARCH: 'amd64', PY_VER: '3.10', GPU: 'v100', DRIVER: 'latest' }
- { CUDA_VER: '11.8.0', LINUX_VER: 'ubuntu22.04', ARCH: 'arm64', PY_VER: '3.10', GPU: 'a100', DRIVER: 'latest' }
- { CUDA_VER: '11.8.0', LINUX_VER: 'rockylinux8', ARCH: 'amd64', PY_VER: '3.10', GPU: 'v100', DRIVER: 'latest' }
- { CUDA_VER: '11.8.0', LINUX_VER: 'rockylinux8', ARCH: 'arm64', PY_VER: '3.10', GPU: 'a100', DRIVER: 'latest' }
- { CUDA_VER: '12.0.1', LINUX_VER: 'ubuntu22.04', ARCH: 'amd64', PY_VER: '3.10', GPU: 'v100', DRIVER: 'latest' }
ext_nightly:
- { CUDA_VER: '11.2.2', LINUX_VER: 'ubuntu22.04', ARCH: 'amd64', PY_VER: '3.10', GPU: 't4', DRIVER: 'latest' }
"
Expand Down