1 | #!/usr/bin/perl |
---|
2 | # |
---|
3 | # 2011/11/27 gabriel |
---|
4 | |
---|
5 | use strict; |
---|
6 | |
---|
7 | use Getopt::Long(); |
---|
8 | use Pod::Usage; |
---|
9 | use Coro; |
---|
10 | use Coro::Semaphore; |
---|
11 | use Coro::Signal; |
---|
12 | use Coro::Channel; |
---|
13 | use Coro::Handle; |
---|
14 | use IO::File; |
---|
15 | use POSIX qw( WNOHANG WEXITSTATUS ); |
---|
16 | use Cwd qw( getcwd ); |
---|
17 | |
---|
18 | my $file; |
---|
19 | my $dir; |
---|
20 | my $cmd; |
---|
21 | my $logtrace; |
---|
22 | my $verbose; |
---|
23 | my $job_np = 1; |
---|
24 | my $nodefile = $ENV{OAR_NODE_FILE} || ''; |
---|
25 | my $masterio; |
---|
26 | my $switchio; |
---|
27 | my $help; |
---|
28 | my $oarsh = 'oarsh -q -T'; |
---|
29 | my $sig_transmit; |
---|
30 | my $sig_checkpoint = 'USR2'; |
---|
31 | |
---|
32 | Getopt::Long::GetOptions( |
---|
33 | 'file=s' => \$file, |
---|
34 | 'dir=s' => \$dir, |
---|
35 | 'cmd=s' => \$cmd, |
---|
36 | 'logtrace=s' => \$logtrace, |
---|
37 | 'verbose' => \$verbose, |
---|
38 | 'help' => \$help, |
---|
39 | 'oarsh=s' => \$oarsh, |
---|
40 | 'jobnp=i' => \$job_np, |
---|
41 | 'nodefile=s' => \$nodefile, |
---|
42 | 'masterio=s' => \$masterio, |
---|
43 | 'switchio' => \$switchio, |
---|
44 | 'transmit' => \$sig_transmit, |
---|
45 | 'kill=s' => \$sig_checkpoint, |
---|
46 | ) || pod2usage(-verbose => 0); |
---|
47 | pod2usage(-verbose => 2) if $help; |
---|
48 | pod2usage(-verbose => 2) if not ( |
---|
49 | (-e "$file") |
---|
50 | or (-d "$dir" and $cmd ne '') |
---|
51 | ); |
---|
52 | |
---|
53 | # re-run, keep trace of job already done |
---|
54 | my %state; |
---|
55 | my $log_h = IO::File->new(); |
---|
56 | if (-e "$logtrace") { |
---|
57 | $log_h->open("< $logtrace") |
---|
58 | or die "error: can't read log file: $!"; |
---|
59 | while (<$log_h>) { |
---|
60 | $state{$1} = 'start' if m/^start\s+job\s+([^\s]+)\s/; |
---|
61 | $state{$1} = 'end' if m/^end\s+job\s+([^\s]+)\s/; |
---|
62 | } |
---|
63 | $log_h->close(); |
---|
64 | } |
---|
65 | if ($logtrace) { |
---|
66 | $log_h->open(">> $logtrace") |
---|
67 | or die "error: can't append log file $logtrace: $!"; |
---|
68 | $log_h->autoflush; |
---|
69 | $log_h = unblock $log_h; |
---|
70 | } |
---|
71 | |
---|
72 | # job to run |
---|
73 | my @job = (); |
---|
74 | if (-e "$file") { |
---|
75 | my $job_num = 0; |
---|
76 | open(JOB_LIST, '<', "$file") or die "error: can't open job file $file: $!"; |
---|
77 | while (my $job_cmd = <JOB_LIST>) { |
---|
78 | chomp $job_cmd; |
---|
79 | next if $job_cmd =~ m/^#/; |
---|
80 | next if $job_cmd =~ m/^\s*$/; |
---|
81 | $job_num++; |
---|
82 | my ($job_name) = $job_cmd =~ m/#.*?\bname=(\S+?)\b/i; |
---|
83 | $job_name ||= $job_num; |
---|
84 | push @job, { name => $job_name, cmd => "$job_cmd" }; |
---|
85 | } |
---|
86 | close JOB_LIST; |
---|
87 | } |
---|
88 | else { |
---|
89 | opendir(DIR, $dir) or die "error: can't open folder $dir: $!"; |
---|
90 | while (my $item = readdir(DIR)) { |
---|
91 | next if $item =~ m/^\./; |
---|
92 | next if $item =~ m/:/; |
---|
93 | next if $item =~ m/\.old$/; |
---|
94 | next if $item =~ m/\.sav$/; |
---|
95 | next if $item =~ m/\.bak$/; |
---|
96 | next if $item =~ m/\.no$/; |
---|
97 | next unless (-d "$dir/$item"); |
---|
98 | push @job, { name => $item, cmd => "( cd $dir/$item/; $cmd )" }; |
---|
99 | } |
---|
100 | closedir DIR; |
---|
101 | } |
---|
102 | |
---|
103 | # ressources available |
---|
104 | my @ressources = (); |
---|
105 | open(NODE_FILE, '<', "$nodefile") |
---|
106 | or die "can't open $nodefile: $!"; |
---|
107 | while (<NODE_FILE>) { |
---|
108 | chomp; |
---|
109 | next if m/^#/; |
---|
110 | next if m/^\s*$/; |
---|
111 | push @ressources, $_; |
---|
112 | } |
---|
113 | close NODE_FILE; |
---|
114 | |
---|
115 | my $ressource_size = scalar(@ressources); |
---|
116 | die "error: not enought ressources jobnp $job_np > ressources $ressource_size" |
---|
117 | if $job_np > $ressource_size; |
---|
118 | |
---|
119 | my $current_dir = getcwd(); |
---|
120 | |
---|
121 | my $stderr = $ENV{OAR_STDERR} || ''; |
---|
122 | $stderr =~ s/\.stderr$//; |
---|
123 | $stderr = $masterio if $masterio; |
---|
124 | my $stdout = $ENV{OAR_STDOUT} || ''; |
---|
125 | $stdout =~ s/\.stdout$//; |
---|
126 | $stdout = $masterio if $masterio; |
---|
127 | |
---|
128 | my $finished = new Coro::Signal; |
---|
129 | my $job_todo = new Coro::Semaphore 0; |
---|
130 | my $job_name_maxlen; |
---|
131 | for (@job) { |
---|
132 | $job_todo->up; |
---|
133 | $job_name_maxlen = length($_->{name}) if length($_->{name}) > $job_name_maxlen; |
---|
134 | } |
---|
135 | |
---|
136 | # slice of ressources for parallel job |
---|
137 | my $ressources = new Coro::Channel; |
---|
138 | for my $slot (1 .. int($ressource_size / $job_np)) { |
---|
139 | $ressources->put( |
---|
140 | join(',', |
---|
141 | @ressources[ (($slot - 1) * $job_np) .. (($slot * $job_np) - 1) ]) |
---|
142 | ); |
---|
143 | } |
---|
144 | |
---|
145 | my %scheduled = (); |
---|
146 | |
---|
147 | # OAR checkpoint and default signal SIGUSR2 |
---|
148 | my $oar_checkpoint = new Coro::Semaphore 0; |
---|
149 | $SIG{$sig_checkpoint} = sub { |
---|
150 | print "warning: receive checkpoint at " |
---|
151 | . time |
---|
152 | . ", no new job, just finishing running job\n" |
---|
153 | if $verbose; |
---|
154 | $oar_checkpoint->up(); |
---|
155 | kill $sig_checkpoint => keys %scheduled if $sig_transmit; |
---|
156 | }; |
---|
157 | |
---|
158 | # asynchrone start job block |
---|
159 | async { |
---|
160 | JOB: |
---|
161 | for my $job (@job) { |
---|
162 | my $job_name = $job->{name}; |
---|
163 | my $job_cmd = $job->{cmd}; |
---|
164 | |
---|
165 | # job has been already run ? |
---|
166 | if (exists $state{$job_name}) { |
---|
167 | if ($state{$job_name} eq 'start') { |
---|
168 | print "warning: job $job_name was not clearly finished, relaunching...\n" |
---|
169 | if $verbose; |
---|
170 | } |
---|
171 | elsif ($state{$job_name} eq 'end') { |
---|
172 | delete $state{$job_name}; # free memory |
---|
173 | $job_todo->down; |
---|
174 | print "warning: job $job_name already run\n" if $verbose; |
---|
175 | cede; |
---|
176 | next JOB; |
---|
177 | } |
---|
178 | } |
---|
179 | |
---|
180 | # take job ressource |
---|
181 | my $job_ressource = $ressources->get; |
---|
182 | |
---|
183 | # no more launch job when OAR checkpointing |
---|
184 | last JOB if $oar_checkpoint->count() > 0; |
---|
185 | |
---|
186 | my ($node_connect) = split ',', $job_ressource; |
---|
187 | my $fh = IO::File->new(); |
---|
188 | my $job_pid = $fh->open("| $oarsh $node_connect >/dev/null 2>&1") |
---|
189 | or die "error: can't start subjob: $!"; |
---|
190 | |
---|
191 | $fh->autoflush; |
---|
192 | $fh = unblock $fh; |
---|
193 | |
---|
194 | $scheduled{$job_pid} = { |
---|
195 | fh => $fh, |
---|
196 | node_connect => $node_connect, |
---|
197 | ressource => $job_ressource, |
---|
198 | name => $job_name |
---|
199 | }; |
---|
200 | |
---|
201 | my $msg = sprintf "start job %${job_name_maxlen}s / %5i at %s on node %s\n", |
---|
202 | $job_name, $job_pid, time, $job_ressource; |
---|
203 | $log_h->print($msg) if $logtrace; |
---|
204 | print($msg) if $verbose; |
---|
205 | |
---|
206 | my ($job_stdout, $job_stderr); |
---|
207 | $job_stdout = "> $stdout-$job_name.stdout" if $stdout ne '' and $switchio; |
---|
208 | $job_stderr = "2> $stderr-$job_name.stderr" if $stderr ne '' and $switchio; |
---|
209 | |
---|
210 | my $job_nodefile = "/tmp/oar-parexec-$ENV{LOGNAME}-$job_name"; |
---|
211 | |
---|
212 | # set job environment, run it and clean |
---|
213 | if ($job_np > 1) { |
---|
214 | $fh->print("printf \"" |
---|
215 | . join('\n', split(',', $job_ressource,)) |
---|
216 | . "\" > $job_nodefile\n"); |
---|
217 | $fh->print("OAR_NODE_FILE=$job_nodefile\n"); |
---|
218 | $fh->print("OAR_NP=$job_np\n"); |
---|
219 | $fh->print("export OAR_NODE_FILE\n"); |
---|
220 | $fh->print("export OAR_NP\n"); |
---|
221 | $fh->print("unset OAR_MSG_NODEFILE\n"); |
---|
222 | } |
---|
223 | $fh->print("cd $current_dir\n"); |
---|
224 | $fh->print("$job_cmd $job_stdout $job_stderr\n"); |
---|
225 | $fh->print("rm -f $job_nodefile\n") if $job_np > 1; |
---|
226 | $fh->print("exit\n"); |
---|
227 | cede; |
---|
228 | } |
---|
229 | } |
---|
230 | |
---|
231 | # asynchrone end job block |
---|
232 | async { |
---|
233 | while () { |
---|
234 | for my $job_pid (keys %scheduled) { |
---|
235 | # non blocking PID test |
---|
236 | if (waitpid($job_pid, WNOHANG)) { |
---|
237 | my $msg = sprintf "end job %${job_name_maxlen}s / %5i at %s on node %s\n", |
---|
238 | $scheduled{$job_pid}->{name}, |
---|
239 | $job_pid, time, $scheduled{$job_pid}->{ressource}; |
---|
240 | |
---|
241 | # Job non finish, just suspend if received checkpoint signal |
---|
242 | $msg =~ s/^end\s+job/suspend job/ |
---|
243 | if $sig_transmit and $oar_checkpoint->count() > 0; |
---|
244 | |
---|
245 | $log_h->print($msg) if $logtrace; |
---|
246 | print($msg) if $verbose; |
---|
247 | close $scheduled{$job_pid}->{fh}; |
---|
248 | # leave ressources for another job |
---|
249 | $ressources->put($scheduled{$job_pid}->{ressource}); |
---|
250 | $job_todo->down; |
---|
251 | delete $scheduled{$job_pid}; |
---|
252 | } |
---|
253 | cede; |
---|
254 | } |
---|
255 | |
---|
256 | # checkpointing ! just finishing running job and quit |
---|
257 | $finished->send if $oar_checkpoint->count() > 0 and scalar(keys(%scheduled)) == 0; |
---|
258 | |
---|
259 | $finished->send if $job_todo->count() == 0; |
---|
260 | cede; |
---|
261 | } |
---|
262 | } |
---|
263 | |
---|
264 | cede; |
---|
265 | |
---|
266 | # all job have been done |
---|
267 | $finished->wait; |
---|
268 | |
---|
269 | # close log trace file |
---|
270 | $log_h->close() if $logtrace; |
---|
271 | |
---|
272 | __END__ |
---|
273 | |
---|
274 | =head1 NAME |
---|
275 | |
---|
276 | oar-parexec - parallel execution of many small job |
---|
277 | |
---|
278 | =head1 SYNOPSIS |
---|
279 | |
---|
280 | oar-parexec --file filecommand \ |
---|
281 | [--logtrace tracefile] [--verbose] \ |
---|
282 | [--jobnp integer] [--nodefile filenode] [--oarsh sssh] \ |
---|
283 | [--switchio] [--masterio basefileio] |
---|
284 | |
---|
285 | oar-parexec --dir foldertoiterate --cmd commandtolaunch \ |
---|
286 | [--logtrace tracefile] [--verbose] \ |
---|
287 | [--jobnp integer] [--nodefile filenode] [--oarsh sssh] \ |
---|
288 | [--switchio] [--masterio basefileio] |
---|
289 | |
---|
290 | oar-parexec --help |
---|
291 | |
---|
292 | =head1 DESCRIPTION |
---|
293 | |
---|
294 | C<oar-parexec> can execute lot of small job in parallel inside a cluster. |
---|
295 | Number of parallel job at one time cannot exceed the number of core define in the node file |
---|
296 | C<oar-parexec> is easier to use inside an OAR job environment |
---|
297 | which define automatically these strategics parameters... |
---|
298 | However, it can be used outside OAR. |
---|
299 | |
---|
300 | Option C<--file> or C<--dir> and C<--cmd> are the only mandatory parameters. |
---|
301 | |
---|
302 | Small job will be launch in the same folder as the master job. |
---|
303 | Two environment variable are defined for each small job |
---|
304 | and only in case of parallel small job (option C<--jobnp> > 1). |
---|
305 | |
---|
306 | OAR_NODE_FILE - file that list node for parallel computing |
---|
307 | OAR_NP - number of processor affected |
---|
308 | |
---|
309 | The file define by OAR_NODE_FILE is created in /tmp |
---|
310 | on the node before launching the small job |
---|
311 | and this file will be delete after job complete. |
---|
312 | C<oar-parexec> is a simple script, |
---|
313 | OAR_NODE_FILE will not be deleted in case of crash of the master job. |
---|
314 | |
---|
315 | OAR define other variable that are equivalent to OAR_NODE_FILE: |
---|
316 | OAR_NODEFILE, OAR_FILE_NODES, OAR_RESOURCE_FILE... |
---|
317 | You can use in your script the OAR original file ressources |
---|
318 | by using these variable if you need it. |
---|
319 | |
---|
320 | |
---|
321 | =head1 OPTIONS |
---|
322 | |
---|
323 | =over 12 |
---|
324 | |
---|
325 | =item B<-f|--file filecommand> |
---|
326 | |
---|
327 | File name which content job list. |
---|
328 | For the JOB_NAME definition, |
---|
329 | the first valid job in the list will have the number 1 and so on... |
---|
330 | |
---|
331 | It's possible to fix the name inside a comment on the job line. |
---|
332 | For example: |
---|
333 | |
---|
334 | $HOME/test/subjob1.sh # name=subjob1 |
---|
335 | |
---|
336 | The key C<name> is case insensitive, |
---|
337 | the associated value cannot have a space... |
---|
338 | |
---|
339 | =item B<-d|--dir foldertoiterate> |
---|
340 | |
---|
341 | Command C<--cmd> will be launch in all sub-folder of this master folder. |
---|
342 | Files in this folder will be ignored. |
---|
343 | Sub-folder name which begin with F<.> |
---|
344 | or finish with F<.old>, F<.sav>, F<.bak>, F<.no> will either be ignored... |
---|
345 | |
---|
346 | The JOB_NAME is simply the Sub-folder name. |
---|
347 | |
---|
348 | =item B<-c|--cmd commandtolaunch> |
---|
349 | |
---|
350 | Command (and argument to it) tha will be launch in all sub-folder |
---|
351 | parameter folfer C<--dir> |
---|
352 | |
---|
353 | =item B<-l|--logtrace tracefile> |
---|
354 | |
---|
355 | File which log and trace running job. |
---|
356 | In case of running the same master command (after crash for example), |
---|
357 | only job that are not mark as done will be run again. |
---|
358 | Be careful, job mark as running (start but not finish) will be run again. |
---|
359 | Tracing is base on the JOB_NAME between multiple run. |
---|
360 | |
---|
361 | This option is very usefull in case of crash |
---|
362 | but also for checkpointing and idempotent OAR job. |
---|
363 | |
---|
364 | =item B<-v|--verbose> |
---|
365 | |
---|
366 | =item B<-j|--jobnp integer> |
---|
367 | |
---|
368 | Number of processor to allocated for each small job. |
---|
369 | 1 by default. |
---|
370 | |
---|
371 | =item B<-n|--nodefile filenode> |
---|
372 | |
---|
373 | File name that list all the node where job could be launch. |
---|
374 | By defaut, it's define automatically by OAR via |
---|
375 | environment variable C<OAR_NODE_FILE>. |
---|
376 | |
---|
377 | For example, if you want to use 6 core on your cluster node, |
---|
378 | you need to put 6 times the hostname node in this file, |
---|
379 | one per line... |
---|
380 | It's a very common file in MPI process ! |
---|
381 | |
---|
382 | =item B<-o|-oarsh command> |
---|
383 | |
---|
384 | Command use to launch a shell on a node. |
---|
385 | By default |
---|
386 | |
---|
387 | oarsh -q -T |
---|
388 | |
---|
389 | Change it to C<ssh> if you are not using an OAR cluster... |
---|
390 | |
---|
391 | =item B<-s|--switchio> |
---|
392 | |
---|
393 | Each small job will have it's own output STDOUT and STDERR |
---|
394 | base on master OAR job with C<JOB_NAME> inside |
---|
395 | (or base on C<basefileio> if option C<masterio>). |
---|
396 | Example : |
---|
397 | |
---|
398 | OAR.151524.stdout -> OAR.151524-JOB_NAME.stdout |
---|
399 | |
---|
400 | where 151524 here is the master C<OAR_JOB_ID> |
---|
401 | and C<JOB_NAME> is the small job name. |
---|
402 | |
---|
403 | =item B<-m|--masterio basefileio> |
---|
404 | |
---|
405 | The C<basefileio> will be use in place of environment variable |
---|
406 | C<OAR_STDOUT> and C<OAR_STDERR> (without extension) to build the base name of the small job standart output |
---|
407 | (only use when option C<swithio> is activated). |
---|
408 | |
---|
409 | =item B<-h|--help> |
---|
410 | |
---|
411 | =back |
---|
412 | |
---|
413 | |
---|
414 | =head1 EXAMPLE |
---|
415 | |
---|
416 | =head2 Simple list of sequential job |
---|
417 | |
---|
418 | Content for the job file command (option C<--file>) could have: |
---|
419 | |
---|
420 | - empty line |
---|
421 | - comment line begin with # |
---|
422 | - valid shell command |
---|
423 | |
---|
424 | Example where F<$HOME/test/subjob1.sh> is a shell script (executable). |
---|
425 | |
---|
426 | $HOME/test/subjob01.sh # name=subjob01 |
---|
427 | $HOME/test/subjob02.sh # name=subjob02 |
---|
428 | $HOME/test/subjob03.sh # name=subjob03 |
---|
429 | $HOME/test/subjob04.sh # name=subjob04 |
---|
430 | ... |
---|
431 | $HOME/test/subjob38.sh # name=subjob38 |
---|
432 | $HOME/test/subjob39.sh # name=subjob39 |
---|
433 | $HOME/test/subjob40.sh # name=subjob40 |
---|
434 | |
---|
435 | These jobs could be launch by: |
---|
436 | |
---|
437 | oarsub -n test -l /core=6,walltime=04:00:00 \ |
---|
438 | "oar-parexec -f ./subjob.list.txt" |
---|
439 | |
---|
440 | =head2 Folder job |
---|
441 | |
---|
442 | In a folder F<subjob.d>, create sub-folder with your data inside : F<test1>, <test2>... |
---|
443 | The same command will be executed in every sub-folder. |
---|
444 | C<oar-parexec> change the current directory to the sub-folder before launching it. |
---|
445 | |
---|
446 | A very simple job could be: |
---|
447 | |
---|
448 | oarsub -n test -l /core=6,walltime=04:00:00 \ |
---|
449 | "oar-parexec -d ./subjob.d -c 'sleep 10; env'" |
---|
450 | |
---|
451 | The command C<env> will be excuted in all folder F<test1>, F<test2>... after a 10s pause. |
---|
452 | |
---|
453 | Sometime, it's simpler to use file list command, |
---|
454 | sometime, jobs by folder with the same command run is more relevant. |
---|
455 | |
---|
456 | =head2 Parallel job |
---|
457 | |
---|
458 | You need to put the number of core each small job need with option C<--jobnp>. |
---|
459 | If your job is build on OpenMP or MPI, |
---|
460 | you can use OAR_NP and OAR_NODE_FILE variables to configure them. |
---|
461 | On OAR cluster, you need to use C<oarsh> or a wrapper like C<oar-envsh> |
---|
462 | for connexion between node instead of C<ssh>. |
---|
463 | |
---|
464 | Example with parallel small job on 2 core: |
---|
465 | |
---|
466 | oarsub -n test -l /core=6,walltime=04:00:00 \ |
---|
467 | "oar-parexec -j 2 -f ./subjob.list.txt" |
---|
468 | |
---|
469 | =head2 Tracing and master crash |
---|
470 | |
---|
471 | If the master node crash after hours of calculus, everything is lost ? |
---|
472 | No, with option C<--logtrace>, |
---|
473 | it's possible to remember older result |
---|
474 | and not re-run these job the second and next time. |
---|
475 | |
---|
476 | oarsub -n test -l /core=6,walltime=04:00:00 \ |
---|
477 | "oar-parexec -f ./subjob.list.txt -l ./subjob.list.log" |
---|
478 | |
---|
479 | After a crash or an C<oardel> command, |
---|
480 | you can then re-run the same command that will end to execute the jobs in the list |
---|
481 | |
---|
482 | oarsub -n test -l /core=6,walltime=04:00:00 \ |
---|
483 | "oar-parexec -f ./subjob.list.txt -l ./subjob.list.log" |
---|
484 | |
---|
485 | C<logtrace> file are just plain file. |
---|
486 | We use the extension '.log' because these files are automatically |
---|
487 | eliminate from our backup system! |
---|
488 | |
---|
489 | =head2 Checkpointing and Idempotent |
---|
490 | |
---|
491 | C<oar-parexec> is compatible with the OAR checkpointing. |
---|
492 | Il you have 2000 small jobs that need 55h to be done on 6 cores, |
---|
493 | you can cut this in small parts. |
---|
494 | |
---|
495 | For this example, we suppose that each small job need about 10min... |
---|
496 | So, we send a checkpoint 12min before the end of the process |
---|
497 | to let C<oar-parexec> finish the jobs started. |
---|
498 | After being checkpointed, C<oar-parexec> do not start any new small job. |
---|
499 | |
---|
500 | oarsub -t idempotent -n test \ |
---|
501 | -l /core=6,walltime=04:00:00 \ |
---|
502 | --checkpoint 720 \ |
---|
503 | "oar-parexec -f ./subjob.list.txt -l ./subjob.list.log" |
---|
504 | |
---|
505 | After 3h48min, the OAR job will begin to stop launching new small job. |
---|
506 | When all running small job are finished, it's exit. |
---|
507 | But as the OAR job is type C<idempotent>, |
---|
508 | OAR will re-submit it as long as all small job are not executed... |
---|
509 | |
---|
510 | This way, we let other users a chance to use the cluster! |
---|
511 | |
---|
512 | In this last exemple, we use moldable OAR job with idempotent |
---|
513 | to reserve many core for a small time or a few cores for a long time: |
---|
514 | |
---|
515 | oarsub -t idempotent -n test \ |
---|
516 | -l /core=50,walltime=01:05:00 \ |
---|
517 | -l /core=6,walltime=04:00:00 \ |
---|
518 | --checkpoint 720 \ |
---|
519 | "oar-parexec -f ./subjob.list.txt -l ./subjob.list.log" |
---|
520 | |
---|
521 | |
---|
522 | =head1 SEE ALSO |
---|
523 | |
---|
524 | oar-dispatch, mpilauncher, |
---|
525 | orsh, oar-envsh, ssh |
---|
526 | |
---|
527 | |
---|
528 | =head1 AUTHORS |
---|
529 | |
---|
530 | Written by Gabriel Moreau, Grenoble - France |
---|
531 | |
---|
532 | |
---|
533 | =head1 LICENSE AND COPYRIGHT |
---|
534 | |
---|
535 | GPL version 2 or later and Perl equivalent |
---|
536 | |
---|
537 | Copyright (C) 2011 Gabriel Moreau / LEGI - CNRS UMR 5519 - France |
---|
538 | |
---|