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 2 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
13 changes: 13 additions & 0 deletions docs/source/howto/run_codes.rst
Expand Up @@ -400,6 +400,19 @@ 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()
# now start modifying the builder
ltalirz marked this conversation as resolved.
Show resolved Hide resolved

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