User documentation for the PLEIADES cluster at the University of Wuppertal
The third party script reportseff has been installed on all login nodes. It can provide a quick overview of your jobs performance:
You can use reportseff -u <username>
to show all jobs from the past week.
If the output is weird, use --no-color
to disable the color command line parameters.
A low TimeEff means, you can use a shorter time limit for your job, which is easier and faster to be scheduled by Slurm. A TImeEff 100% occurs, if your job hits the maximum time limit.
A low CPUEff means, your job is not utilizing the requested cores very well.
They could be limited by network or disk I/O.
If you suspect the disk I/O, try working in a local work directory in /tmp
.
If the application itself is inefficient at scaling to larger numbers of cores, you could run with less cores or try to optimize the application itself.
A large MemEff means, your job is utilizing the requested memory.
Everything below 100% is probably fine, as long as your job runs as expected.
A very large percentage above 100% could mean that your application expects more than 4GB of memory per core.
In this case, submit your job with a specific --mem
request or increase the number of cores without using them.
If MemEff gets exceedingly large, your job might be canceled (out of memory), which can be caused by memory leaks etc.