Skip to content

Commit

Permalink
Add CUDA 12.0.1 support
Browse files Browse the repository at this point in the history
  • Loading branch information
raydouglass committed Jul 25, 2023
1 parent 9ea824e commit 643a203
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# syntax=docker/dockerfile:1

ARG CUDA_VER=11.8.0
ARG CUDA_VER=12.0.1
ARG PYTHON_VER=3.10
ARG LINUX_VER=ubuntu22.04

Expand Down
3 changes: 2 additions & 1 deletion ci/compute-matrix.jq
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ def compute_arch($x):
["amd64"] |
if
$x.LINUX_VER != "ubuntu20.04" # Dask-sql arm64 requires glibc >=2.32
and $x.CUDA_VER < "12.0" # arm64 packages not available for CUDA 12.0 yet
then
. + ["arm64"]
else
Expand Down Expand Up @@ -44,4 +45,4 @@ def compute_matrix($input):
filter_excludes(.; $excludes) |
compute_arch(.)
] |
{include: .};
{include: .};
4 changes: 3 additions & 1 deletion matrix-test.yaml
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
pull-request:
- { CUDA_VER: '11.2.2', ARCH: 'amd64', PYTHON_VER: '3.9', GPU: 'v100', DRIVER: 'earliest' }
- { CUDA_VER: '11.8.0', ARCH: 'amd64', PYTHON_VER: '3.10', GPU: 'v100', DRIVER: 'latest' }
- { CUDA_VER: '11.8.0', ARCH: 'arm64', PYTHON_VER: '3.10', GPU: 'a100', DRIVER: 'latest' }
- { CUDA_VER: '12.0.1', ARCH: 'arm64', PYTHON_VER: '3.10', GPU: 'a100', DRIVER: 'latest' }
nightly:
- { CUDA_VER: '11.2.2', ARCH: 'amd64', PYTHON_VER: '3.9', GPU: 'v100', DRIVER: 'earliest' }
- { CUDA_VER: '11.2.2', ARCH: 'amd64', PYTHON_VER: '3.9', GPU: 'v100', DRIVER: 'latest' }
- { CUDA_VER: '11.8.0', ARCH: 'amd64', PYTHON_VER: '3.10', GPU: 'v100', DRIVER: 'latest' }
- { CUDA_VER: '11.8.0', ARCH: 'arm64', PYTHON_VER: '3.10', GPU: 'a100', DRIVER: 'latest' }
- { CUDA_VER: '12.0.1', ARCH: 'amd64', PYTHON_VER: '3.10', GPU: 'v100', DRIVER: 'latest' }
- { CUDA_VER: '12.0.1', ARCH: 'arm64', PYTHON_VER: '3.10', GPU: 'a100', DRIVER: 'latest' }
1 change: 1 addition & 0 deletions matrix.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
CUDA_VER:
- "11.2.2"
- "11.8.0"
- "12.0.1"
PYTHON_VER:
- "3.9"
- "3.10"
Expand Down

0 comments on commit 643a203

Please sign in to comment.