batch run


Click here for full thread
Clicked A Few Times
You added the path to mpi to your PATH env var
PATH=/usr/local/openmpi/bin:$PATH

then used it like this
$PATH/mpirun

but that's wrong. By adding the path to mpi to $PATH you should be able to just do
mpirun -np etc. etc.

prefixing it with $PATH is un-necessary and won't work.

--
Jason