Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Starting with ana-0.18.0 (release April 28 2016), the recommended way to submit MPI batch jobs is

...

bsub

...

-q

...

psanaq

...

-n

...

32

...

-o

...

~/output/%J.out

...

mpirun ~/bin/hello

as opposed to:

bsub -q psanaq -a mympi -n 32 -o ~/output/%J.out ~/bin/hello

...

this This will submit an OpenMPI job  requesting 32 processors (-n 32) to the psanaq batch queue (-q psanaq). The environment variable SIT_RELEASE shows you the ana release number.

Prior to ana-0.18.0, one submits a MPI batch job as follows:

...

.

...

You can still use the -a mympi option for ana 0.18.0 and later, however the recommended method with mpirun should make batch job management more robust (it uses the official LSF batch systems modules).

...