Il 10/09/20 22:19, Jason Simms ha scritto: > I've found that when I run seff, it fails to report calculated values, e.g.: I didn't know seff. Quite interesting. Same problem detected. I'm neither Perl nor Slurm expert so I'm quite sure there's a better way to do it, but I "fixed" it by changing at line 66: my $ncpus = $job->{'alloc_cpus'}; to my $ncpus = $job->{'req_cpus'};
And at ~ line 106: my $lmem = $step->{'stats'}{'rss_max'}; to: my %hash = split /[,=]/, $step->{'stats'}{'tres_usage_in_max'}; my $lmem=$hash{'2'}/1024; It seems to give meaningful results, for some value of "meaningful" :) Corrections accepted. HIH -- Diego Zuccato DIFA - Dip. di Fisica e Astronomia Servizi Informatici Alma Mater Studiorum - Università di Bologna V.le Berti-Pichat 6/2 - 40127 Bologna - Italy tel.: +39 051 20 95786