Skip to content

Commit

Permalink
Update run_mode documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
jan-janssen committed Jul 3, 2023
1 parent b3e6f87 commit b722ad8
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion pyiron_base/jobs/job/extension/server/runmode.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,13 @@ class Runmode(object):
- queue: submit the job to the queuing system
- manual: let the user manually execute the job
- thread: internal job mode, which is selected when the master job is send to the queue.
- worker: submit the job to the worker job for execution
- interactive: the interactive run mode
- interactive_non_modal: the combination of the interactive and the non_modal mode
- srun: call SLURM to start the subprocess rather than starting it directly
Args:
mode (str): ['modal', 'non_modal', 'queue', 'manual', 'thread', 'interactive']
mode (str): ['modal', 'non_modal', 'queue', 'manual', 'thread', 'worker', 'interactive', 'interactive_non_modal', 'srun']
"""

def __init__(self, mode="modal"):
Expand Down

0 comments on commit b722ad8

Please sign in to comment.