Dear readers,
With OpenMPI, how would one go about requesting to load environment modules (of
the http://modules.sourceforge.net/ kind) on remote nodes, augmenting those
normally loaded there by shell dotfiles?
Background:
I run a RHEL-5/CentOS-5 cluster. I load a bunch of default modules through
/etc/profile.d/ and recommend to users to customize modules in ~/.bashrc. A
problem arises for PBS jobs which might need job-specific modules, e.g., to
pick a specific flavor of an application. With other MPI implementations
(ahem) which export all (or judiciously nearly all) environment variables by
default, you can say:
#PBS ...
module load foo # not for OpenMPI
mpirun -np 42 ... \
bar-app
Not so with OpenMPI - any such customization is only effective for processes on
the master (=local) node of the job, and any variables changed by a given
module would have to be specifically passed via mpirun -x VARNAME. On the
remote nodes, those variables are not available in the dotfiles because they
are passed only once orted is live (after dotfile processing by the shell),
which then immediately spawns the application binaries (right?)
I thought along the following lines:
(1) I happen to run Lustre, which would allow writing a file coherently across
nodes prior to mpirun, and thus hook into the shell dotfile processing, but
that seems rather crude.
(2) "mpirun -x PATH -x LD_LIBRARY_PATH …" would take care of a lot, but is not
really general.
Is there a recommended way?
regards,
Michael