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

Drop CUDA 11.2 and 11.5, add Python 3.11 #96

Merged
merged 5 commits into from
Dec 13, 2023
Merged
Show file tree
Hide file tree
Changes from 4 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
4 changes: 2 additions & 2 deletions ci/compute-matrix.jq
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
def compute_arch($x):
["amd64"] |
if
(["ubuntu18.04", "centos7"] | index($x.LINUX_VER) != null) or ($x.CUDA_VER <= "11.2.2")
if
(["ubuntu18.04", "centos7"] | index($x.LINUX_VER) != null)
then
.
else
Expand Down
16 changes: 2 additions & 14 deletions matrix.yaml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
CUDA_VER:
- "11.2.2"
- "11.4.3"
- "11.5.2"
- "11.8.0"
- "12.0.1"
- "12.1.1"
PYTHON_VER:
- "3.9"
- "3.10"
- "3.11"
- "3.12"
bdice marked this conversation as resolved.
Show resolved Hide resolved
LINUX_VER:
- "ubuntu18.04"
- "ubuntu20.04"
Expand All @@ -20,12 +20,8 @@ IMAGE_REPO:
- "citestwheel"
exclude:
# ci-conda:
- LINUX_VER: "ubuntu22.04"
CUDA_VER: "11.2.2"
- LINUX_VER: "ubuntu22.04"
CUDA_VER: "11.4.3"
- LINUX_VER: "ubuntu22.04"
CUDA_VER: "11.5.2"

# wheels:
- LINUX_VER: "ubuntu18.04"
Expand All @@ -34,18 +30,10 @@ exclude:
IMAGE_REPO: "citestwheel"

# exclude citestwheel and ci-wheel for cuda versions other than 11.8.0 and 12.0.1
- CUDA_VER: "11.2.2"
IMAGE_REPO: "citestwheel"
- CUDA_VER: "11.2.2"
IMAGE_REPO: "ci-wheel"
- CUDA_VER: "11.4.3"
IMAGE_REPO: "citestwheel"
- CUDA_VER: "11.4.3"
IMAGE_REPO: "ci-wheel"
- CUDA_VER: "11.5.2"
IMAGE_REPO: "citestwheel"
- CUDA_VER: "11.5.2"
IMAGE_REPO: "ci-wheel"
- CUDA_VER: "12.1.1"
IMAGE_REPO: "citestwheel"
- CUDA_VER: "12.1.1"
Expand Down
Loading