Versions Compared

Key

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

...

bsub -q bulletmpi -n <# cores> -W <runtime_minutes> mpirun <mpi_executable>

There is also an earlier version of OpenMPI, 1.5.4,  available.  If you find a need for that version you can set up your environment to use it instead when running on the bullets by making the following changes to the appropriate login script;  csh or tcsh users will update .cshrc and bash users will update .bash_profile or .bashrc:

##--FOR CSH or TCSH --------------------------------------------------
set bulletcluster = `hostname | grep "^bullet"`
if ($bulletcluster != "") then
eval `/usr/bin/modulecmd csh unload lsf-openmpi_1.8.1-x86_64`
eval `/usr/bin/modulecmd csh load lsf-openmpi_1.5.4-x86_64`
endif
#---------------------------------------------------------------------

##--FOR BASH ---------------------------------------------------------
bulletcluster=`hostname | grep "^bullet"`
if [ "$bulletcluster" != "" ]; then
eval `/usr/bin/modulecmd sh unload lsf-openmpi_1.8.1-x86_64`
eval `/usr/bin/modulecmd sh load lsf-openmpi_1.5.4-x86_64`
fi
#---------------------------------------------------------------------

 

Mailing List

Please join our SLAC openmpi mailing list. You can subscribe by sending a request email to listserv@slac.stanford.edu. You can use a non-SLAC email account if you wish.

The body of the message should include:

sub openmpi <your full name>

...