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 libraries in dependencies.yaml #699

Merged
merged 2 commits into from
Feb 10, 2024
Merged
Changes from 1 commit
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
42 changes: 33 additions & 9 deletions dependencies.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -115,24 +115,15 @@ dependencies:
cuda: "11.8"
packages:
- nvcc_linux-64=11.8
- libcufile=1.4.0.31
- libcufile-dev=1.4.0.31
- libnvjpeg=11.6.0.55
- libnvjpeg-dev=11.6.0.55
- matrix:
arch: aarch64
cuda: "11.8"
packages:
- nvcc_linux-aarch64=11.8
- libnvjpeg=11.6.0.55
- libnvjpeg-dev=11.6.0.55
- matrix:
cuda: "12.*"
packages:
- cuda-nvcc
- libcufile-dev
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This matrix could be included on aarch64, which would pull in libcufile-dev. That isn't what we want. Thankfully we never ran into this in practice, to my knowledge.

- libnvjpeg-dev
- libnvjpeg-static
checks:
common:
- output_types: [conda, requirements]
Expand Down Expand Up @@ -178,7 +169,40 @@ dependencies:
cuda: "12.*"
packages:
- cuda-cudart-dev
- output_types: conda
matrices:
- matrix:
arch: x86_64
cuda: "11.8"
packages:
- libnvjpeg=11.6.0.55
- libnvjpeg-dev=11.6.0.55
- matrix:
arch: aarch64
cuda: "11.8"
packages:
- libnvjpeg=11.6.0.55
- libnvjpeg-dev=11.6.0.55
- matrix:
cuda: "12.*"
packages:
- libnvjpeg-dev
- libnvjpeg-static
- output_types: conda
matrices:
- matrix:
arch: aarch64
packages:
- matrix:
arch: x86_64
cuda: "11.8"
packages:
- libcufile=1.4.0.31
- libcufile-dev=1.4.0.31
- matrix:
arch: x86_64
cuda: "12.*"
packages:
- libcufile-dev
develop:
common:
Expand Down
Loading