Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: resubmit a Process from a ProcessNode #5579

Merged
merged 5 commits into from Jul 14, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
14 changes: 14 additions & 0 deletions docs/source/howto/run_codes.rst
Expand Up @@ -400,6 +400,20 @@ After :ref:`setting up your computer <how-to:run-codes:computer>` and :ref:`sett

After this, use ``verdi process list`` to monitor the status of the calculations.

.. tip::

If you ever need to resubmit a previous calculation with modified inputs,
you can get a pre-populated copy of its process builder with

.. code-block:: python

builder = load_node(<IDENTIFIER>).get_builder_restart()
# If needed, the builder can now be modified as usual before being run or submitted
submit(builder)

where ``<IDENTIFIER>`` is the ``PK`` or ``UUID`` (or label) of your *calculation*.


See :ref:`topics:processes:usage:launching` and :ref:`topics:processes:usage:monitoring` for more details.


Expand Down