Skip to content

Commit

Permalink
Add nvcomp support to older CUDA 11 versions on aarch64. (#255)
Browse files Browse the repository at this point in the history
Nightly CI runs are failing for CUDA 11.4 on ARM because the `cudatoolkit` package list does not specify a matrix entry for CUDA 11.4 on ARM for `nvcomp`. This adds the missing matrix entries for supported CUDA 11 versions.

See failure below:
```
ValueError: No matching matrix found in 'cudatoolkit' for: {'cuda': '11.4', 'arch': 'aarch64'}
```

https://github.com/rapidsai/kvikio/actions/runs/5652999609/job/15313480885

Authors:
  - Bradley Dice (https://github.com/bdice)

Approvers:
  - Vyas Ramasubramani (https://github.com/vyasr)

URL: #255
  • Loading branch information
bdice authored Jul 25, 2023
1 parent f624203 commit c45b5c4
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions dependencies.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -217,6 +217,21 @@ dependencies:
cuda: "11.8"
packages:
- *nvcomp
- matrix:
arch: aarch64
cuda: "11.5"
packages:
- *nvcomp
- matrix:
arch: aarch64
cuda: "11.4"
packages:
- *nvcomp
- matrix:
arch: aarch64
cuda: "11.2"
packages:
- *nvcomp
docs:
common:
- output_types: [conda, requirements]
Expand Down

0 comments on commit c45b5c4

Please sign in to comment.