diff --git a/doc/html/download.shtml b/doc/html/download.shtml index 71897ad4803a72fa3bf5acab769ed59c3bcd9302..5fbce0940abc2e818ba9466b54ae260f044206d1 100644 --- a/doc/html/download.shtml +++ b/doc/html/download.shtml @@ -58,6 +58,8 @@ hostnames to Elan IDs. The libelanhosts source is available from <li><a href="http://www.lam-mpi.org/">LAM/MPI</a></li> <li><a href="http://www-unix.mcs.anl.gov/mpi/mpich2/">MPICH2</a></li> <li><a href="http://www.myri.com/scs/">MPICH-GM</a></li> +<li><a href="http://nowlab.cse.ohio-state.edu/projects/mpi-iba">MVAPICH</a></li> +<li><a href="http://nowlab.cse.ohio-state.edu/projects/mpi-iba">MVAPICH2</a></li> <li><a href="http://www.open-mpi.org">Open MPI</a></li> <li><a href="http://www.quadrics.com/">Quadrics MPI</a></li> </ul> @@ -71,6 +73,6 @@ Moab Cluster Suite</a></li> </ul> </ul> -<p style="text-align:center;">Last modified 11 May 2006</p> +<p style="text-align:center;">Last modified 26 May 2006</p> <!--#include virtual="footer.txt"--> diff --git a/doc/html/quickstart.shtml b/doc/html/quickstart.shtml index 2ae2d7f5681f064d26be2b3946e7ce722adb6e65..18aaa46591ceacbc4f9d26c1baa9fc96ffff44a2 100644 --- a/doc/html/quickstart.shtml +++ b/doc/html/quickstart.shtml @@ -234,9 +234,11 @@ $MPI_ROOT/bin/mpirun -TCP -srun -N8 ./a.out <p><a href="http://www-unix.mcs.anl.gov/mpi/mpich2/"><b>MPICH2</b></a> jobs are launched using the <b>srun</b> command. Just link your program with SLURM's implementation of the PMI library so that tasks can communicate -host and port information at startup. For example: +host and port information at startup. (The system administrator can add +these option to the mpicc and mpif77 commands directly, so the user will not +need to bother). For example: <pre> -$ mpicc -lXlinker "-lpmi" ... +$ mpicc -L<path_to_slurm_lib> -lpmi ... $ srun -n20 a.out </pre> <b>NOTES:</b> @@ -263,10 +265,13 @@ jobs can be launched directly by <b>srun</b> command. SLURM's <i>none</i> MPI plugin must be used to establish communications between the laucnhed tasks. This can be accomplished either using the SLURM configuration parameter <i>MpiDefault=none</i> in <b>slurm.conf</b> -or srun's <i>--mpi=none</i> option. -<b>Do not use SLURM's MVAPICH plugin for MVAPICH2.</b> +or srun's <i>--mpi=none</i> option. The program must also be linked with +SLURM's implementation of the PMI library so that tasks can communicate +host and port information at startup. (The system administrator can add +these option to the mpicc and mpif77 commands directly, so the user will not +need to bother). <b>Do not use SLURM's MVAPICH plugin for MVAPICH2.</b> <pre> -$ mpicc ... +$ mpicc -L<path_to_slurm_lib> -lpmi ... $ srun -n16 --mpi=none a.out </pre> @@ -285,6 +290,6 @@ the base partition count. See <a href="bluegene.html">BlueGene User and Administrator Guide</a> for more information.</p> -<p style="text-align:center;">Last modified 24 May 2006</p> +<p style="text-align:center;">Last modified 26 May 2006</p> <!--#include virtual="footer.txt"-->