diff options
author | Chris Dyer <cdyer@cs.cmu.edu> | 2011-02-06 23:56:12 -0500 |
---|---|---|
committer | Chris Dyer <cdyer@cs.cmu.edu> | 2011-02-06 23:56:12 -0500 |
commit | 159bbb7037844a56ea7c373e620076d6d1b2b730 (patch) | |
tree | 35e52347ee19696d3a31c23cc5b27e747aff47f6 /vest | |
parent | fe974368f06123eaddbf61c075de273e9cda0f50 (diff) |
parallelize vest on large shared memory machines using fork and make
Diffstat (limited to 'vest')
-rw-r--r-- | vest/README.shared-mem | 9 | ||||
-rwxr-xr-x | vest/dist-vest.pl | 70 | ||||
-rwxr-xr-x | vest/parallelize.pl | 14 |
3 files changed, 70 insertions, 23 deletions
diff --git a/vest/README.shared-mem b/vest/README.shared-mem new file mode 100644 index 00000000..7728efc0 --- /dev/null +++ b/vest/README.shared-mem @@ -0,0 +1,9 @@ +If you want to run dist-vest.pl on a very large shared memory machine, do the +following: + + ./dist-vest.pl --use-make I --decode-nodes J --weights weights.init --source-file=dev.src --ref-files=dev.ref.* cdec.ini + +This will use I jobs for doing the line search and J jobs to run the decoder. Typically, since the +decoder must load grammars, language models, etc., J should be smaller than I, but this will depend +on the system you are running on and the complexity of the models used for decoding. + diff --git a/vest/dist-vest.pl b/vest/dist-vest.pl index 59d7b039..52feb3e6 100755 --- a/vest/dist-vest.pl +++ b/vest/dist-vest.pl @@ -60,6 +60,7 @@ my $maxsim=0; my $oraclen=0; my $oracleb=20; my $bleu_weight=1; +my $use_make; # use make to parallelize line search my $dirargs=''; my $density_prune; my $usefork; @@ -69,7 +70,7 @@ Getopt::Long::Configure("no_auto_abbrev"); if (GetOptions( "decoder=s" => \$decoderOpt, "decode-nodes=i" => \$decode_nodes, - "density-prune=f" => \$density_prune, + "density-prune=f" => \$density_prune, "dont-clean" => \$disable_clean, "use-fork" => \$usefork, "dry-run" => \$dryrun, @@ -78,6 +79,7 @@ if (GetOptions( "interval" => \$interval, "iteration=i" => \$iteration, "local" => \$run_local, + "use-make=i" => \$use_make, "max-iterations=i" => \$max_iterations, "normalize=s" => \$normalize, "pmem=s" => \$pmem, @@ -264,12 +266,18 @@ while (1){ my $im1 = $iteration - 1; my $weightsFile="$dir/weights.$im1"; my $decoder_cmd = "$decoder -c $iniFile -w $weightsFile -O $dir/hgs"; - if ($density_prune) { - $decoder_cmd .= " --density_prune $density_prune"; - } - my $pcmd = "cat $srcFile | $parallelize $usefork -p $pmem -e $logdir -j $decode_nodes -- "; - if ($run_local) { $pcmd = "cat $srcFile |"; } - my $cmd = $pcmd . "$decoder_cmd 2> $decoderLog 1> $runFile"; + if ($density_prune) { + $decoder_cmd .= " --density_prune $density_prune"; + } + my $pcmd; + if ($run_local) { + $pcmd = "cat $srcFile |"; + } elsif ($use_make) { + $pcmd = "cat $srcFile | $parallelize --use-fork -p $pmem -e $logdir -j $decode_nodes --"; + } else { + $pcmd = "cat $srcFile | $parallelize $usefork -p $pmem -e $logdir -j $decode_nodes --"; + } + my $cmd = "$pcmd $decoder_cmd 2> $decoderLog 1> $runFile"; print STDERR "COMMAND:\n$cmd\n"; my $result = 0; $result = system($cmd); @@ -288,7 +296,6 @@ while (1){ `gzip -f $runFile`; `gzip -f $decoderLog`; - # run optimizer print STDERR `date`; my $mergeLog="$logdir/prune-merge.log.$iteration"; @@ -330,6 +337,14 @@ while (1){ @cleanupcmds = (); my %o2i = (); my $first_shard = 1; + my $mkfile; # only used with makefiles + my $mkfilename; + if ($use_make) { + $mkfilename = "$dir/splag.$im1/domap.mk"; + open $mkfile, ">$mkfilename" or die "Couldn't write $mkfilename: $!"; + print $mkfile "all: $dir/splag.$im1/map.done\n\n"; + } + my @mkouts = (); # only used with makefiles for my $shard (@shards) { my $mapoutput = $shard; my $client_name = $shard; @@ -346,6 +361,17 @@ while (1){ cleanup(); die "ERROR: mapper returned non-zero exit code $result\n"; } + } elsif ($use_make) { + my $script_file = "$dir/scripts/map.$shard"; + open F, ">$script_file" or die "Can't write $script_file: $!"; + print F "#!/bin/bash\n"; + print F "$script\n"; + close F; + my $output = "$dir/splag.$im1/$mapoutput"; + push @mkouts, $output; + chmod(0755, $script_file) or die "Can't chmod $script_file: $!"; + if ($first_shard) { print STDERR "$script\n"; $first_shard=0; } + print $mkfile "$output: $dir/splag.$im1/$shard\n\t$script_file\n\n"; } else { my $script_file = "$dir/scripts/map.$shard"; open F, ">$script_file" or die "Can't write $script_file: $!"; @@ -367,9 +393,20 @@ while (1){ } } if ($run_local) { + print STDERR "\nProcessing line search complete.\n"; + } elsif ($use_make) { + print $mkfile "$dir/splag.$im1/map.done: @mkouts\n\ttouch $dir/splag.$im1/map.done\n\n"; + close $mkfile; + my $mcmd = "make -j $use_make -f $mkfilename"; + print STDERR "\nExecuting: $mcmd\n"; + $result = system($mcmd); + unless ($result == 0){ + cleanup(); + die "ERROR: make command returned non-zero exit code $result\n"; + } } else { print STDERR "\nLaunched $nmappers mappers.\n"; - sleep 10; + sleep 8; print STDERR "Waiting for mappers to complete...\n"; while ($nmappers > 0) { sleep 5; @@ -577,14 +614,21 @@ Usage: $executable [options] <ini file> Options: --local - Run the decoder and optimizer locally. + Run the decoder and optimizer locally with a single thread. + + --use-make <I> + Use make -j <I> to run the optimizer commands (useful on large + shared-memory machines where qsub is unavailable). --decoder <decoder path> Decoder binary to use. - --density-prune <N> - Limit the density of the hypergraph on each iteration to N times - the number of edges on the Viterbi path. + --decode-nodes <I> + Number of decoder processes to run in parallel. [default=15] + + --density-prune <N> + Limit the density of the hypergraph on each iteration to N times + the number of edges on the Viterbi path. --help Print this message and exit. diff --git a/vest/parallelize.pl b/vest/parallelize.pl index daaf9b2f..cb5406ec 100755 --- a/vest/parallelize.pl +++ b/vest/parallelize.pl @@ -21,12 +21,12 @@ my $SCRIPT_DIR; BEGIN { use Cwd qw/ abs_path /; use File::Basename; $SCRIPT_DIR = dirname(abs_path($0)); push @INC, $SCRIPT_DIR, "$SCRIPT_DIR/../environment"; } use LocalConfig; +use Cwd qw/ abs_path cwd getcwd /; use File::Temp qw/ tempfile /; use Getopt::Long; use IPC::Open2; use strict; use POSIX ":sys_wait_h"; -use Cwd qw(getcwd); my $tailn=5; # +0 = concatenate all the client logs. 5 = last 5 lines my $recycle_clients; # spawn new clients when previous ones terminate @@ -58,12 +58,6 @@ sub debug { print STDERR "DEBUG: $filename($line): ",join(' ',@_),"\n"; } } -sub abspath($) { - my $p=shift; - my $a=`readlink -f $p`; - chomp $a; - $a -} my $is_shell_special=qr.[ \t\n\\><|&;"'`~*?{}$!()].; my $shell_escape_in_quote=qr.[\\"\$`!].; sub escape_shell { @@ -116,7 +110,7 @@ sub extend_path($$;$$) { return $base.$ext; } -my $abscwd=abspath(&getcwd); +my $abscwd=abs_path(&getcwd); sub print_help; my $use_fork; @@ -152,7 +146,7 @@ if ($no_which) { chomp $cmd; die "$prog not found - $cmd" unless $cmd; } -#$cmd=abspath($cmd); +#$cmd=abs_path($cmd); for my $arg (@ARGV) { $cmd .= " ".escape_shell($arg); } @@ -180,7 +174,7 @@ if ($errordir) { print SF "$cdcmd$cmd\n"; close SF; chmod 0755,$scriptfile; - $errordir=abspath($errordir); + $errordir=abs_path($errordir); &verbose("-e dir: $errordir"); } |