From 8cc4a4405e8278bf0a99244f279b299f23cdedd4 Mon Sep 17 00:00:00 2001 From: Don Armstrong Date: Wed, 5 Aug 2015 12:47:54 -0700 Subject: [PATCH] handle running multiple array options in each job to work around low queue limits --- dqsub | 41 ++++++++++++++++++++++++++++++++++++----- 1 file changed, 36 insertions(+), 5 deletions(-) diff --git a/dqsub b/dqsub index 245f11e..f0e515e 100755 --- a/dqsub +++ b/dqsub @@ -26,7 +26,7 @@ dqsub [options] --nodes nodes to use --array array mode (one of 'chdir' or 'xargs' or '') --array-from file to read arrays from (default STDIN) - --array-slot-limit + --array-per-job number of array items to handle in each job (default 1) --ppn processors per node to use --mem memory to request --dir Directory to run the script in (default current directory) @@ -80,6 +80,7 @@ dqsub use IO::File; use Cwd qw(getcwd abs_path); +use POSIX qw(ceil); use vars qw($DEBUG); my %options = (nodes => 1, @@ -89,6 +90,7 @@ my %options = (nodes => 1, help => 0, man => 0, interactive => 0, + array_per_job => 1, ); GetOptions(\%options, @@ -97,6 +99,7 @@ GetOptions(\%options, 'nodes=i', 'array=s', 'array_from|array-from=s', + 'array_per_job|array-per-job=i', 'array_slot_limit|array-slot-limit=i', 'ppn|processors-per-node=i', 'mem|memory=s', @@ -137,7 +140,7 @@ if ($options{interactive}) { if ($options{array}) { @array = read_array_options(\%options) if $options{array}; # the -t option gives the range of elements for an array job - push @qsub_options,'-t','1-'. scalar @array; + push @qsub_options,'-t','1-'. ceil(scalar @array / $options{array_per_job}); if ($options{array_slot_limit}) { $qsub_options[$#qsub_options] .= '%'.$options{array_slot_limit}; } @@ -207,21 +210,49 @@ sub write_qsub_script { # this script was written by dqsub EOF if (defined $opt->{array}) { + my @subshell = ('',''); my $array_opt = join("\n",@{$array}); - $script .= <{array_per_job} - 1; + if ($opt->{array_per_job} > 1) { + # we will use subshells if there are more than one array + # items per job + @subshell = ('(',')'); + $script .= <{array_per_job}); do +# in some cases, the jobs aren't going to come out evenly. Handle that. +JOBNUM=\$(( \$PBS_ARRAYID * $opt->{array_per_job} + \$i - $opt->{array_per_job} )) +if [ \$JOBNUM -le $max_array ]; then +OPT=\$(sed -n -e "\$JOBNUM p"<<'_HERE_DOC_END_' +EOF + } else { + $script .= <{array} eq 'chdir') { $script .= <{array_per_job} > 1) { + $script .= <