Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save weijianwen/43a6ddfc4515de0fd46c53e732136365 to your computer and use it in GitHub Desktop.
Save weijianwen/43a6ddfc4515de0fd46c53e732136365 to your computer and use it in GitHub Desktop.
SLURM
squeue --state=running --format="%.16u %C" | grep -v CPUS | awk '{sum += $2} END {print sum}'
squeue --state=running --format="%.16u %C" | grep -v CPUS | sort | awk '{sum[$1] += $2} END {for (i in sum) print i, sum[i]}' | sort -nk2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment