Rework cuda versioning features - Users must always specify a version feature instead of having default behavior. #175
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: [pull_request] | |
jobs: | |
cargo-check: | |
name: cargo-check | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
profile: minimal | |
toolchain: stable | |
override: true | |
- uses: actions-rs/cargo@v1 | |
with: | |
command: check | |
args: -F cuda-12020 | |
- uses: actions-rs/cargo@v1 | |
with: | |
command: check | |
args: --no-default-features --features cuda-12020,no-std,cudnn,cublas,cublaslt,nvrtc,driver,curand,nccl |