santiago / are_games_running.sh
0 gustos
0 bifurcaciones
1 archivos
Última actividad
| 1 | #!/usr/bin/env bash |
| 2 | set -euo pipefail |
| 3 | |
| 4 | POWER_LIMIT=30 |
| 5 | |
| 6 | power="$(nvidia-smi --query-gpu=power.draw --format=csv,noheader,nounits 2>/dev/null | head -n1)" |
| 7 | |
| 8 | if [[ -z "$power" ]]; then |
| 9 | echo "OOPS: cannot read GPU power - check nvidia GPU driver" |
| 10 | exit 1 |
Siguiente
Anterior