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

refactor CUDA versions in dependencies.yaml #1317

Merged
merged 4 commits into from
Jan 11, 2024
Merged
Show file tree
Hide file tree
Changes from 2 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
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ repos:
args: ["--config pyproject.toml"]
additional_dependencies: ["tomli"]
- repo: https://github.com/rapidsai/dependency-file-generator
rev: v1.5.1
rev: v1.8.0
hooks:
- id: rapids-dependency-file-generator
args: ["--clean"]
Expand Down
50 changes: 28 additions & 22 deletions dependencies.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ files:
includes:
- build_cpp
- build_python
- cudatoolkit
- cuda
- cuda_version
- develop
- docs
- py_version
Expand All @@ -23,18 +24,18 @@ files:
test_cpp:
output: none
includes:
- cudatoolkit
- cuda_version
test_python:
output: none
includes:
- cudatoolkit
- cuda_version
- py_version
- test_python_cuspatial
- test_python_cuproj
test_notebooks:
output: none
includes:
- cudatoolkit
- cuda_version
- depends_on_cuml
- notebooks
- py_version
Expand All @@ -46,7 +47,7 @@ files:
docs:
output: none
includes:
- cudatoolkit
- cuda_version
- docs
- py_version
py_build_cuspatial:
Expand Down Expand Up @@ -155,7 +156,6 @@ dependencies:
- matrix:
cuda: "12.0"
packages:
- cuda-version=12.0
- cuda-nvcc
build_cpp_cuproj:
common:
Expand Down Expand Up @@ -200,7 +200,6 @@ dependencies:
- matrix:
cuda: "12.0"
packages:
- cuda-version=12.0
- cuda-nvcc
build_python:
common:
Expand Down Expand Up @@ -232,36 +231,43 @@ dependencies:
packages:
- wheel
- setuptools
cudatoolkit:
cuda_version:
specific:
- output_types: conda
matrices:
- matrix:
cuda: "12.0"
cuda: "11.2"
packages:
- cuda-version=12.0
- cuda-cudart-dev
- cuda-nvrtc-dev
- cuda-cupti-dev
- cuda-version=11.2
- matrix:
cuda: "11.8"
cuda: "11.4"
packages:
- cuda-version=11.8
- cudatoolkit
- cuda-version=11.4
- matrix:
cuda: "11.5"
packages:
- cuda-version=11.5
- cudatoolkit
- matrix:
cuda: "11.4"
cuda: "11.8"
packages:
- cuda-version=11.4
- cudatoolkit
- cuda-version=11.8
- matrix:
cuda: "11.2"
cuda: "12.0"
packages:
- cuda-version=12.0
cuda:
specific:
- output_types: conda
matrices:
- matrix:
cuda: "12.*"
packages:
- cuda-cudart-dev
- cuda-nvrtc-dev
- cuda-cupti-dev
jameslamb marked this conversation as resolved.
Show resolved Hide resolved
- matrix:
cuda: "11.*"
packages:
- cuda-version=11.2
- cudatoolkit
develop:
common:
Expand Down