Move paragraph on depletion crash/hang to troubleshoot.rst

This commit is contained in:
Paul Romano 2021-12-16 11:05:49 -05:00
parent 4559c8f3af
commit 5cdf52ccf8
2 changed files with 12 additions and 12 deletions

View file

@ -387,17 +387,6 @@ i.e.
CXX=mpicxx cmake /path/to/openmc
If you are doing depletion analysis, you may have to set
.. code-block:: python
openmc.deplete.pool.USE_MULTIPROCESSING = False
in your python file before making any calls to the integrator depending on whether
or not your MPI is compatible with forking (e.g., see the `OpenMPI FAQ entry about
forking <https://www.open-mpi.org/faq/?category=tuning#fork-warning>`_). If it is
not compatible, and this in not set, random hangs and crashes can result.
Selecting HDF5 Installation
+++++++++++++++++++++++++++

View file

@ -119,4 +119,15 @@ using particle restart mode with the ``-r`` command-line option in conjunction
with the particle restart files that are created when particles are lost with
this error.
.. _mailing list: https://groups.google.com/forum/?fromgroups=#!forum/openmc-users
Depletion
*********
If you are running a depletion simulation and are experiencing random hangs or
crashes, you may need to set::
openmc.deplete.pool.USE_MULTIPROCESSING = False
in your Python file before making any calls to the integrator. This can be
caused by an MPI implementation that is not compatible with forking (e.g., see
the `OpenMPI FAQ entry about forking
<https://www.open-mpi.org/faq/?category=tuning#fork-warning>`_).