Skip to content

Commit

Permalink
add a tip on unknown command module
Browse files Browse the repository at this point in the history
  • Loading branch information
MaxThevenet committed Mar 8, 2024
1 parent b793824 commit 5cdd01a
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions docs/source/building/platforms/maxwell_desy.rst
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,16 @@ The ``-npernode`` must be set to ``GPUS_PER_NODE``, otherwise not all GPUs are u
There are nodes with 4 GPUs and 1 GPU (see the `Maxwell documentation on compute infrastructure <https://confluence.desy.de/display/MXW/Compute+Infrastructure>`__.
for more details and the required constraints). Please set the value accordingly.

.. tip::
If you encounter an error like ``module: command not found``, this can be fixed in most cases by adding the following piece of code before ``module purge`` in your ``profile.hipace`` file.

.. code-block:: bash
module ()
{
eval `modulecmd bash $*`
}
.. tip::
Parallel simulations can be largely accelerated by using GPU-aware MPI.
To utilize GPU-aware MPI, the input parameter ``hipace.comms_buffer_on_gpu = 1`` must be set and the following flag must be passed in the job script:
Expand Down

0 comments on commit 5cdd01a

Please sign in to comment.