Versions Compared

Key

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

...

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

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

Usining You can still use the -a mympi works prior to option for ana 0.18 as well. .0 and later, however the recommended method with mpirun should make batch job management more robust (it uses the official LSF batch systems modules).

No Format
bsub -q psanaq -n 16 -R "span[ptile=1]" -o ~/output/%J.out mpirun ~/bin/hello       # for ana-0.18 and greater
bsub -q psanaq -a mympi -n 16 -R "span[ptile=1]" -o ~/output/%J.out ~/bin/hello     # prior to ana-0.18

...