diff --git a/doc/scripts/divio_docs_theme/layout.html b/doc/scripts/divio_docs_theme/layout.html index 6b8f0284da2813b5219f8cfce63955aec0e1caa9..f7d0e7658ebbec19d9efe2b696dc1e46bd695acf 100755 --- a/doc/scripts/divio_docs_theme/layout.html +++ b/doc/scripts/divio_docs_theme/layout.html @@ -127,7 +127,7 @@ <div class="header-title-wrap"> <a class="header-title" href="{{ pathto(master_doc) }}">{{ project }}</a> </div> - <a class="logo-link" target="_blank" href="{{ pathto(master_doc) }}"><img src="{{ pathto('_static/' + logo, 1) }}" class="logo" alt="Divio"/></a> + <a class="logo-link" target="_blank" href="{{ pathto(master_doc) }}"><img src="{{ pathto('_static/' + logo, 1) }}" class="logo" alt="{{ project }}"/></a> </div> {% include "breadcrumbs.html" %} diff --git a/doc/tutorial/mpi.rst b/doc/tutorial/mpi.rst index 0d44ab9851363f4b4f5f479ed7f265b0a3ad881c..236a5af07d9c523b28b0c5ec49fa4ad1fcfd076a 100644 --- a/doc/tutorial/mpi.rst +++ b/doc/tutorial/mpi.rst @@ -58,14 +58,13 @@ it as an argument to the ``python`` command, you need to use ``srun`` or ``mpiru distribution) to execute a number of jobs in parallel. You can still execute the script using ``python``, but then MPI will not execute on more than one node. -From the commandline, we can run the script using ``mpirun`` or ``srun`` and specify the number of ranks (``NRANKS``) +From the commandline, we can run the script using ``mpirun`` (``srun`` on clusters operated with SLURM) and specify the number of ranks (``NRANKS``) or nodes. Arbor will spread the cells evenly over the ranks, so with ``NRANKS`` set to 5, we'd be spreading the 500 cells over 5 nodes, simulating 100 cells each. .. code-block:: - srun -n NRANKS python network_ring_mpi.py - mpirun -n NRANKS python network_ring_mpi.py + mpirun -n NRANKS python mpi.py The results ***********