lanl / Pavilion

HPC testing harness
BSD 3-Clause "New" or "Revised" License
16 stars 12 forks source link

Single node jobs do not list node for trend data in test_results.csv #39

Closed cadejager closed 6 years ago

cadejager commented 6 years ago

In the results directory there is a csv file with all of the trend data in it. The last column should be the node. For multi node jobs it just says multi. For 1x jobs (where +nodename is appended to each trend data) it shows the node that data refers to. For single node jobs it just has a 0.

The parsing for this is done in: Pavilion/PAV/scripts/td2csvgdl

Here is the spcific code (line 155):

# extract node list
if (/^<nodes> /) {
    $nl = $';
    chomp $nl;
    $nn++ while $nl =~ /\S+/g;
    $nl =~ s/\s+/,/g;
    next;
}