/usr/bin/generate_pbs_nodefile is in slurm-wlm-torque 15.08.7-1build1.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 | #!/usr/bin/perl -w
# Copyright 2013 Brigham Young University
# Written by Ryan Cox <ryan_cox@byu.edu>
#
# Licensed under the terms of the GNU General Public License as published by the Free
# Software Foundation; either version 2 of the License, or (at your option) any later version.
#
# Uses SLURM environment variables to produce a $PBS_NODEFILE -style
# output file. The output goes in a temporary file and the name of
# the file is printed on stdout. Intended usage is:
# export PBS_NODEFILE=`generate_pbs_nodefile`
use strict;
use File::Temp qw( tempfile );
use FindBin;
use lib qw(/usr/lib/x86_64-linux-gnu/perl/5.22.1);
use Slurm ':all';
my ($fh, $filename) = tempfile(UNLINK => 0);
die "No SLURM_NODELIST given, run generate_pbs_nodefile inside a "
. "Slurm allocation or batch script.\n" if (!$ENV{'SLURM_NODELIST'});
my $hl = Slurm::Hostlist::create($ENV{'SLURM_NODELIST'});
my $tasks = $ENV{SLURM_TASKS_PER_NODE};
my @counts = split(",", $tasks);
foreach my $count(@counts) {
my $ppn;
my $nodes;
$count =~ /^(\d+)(\(x(\d+)\))?$/;
$ppn = $1;
if ($3) {
$nodes = $3;
} else {
$nodes = 1;
}
for (my $j = 0; $j < $nodes; $j++) {
my $node = Slurm::Hostlist::shift($hl);
foreach (my $i = 0; $i < $ppn; $i++) {
print $fh "$node\n";
}
}
}
close($fh);
print "$filename\n";
|