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
| #!/bin/bash | |
| # SPDX-FileCopyrightText: Copyright (c) 2025 Alexis Girault. All rights reserved. | |
| # SPDX-License-Identifier: Apache-2.0 | |
| # | |
| # Licensed under the Apache License, Version 2.0 (the "License"); | |
| # you may not use this file except in compliance with the License. | |
| # You may obtain a copy of the License at | |
| # | |
| # http://www.apache.org/licenses/LICENSE-2.0 | |
| # |
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 |