Note
- Find the NVIDIA GPU products matching the compute capability versions below here:
- compute capability ≥ 7.5 (
≥ sm_75) - compute capability < 7.5 (
< sm_75)
- compute capability ≥ 7.5 (
- Find me at bit.ly/cuda-gencode-compat-matrix
Note
≥ sm_75)< sm_75)| #!/bin/bash | |
| set -exo pipefail | |
| # Check for sudo | |
| if [[ $EUID -eq 0 ]]; then | |
| echo "This script must not be run as root" | |
| exit 1 | |
| fi | |
| # vars |
| [filter "lfs"] | |
| clean = git-lfs clean -- %f | |
| smudge = git-lfs smudge -- %f | |
| process = git-lfs filter-process | |
| required = true | |
| [alias] | |
| graph = log --graph --decorate --color --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' | |
| lg = graph --first-parent | |
| merges = lg --merges | |
| amend = commit --amend --no-edit --signoff |