17.1.2. mpirun / mpiexec

mpirun, mpiexec — Execute serial and parallel jobs in Open MPI.

Note

mpirun and mpiexec are synonyms for each other. Indeed, they are symbolic links to the same executable. Using either of the names will produce the exact same behavior.

17.1.2.1. SYNOPSIS

Single Process Multiple Data (SPMD) Model:

mpirun [ options ] <program> [ <args> ]

Multiple Instruction Multiple Data (MIMD) Model:

mpirun [ global_options ]
       [ local_options1 ] <program1> [ <args1> ] :
       [ local_options2 ] <program2> [ <args2> ] :
       ... :
       [ local_optionsN ] <programN> [ <argsN> ]

Note that in both models, invoking mpirun via an absolute path name is equivalent to specifying the --prefix option with a <dir> value equivalent to the directory where mpirun resides, minus its last subdirectory. For example:

shell$ /usr/local/bin/mpirun ...

is equivalent to

shell$ mpirun --prefix /usr/local

17.1.2.2. QUICK SUMMARY

If you are simply looking for how to run an MPI application, you probably want to use a command line of the following form:

shell$ mpirun [ -n X ] [ --hostfile <filename> ]  <program>

This will run X copies of <program> in your current run-time environment (if running under a supported resource manager, Open MPI’s mpirun will usually automatically use the corresponding resource manager process starter, as opposed to ssh (for example), which require the use of a hostfile, or will default to running all X copies on the localhost), scheduling (by default) in a round-robin fashion by CPU slot. See the rest of this documentation for more details.

Please note that mpirun automatically binds processes to hardware resources. Three binding patterns are used in the absence of any further directives (See map/rank/bind defaults for more details):

  • Bind to core: when the number of processes is <= 2

  • Bind to package: when the number of processes is > 2

  • Bind to none: when oversubscribed

If your application uses threads, then you probably want to ensure that you are either not bound at all (by specifying --bind-to none), or bound to multiple cores using an appropriate binding level or specific number of processing elements per application process.

17.1.2.3. OPEN MPI’S USE OF PRRTE

Open MPI uses the PMIx Reference Runtime Environment (PRRTE) as the main engine for launching, monitoring, and terminating MPI processes.

Much of the documentation below is directly imported from PRRTE. As such, it frequently refers to PRRTE concepts and command line options. Except where noted, these concepts and command line argument are all applicable to Open MPI as well. Open MPI extends the available PRRTE command line options, and also slightly modifies the PRRTE’s default behaviors in a few cases. These will be specifically described in the docuemtnation below.

17.1.2.4. COMMAND LINE OPTIONS

The core of Open MPI’s mpirun processing is performed via the PRRTE. Specifically: mpirun is effectively a wrapper around prterun, but mpirun’s CLI options are slightly different than PRRTE’s CLI commands.

17.1.2.4.1. General command line options

The following general command line options are available.

  • -h | --help: This help message

  • -v | --verbose: Enable extra verbose output

  • -V | --version: Print version and exit

17.1.2.4.2. Launch options

  • --default-hostfile <filename>: Provide a default hostfile.

  • -H | --host <list>: Comma-delimited list of hosts on which to to invoke processes. See below for details.

  • --hostfile <filename>: Provide a hostfile. See below for details.

  • --machinefile <filename>: Synonym for --hostfile.

  • --mca <key> <value>: Pass context-specific MCA parameters; they are considered global if --gmca is not used and only one context is specified (<key> is the parameter name; <value> is the parameter value).

  • --path <path>: Path to be used to look for executables to start processes.

  • --pmixmca <key> <value>: Pass context-specific PMIx MCA parameters; they are considered global if only one context is specified (<key>> is the parameter name; <value> is the parameter value). See below for details.

  • --preload-files <list>: Preload the comma-separated list of files to the remote machines current working directory before starting the remote process.

  • --prtemca <key> <value>: Pass context-specific PRTE MCA parameters to the DVM. See below for details.

  • --pset <name>: User-specified name assigned to the processes in their given application.

  • --rankfile <filename>: Name of file to specify explicit task mapping.

  • --runtime-options <list>: List of options to pass to the launcher. See below for details.

  • -s | --preload-binary: Preload the binary on the remote machine before starting the remote process.

  • --set-cwd-to-session-dir: Set the working directory of the started processes to their session directory.

  • --show-progress: Output a brief periodic report on launch progress.

  • --wd <dir>: Synonym for --wdir.

  • --wdir <dir>: Set the working directory of the started processes.

  • -x <var>: Export a environment variable, optionally specifying a value. See below for details.

17.1.2.4.3. Mapping, ranking, and binding options

17.1.2.4.4. Output options

  • --output <list>: Comma-delimited list of options that control how output is generated. See below for details.

  • --report-child-jobs-separately: Return the exit status of the primary job only.

  • --stream-buffering <value>: Control how output is buffered. See below for details.

  • --xterm <list>: Create a new xterm window and display output from the specified ranks there.

17.1.2.4.5. Input options

  • --stdin <list>: Specify procs to receive stdin; alloable values in <list> are: comma-delimited list of integer ranks, all, none. Defaults to 0, indicating rank 0.

17.1.2.4.6. Specific options

  • --allow-run-as-root: Allow execution as root (STRONGLY DISCOURAGED). See below for details.

  • --daemonize: Daemonize the DVM daemons into the background.

  • --forward-signals <list>: Comma-delimited list of additional signals (names or integers) to forward to application processes. See below for details.

  • --launch-agent <agent>: Name of daemon executable used to start processes on remote nodes (default: prted).

  • --max-vm-size <size>: Number of daemons to start.

  • --noprefix: Disable automatic --prefix behavior. See below for details.

  • --prefix <prefix>: Prefix to be used to look for RTE executables.

  • --set-sid: Direct the DVM daemons to separate from the current session.

  • --singleton <id>: ID of the singleton process that started us.

  • --tmpdir <dir>: Set the root for the session directory tree.

  • --tune <filename>: File(s) containing MCA params for tuning DVM operations. See below for details.

17.1.2.4.7. MPI Options

  • --initial-errhandler: Specify the initial error handler that is attached to predefined communicators during the first MPI call.

  • --display-comm: Display table of communication methods between MPI_COMM_WORLD ranks during MPI_Init

  • --display-comm-finalize: Display table of communication methods between ranks during MPI_Finalize

  • --soft: This option does nothing, but is mandated by the MPI standard

  • --arch <filename>: This option does nothing, but is mandated by the MPI standard

  • --file <filename>: This option does nothing, but is mandated by the MPI standard

17.1.2.4.8. Debugger / tool options

  • --keepalive <filename>: Named pipe filename to monitor — DVM will terminate upon closure

  • --report-pid <value>: Print out PID on stdout (-), stderr (+), or a filename (anything else)

  • --report-uri <value>: Print out URI on stdout (-), stderr (+), or a filename (anything else)

  • --stop-on-exec <value>: If supported, stop each specified process at start of execution

  • --stop-in-init <value>: Direct the specified processes to stop in the MPI initialization function

  • --stop-in-app <value>: Direct the specified processes to stop at an application-controlled location

17.1.2.4.9. Debug options

  • --debug-daemons: Debug daemons — if not set, the “verbose” setting will be limited to the DVM controller to reduce clutter. See below for details.

  • --debug-daemons-file: Enable debugging of any PRTE daemons used by this application, storing their verbose output in files. See below for details.

  • --display <value>: Comma-delimited list of options for displaying information about the allocation and job. Allowed values for <value>: allocation, bind, map, map-devel, topo. See below for details.

  • --get-stack-traces: If a timeout occurs, get stack traces of all application processes.

  • --leave-session-attached: Do not discard stdout/stderr of remote PRTE daemons. See below for details.

  • --report-state-on-timeout: Report all job and process states upon timeout.

  • --spawn-timeout <seconds>: Timeout the job if spawn takes more than the specified number of seconds.

  • --test-suicide <seconds>: Suicide instead of clean abort after delay.

  • --timeout <seconds>: Timeout the job after the specified number of seconds.

  • --output-proctable <value>: Print the complete proctable to stdout after launch; allowed <value> values are +, -, or a filename.

17.1.2.4.10. Fault Tolerance Options

These options are only available is Open MPI / PRRTE were compiled with Fault Tolerance functionality enabled.

  • --enable-recovery: Enable recovery from process failure (Default = disabled)

  • --max-restarts: Max number of times to restart a failed process

  • --disable-recovery: Disable recovery (resets all recovery options to off)

  • --continuous: Job is to run until explicitly terminated

  • --with-ft: Specify the type(s) of error handling that the application will use.

17.1.2.4.11. Details of individual command line options

The sections below offer more detail than the abbreviated lists, above.

17.1.2.4.11.1. The --allow-run-as-root option

Allow execution as root (STRONGLY DISCOURAGED).

Running as root exposes the user to potentially catastrophic file system corruption and damage — e.g., if the user accidentally points the root of the session directory to a system required point, this directory and all underlying elements will be deleted upon job completion, thereby rendering the system inoperable.

It is recognized that some environments (e.g., containers) may require operation as root, and that the user accepts the risks in those scenarios. Accordingly, one can override PRRTE’s run-as-root protection by providing one of the following:

  • The --allow-run-as-root command line directive

  • Adding BOTH of the following environmental parameters:

    • PRTE_ALLOW_RUN_AS_ROOT=1

    • PRTE_ALLOW_RUN_AS_ROOT_CONFIRM=1

Again, we recommend this only be done if absolutely necessary.

17.1.2.4.11.2. The --bind-to option

By default, processes are bound to individual CPUs (either COREs or HWTHREADs, as defined by default or by user specification for the job). On nodes that are OVERSUBSCRIBEd (i.e., where the number of procs exceeds the number of assigned slots), the default is to not bind the processes.

Note

Processes from prior jobs that are already executing on a node are not “unbound” when a new job mapping results in the node becoming oversubscribed.

Binding is performed to the first available specified object type within the object where the process was mapped. In other words, binding can only be done to the mapped object or to a resource located beneath that object.

An object is considered completely consumed when the number of processes bound to it equals the number of CPUs within it. Unbound processes are not considered in this computation. Additional processes cannot be mapped to consumed objects unless the OVERLOAD qualifier is provided via the --bind-to command line option.

Note that directives and qualifiers are case-insensitive and can be shortened to the minimum number of characters to uniquely identify them. Thus, L1CACHE can be given as l1cache or simply as L1.

Supported binding directives include:

  • NONE does not bind the processes

  • HWTHREAD binds each process to a single hardware thread/ This requires that hwthreads be treated as independent CPUs (i.e., that either the HWTCPUS qualifier be provided to the map-by option or that hwthreads be designated as CPUs by default).

  • CORE binds each process to a single core. This can be done whether hwthreads or cores are being treated as independent CPUs provided that mapping is performed at the core or higher level.

  • L1CACHE binds each process to all the CPUs in an L1 cache.

  • L2CACHE binds each process to all the CPUs in an L2 cache

  • L3CACHE binds each process to all the CPUs in an L3 cache

  • NUMA binds each process to all the CPUs in a NUMA region

  • PACKAGE binds each process to all the CPUs in a PACKAGE

Any directive can include qualifiers by adding a colon (:) and any combination of one or more of the following to the --bind-to option:

  • OVERLOAD indicates that objects can have more processes bound to them than CPUs within them

  • IF-SUPPORTED indicates that the job should continue to be launched and executed even if binding cannot be performed as requested.

Note

Directives and qualifiers are case-insensitive. OVERLOAD is the same as overload.

17.1.2.4.11.3. The --debug-daemons option

Debug daemon output enabled. This is a somewhat limited stream of information normally used to simply confirm that the daemons started. Includes leaving the output streams open.

17.1.2.4.11.4. The --debug-daemons-file option

Debug daemon output is enabled and all output from the daemons is redirected into files with names of the form:

output-prted-<daemon-nspace>-<nodename>.log

These names avoid conflict on shared file systems. The files are located in the top-level session directory assigned to the DVM.

17.1.2.4.11.5. The --display option

The display command line directive must be accompanied by a comma-delimited list of case-insensitive options indicating what information about the job and/or allocation is to be displayed. The full directive need not be provided — only enough characters are required to uniquely identify the directive. For example, ALL is sufficient to represent the ALLOCATION directive — while MAP can not be used to represent MAP-DEVEL (though MAP-D would suffice).

Supported values include:

  • ALLOCATION displays the detected hosts and slot assignments for this job

  • BINDINGS displays the resulting bindings applied to processes in this job

  • MAP displays the resulting locations assigned to processes in this job

  • MAP-DEVEL displays a more detailed report on the locations assigned to processes in this job that includes local and node ranks, assigned bindings, and other data

  • TOPO=LIST displays the topology of each node in the semicolon-delimited list that is allocated to the job

  • CPUS[=LIST] displays the available CPUs on the provided semicolon-delimited list of nodes (defaults to all nodes)

The display command line directive can include qualifiers by adding a colon (:) and any combination of one or more of the following (delimited by colons):

  • PARSEABLE directs that the output be provided in a format that is easily parsed by machines. Note that PARSABLE is also accepted as a typical spelling for the qualifier.

Provided qualifiers will apply to all of the display directives.

17.1.2.4.11.6. The --forward-signals option

Comma-delimited list of additional signals (names or integers) to forward to application processes (none = forward nothing). Signals provided by default include SIGTSTP, SIGUSR1, SIGUSR2, SIGABRT, SIGALRM, and SIGCONT.

17.1.2.4.11.7. The --host option

Host syntax consists of a comma-delimited list of node names, each entry optionally containing a :N extension indicating the number of slots to assign to that entry:

--host node01:5,node02

In the absence of the slot extension, one slot will be assigned to the node. Duplicate entries are aggregated and the number of slots assigned to that node are summed together.

Note

A “slot” is the PRRTE term for an allocatable unit where we can launch a process. Thus, the number of slots equates to the maximum number of processes PRRTE may start on that node without oversubscribing it.

17.1.2.4.11.8. The --hostfile option

PRRTE supports several levels of user-specified host lists based on an established precedence order. Users can specify a default hostfile that contains a list of nodes to be used by the DVM. Only one default hostfile can be provided for a given DVM. In addition, users can specify a hostfile that contains a list of nodes to be used for a DVM, or can provide a comma-delimited list of nodes to be used for that DVM via the --host command line option.

The precedence order applied to these various options depends to some extent on the local environment. The following table illustrates how host and hostfile directives work together to define the set of hosts upon which a DVM will execute in the absence of a resource manager (RM):

Default hostfile

host

hostfile

Result

unset

unset

unset

The DVN will consist solely of the
local host where the DVM
was started.

unset

set

unset

Host option defines resource list for the DVM.

unset

unset

set

Hostfile option defines resource list for the DVM.

unset

set

set

Hostfile option defines resource list for the DVM,
then host filters the list to define the final
set of nodes to be used by the DVM

set

unset

unset

Default hostfile defines resource list for the DVM

set

set

unset

Default hostfile defines resource list for the DVM,
then host filters the list to define the final
set of nodes to be used by the DVM

set

set

set

Default hostfile defines resource list for the DVM,
then hostfile filters the list, and then host filters
the list to define the final set of nodes to be
used by the DVM

This changes somewhat in the presence of an RM as that entity specifies the initial allocation of nodes. In this case, the default hostfile, hostfile and host directives are all used to filter the RM’s specification so that a user can utilize different portions of the allocation for different DVMs. This is done according to the same precedence order as in the prior table, with the RM providing the initial pool of nodes.

Hostfiles (sometimes called “machine files”) are a combination of two things:

  1. A listing of hosts on which to launch processes.

  2. Optionally, limit the number of processes which can be launched on each host.

Hostfile syntax consists of one node name on each line, optionally including a designated number of “slots”:

# This is a comment line, and will be ignored
node01  slots=10
node13  slots=5

node15
node16
node17  slots=3
...

Blank lines and lines beginning with a # are ignored.

A “slot” is the PRRTE term for an allocatable unit where we can launch a process. See the section on definition of the term slot for a longer description of slots.

In the absence of the slot parameter, PRRTE will assign either the number of slots to be the number of CPUs detected on the node or the resource manager-assigned value if operating in the presence of an RM.

Important

If using a resource manager, the user-specified number of slots is capped by the RM-assigned value.

17.1.2.4.11.9. The --leave-session-attached option

Do not discard stdout/stderr of remote PRRTE daemons. The primary use for this option is to ensure that the daemon output streams (i.e., stdout and stderr) remain open after launch, thus allowing the user to see any daemon-generated error messages. Otherwise, the daemon will “daemonize” itself upon launch, thereby closing its output streams.

17.1.2.4.11.10. The --map-by option

Processes are mapped based on one of the following directives as applied at the job level:

  • SLOT assigns procs to each node up to the number of available slots on that node before moving to the next node in the allocation

  • HWTHREAD assigns a proc to each hardware thread on a node in a round-robin manner up to the number of available slots on that node before moving to the next node in the allocation

  • CORE (default) assigns a proc to each core on a node in a round-robin manner up to the number of available slots on that node before moving to the next node in the allocation

  • L1CACHE assigns a proc to each L1 cache on a node in a round-robin manner up to the number of available slots on that node before moving to the next node in the allocation

  • L2CACHE assigns a proc to each L2 cache on a node in a round-robin manner up to the number of available slots on that node before moving to the next node in the allocation

  • L3CACHE assigns a proc to each L3 cache on a node in a round-robin manner up to the number of available slots on that node before moving to the next node in the allocation

  • NUMA assigns a proc to each NUMA region on a node in a round-robin manner up to the number of available slots on that node before moving to the next node in the allocation

  • PACKAGE assigns a proc to each package on a node in a round-robin manner up to the number of available slots on that node before moving to the next node in the allocation

  • NODE assigns processes in a round-robin fashion to all nodes in the allocation, with the number assigned to each node capped by the number of available slots on that node

  • SEQ (often accompanied by the file=<path> qualifier) assigns one process to each node specified in the file. The sequential file is to contain an entry for each desired process, one per line of the file.

  • PPR:N:resource maps N procs to each instance of the specified resource type in the allocation

  • RANKFILE (often accompanied by the file=<path> qualifier) assigns one process to the node/resource specified in each entry of the file, one per line of the file.

  • PE-LIST=a,b assigns procs to each node in the allocation based on the ORDERED qualifier. The list is comprised of comma-delimited ranges of CPUs to use for this job. If the ORDERED qualifier is not provided, then each node will be assigned procs up to the number of available slots, capped by the availability of the specified CPUs. If ORDERED is given, then one proc will be assigned to each of the specified CPUs, if available, capped by the number of slots on each node and the total number of specified processes. Providing the OVERLOAD qualifier to the “bind-to” option removes the check on availability of the CPU in both cases.

Any directive can include qualifiers by adding a colon (:) and any combination of one or more of the following (delimited by colons) to the --map-by option (except where noted):

  • PE=n bind n CPUs to each process (can not be used in combination with rankfile or pe-list directives)

  • SPAN load balance the processes across the allocation by treating the allocation as a single “super-node” (can not be used in combination with slot, node, seq, ppr, rankfile, or pe-list directives)

  • OVERSUBSCRIBE allow more processes on a node than processing elements

  • NOOVERSUBSCRIBE means !OVERSUBSCRIBE

  • NOLOCAL do not launch processes on the same node as prun

  • HWTCPUS use hardware threads as CPU slots

  • CORECPUS use cores as CPU slots (default)

  • INHERIT indicates that a child job (i.e., one spawned from within an application) shall inherit the placement policies of the parent job that spawned it.

  • NOINHERIT means `!INHERIT

  • FILE=<path> (path to file containing sequential or rankfile entries).

  • ORDERED only applies to the PE-LIST option to indicate that procs are to be bound to each of the specified CPUs in the order in which they are assigned (i.e., the first proc on a node shall be bound to the first CPU in the list, the second proc shall be bound to the second CPU, etc.)

Note

Directives and qualifiers are case-insensitive and can be shortened to the minimum number of characters to uniquely identify them. Thus, L1CACHE can be given as l1cache or simply as L1.

The type of CPU (core vs hwthread) used in the mapping algorithm is determined as follows:

  • by user directive on the command line via the HWTCPUS qualifier to the --map-by directive

  • by setting the rmaps_default_mapping_policy MCA parameter to include the HWTCPUS qualifier. This parameter sets the default value for a PRRTE DVM — qualifiers are carried across to DVM jobs started via prun unless overridden by the user’s command line

  • defaults to CORE in topologies where core CPUs are defined, and to hwthreads otherwise.

If your application uses threads, then you probably want to ensure that you are either not bound at all (by specifying --bind-to none), or bound to multiple cores using an appropriate binding level or specific number of processing elements per application process via the PE=# qualifier to the --map-by command line directive.

A more detailed description of the mapping, ranking, and binding procedure can be obtained via the --help placement option.

17.1.2.4.11.11. The --output option

The output command line directive must be accompanied by a comma-delimited list of case-insensitive options that control how output is generated. The full directive need not be provided — only enough characters are required to uniquely identify the directive. For example, MERGE is sufficient to represent the MERGE-STDERR-TO-STDOUT directive — while TAG can not be used to represent TAG-DETAILED (though TAG-D would suffice).

Supported values include:

  • TAG marks each output line with the [job,rank]<stream>: of the process that generated it

  • TAG-DETAILED marks each output line with a detailed annotation containing [namespace,rank][hostname:pid]<stream>: of the process that generated it

  • TAG-FULLNAME marks each output line with the [namespace,rank]<stream>: of the process that generated it

  • TAG-FULLNAME marks each output line with the [namespace,rank]<stream>: of the process that generated it

  • TIMESTAMP prefixes each output line with a [datetime]<stream>: stamp. Note that the timestamp will be the time when the line is output by the DVM and not the time when the source output it

  • XML provides all output in a pseudo-XML format MERGE-STDERR-TO-STDOUT merges stderr into stdout

  • DIR=DIRNAME redirects output from application processes into DIRNAME/job/rank/std[out,err,diag]. The provided name will be converted to an absolute path

  • FILE=FILENAME redirects output from application processes into filename.rank. The provided name will be converted to an absolute path

Supported qualifiers include NOCOPY (do not copy the output to the stdout/err streams), and RAW (do not buffer the output into complete lines, but instead output it as it is received).

17.1.2.4.11.12. The --pmixmca option

Pass a PMIx MCA parameter

Syntax: --pmixmca <key> <value>, where key is the parameter name and value is the parameter value.

17.1.2.4.11.13. The --prefix option

Prefix to be used to look for PRRTE executables. PRRTE automatically sets the prefix for remote daemons if it was either configured with the --enable-prte-prefix-by-default option OR prte itself was executed with an absolute path to the prte command. This option overrides those settings, if present, and forces use of the provided path.

17.1.2.4.11.14. The --prtemca option

Pass a PRRTE MCA parameter.

Syntax: --prtemca <key> <value>, where key is the parameter name and value is the parameter value.

17.1.2.4.11.15. The --noprefix option

Disable automatic --prefix behavior. PRRTE automatically sets the prefix for remote daemons if it was either configured with the --enable-prte-prefix-by-default option OR prte itself was executed with an absolute path to the prte command. This option disables that behavior.

17.1.2.4.11.16. The --rank-by option

PRRTE automatically ranks processes for each job starting from zero. Regardless of the algorithm used, rank assignments span applications in the same job — i.e., a command line of

-n 3 app1 : -n 2 app2

will result in app1 having three processes ranked 0-2 and app2 having two processes ranked 3-4.

By default, process ranks are assigned in accordance with the mapping directive — e.g., jobs that are mapped by-node will have the process ranks assigned round-robin on a per-node basis. However, users can override the default by specifying any of the following directives using the --rank-by command line option:

  • SLOT assigns ranks to each process on a node in the order in which the mapper assigned them. This is the default behavior, but is provided as an explicit option to allow users to override any alternative default specified in the environment. When mapping to a specific resource type, procs assigned to a given instance of that resource on a node will be ranked on a per-resource basis on that node before moving to the next node.

  • NODE assigns ranks round-robin on a per-node basis

  • FILL assigns ranks to procs mapped to a particular resource type on each node, filling all ranks on that resource before moving to the next resource on that node. For example, procs mapped by L1cache would have all procs on the first L1cache ranked sequentially before moving to the second L1cache on the node. Once all procs on the node have been ranked, ranking would continue on the next node.

  • SPAN assigns ranks round-robin to procs mapped to a particular resource type, treating the collection of resource instances spanning the entire allocation as a single “super node” before looping around for the next pass. Thus, ranking would begin with the first proc on the first L1cache on the first node, then the next rank would be assigned to the first proc on the second L1cache on that node, proceeding across until the first proc had been ranked on all L1cache used by the job before circling around to rank the second proc on each object.

The rank-by command line option has no qualifiers.

Note

Directives are case-insensitive. SPAN is the same as span.

A more detailed description of the mapping, ranking, and binding procedure can be obtained via the --help placement option.

17.1.2.4.11.17. The --runtime-options option

The --runtime-options command line directive must be accompanied by a comma-delimited list of case-insensitive options that control the runtime behavior of the job. The full directive need not be provided — only enough characters are required to uniquely identify the directive.

Runtime options are typically true or false, though this is not a requirement on developers. Since the value of each option may need to be set (e.g., to override a default set by MCA parameter), the syntax of the command line directive includes the use of an = character to allow inclusion of a value for the option. For example, one can set the ABORT-NONZERO-STATUS option to true by specifying it as ABORT-NONZERO-STATUS=1. Note that boolean options can be set to true using a non-zero integer or a case-insensitive string of the word true. For the latter representation, the user need only provide at least the T character. The same policy applies to setting a boolean option to false.

Note that a boolean option will default to true if provided without a value. Thus, --runtime-options abort-nonzero is sufficient to set the ABORT-NONZERO-STATUS option to true.

Supported values include:

  • ERROR-NONZERO-STATUS[=(bool)]: if set to false, this directs the runtime to treat a process that exits with non-zero status as a normal termination. If set to true, the runtime will consider such an occurrence as an error termination and take appropriate action — i.e., the job will be terminated unless a runtime option directs otherwise. This option defaults to a true value if the option is given without a value.

  • DONOTLAUNCH: directs the runtime to map but not launch the specified job. This is provided to help explore possible process placement patterns before actually starting execution. No value need be passed as this is not an option that can be set by default in PRRTE.

  • SHOW-PROGRESS[=(bool)]: requests that the runtime provide progress reports on its startup procedure — i.e., the launch of its daemons in support of a job. This is typically used to debug DVM startup on large systems. This option defaults to a true value if the option is given without a value.

  • NOTIFYERRORS[=(bool)]: if set to true, requests that the runtime provide a PMIx event whenever a job encounters an error — e.g., a process fails. The event is to be delivered to each remaining process in the job. This option defaults to a true value if the option is given without a value. See --help notifications for more detail as to the PMIx event codes available for capturing failure events.

  • RECOVERABLE[=(bool)]: if set to true, this indicates that the application wishes to consider the job as recoverable — i.e., the application is assuming responsibility for recovering from any process failure. This could include application-driven spawn of a substitute process or internal compensation for the missing process. This option defaults to a true value if the option is given without a value.

  • AUTORESTART[=(bool)]: if set to true, this requests that the runtime automatically restart failed processes up to “max restarts” number of times. This option defaults to a true value if the option is given without a value.

  • CONTINUOUS[=(bool)]: if set to true, this informs the runtime that the processes in this job are to run until explicitly terminated. Processes that fail are to be automatically restarted up to “max restarts” number of times. Notification of process failure is to be delivered to all processes in the application. This is the equivalent of specifying RECOVERABLE, NOTIFYERRORS, and AUTORESTART options except that the runtime, not the application, assumes responsibility for process recovery. This option defaults to a true value if the option is given without a value.

  • MAX-RESTARTS=<int>: indicates the maximum number of times a given process is to be restarted. This can be set at the application or job level (which will then apply to all applications in that job).

  • EXEC-AGENT=<path> indicates the executable that shall be used to start an application process. The resulting command for starting an application process will be <path> app <app-argv>. The path may contain its own command line arguments.

  • DEFAULT-EXEC-AGENT: directs the runtime to use the system default exec agent to start an application process. No value need be passed as this is not an option that can be set by default in PRRTE.

  • OUTPUT-PROCTABLE[(=channel)]: directs the runtime to report the convential debugger process table (includes PID and host location of each process in the application). Output is directed to stdout if the channel is -, stderr if +, or into the specified file otherwise. If no channel is specified, output will be directed to stdout.

  • STOP-ON-EXEC: directs the runtime to stop the application process(es) immediately upon exec’ing them. The directive will apply to all processes in the job.

  • STOP-IN-INIT: indicates that the runtime should direct the application process(es) to stop in PMIx_Init(). The directive will apply to all processes in the job.

  • STOP-IN-APP: indicates that the runtime should direct application processes to stop at some application-defined place and notify they are ready-to-debug. The directive will apply to all processes in the job.

  • TIMEOUT=<string>: directs the runtime to terminate the job after it has executed for the specified time. Time is specified in colon-delimited format — e.g., 01:20:13:05 to indicate 1 day, 20 hours, 13 minutes and 5 seconds. Time specified without colons will be assumed to have been given in seconds.

  • SPAWN-TIMEOUT=<string>: directs the runtime to terminate the job if job launch is not completed within the specified time. Time is specified in colon-delimited format — e.g., 01:20:13:05 to indicate 1 day, 20 hours, 13 minutes and 5 seconds. Time specified without colons will be assumed to have been given in seconds.

  • REPORT-STATE-ON-TIMEOUT[(=bool)]: directs the runtime to provide a detailed report on job and application process state upon job timeout. This option defaults to a true value if the option is given without a value.

  • GET-STACK-TRACES[(=bool)]: requests that the runtime provide stack traces on all application processes still executing upon timeout. This option defaults to a true value if the option is given without a value.

  • REPORT-CHILD-JOBS-SEPARATELY[(=bool)]: directs the runtime to report the exit status of any child jobs spawned by the primary job separately. If false, then the final exit status reported will be zero if the primary job and all spawned jobs exit normally, or the first non-zero status returned by either primary or child jobs. This option defaults to a true value if the option is given without a value.

  • AGGREGATE-HELP-MESSAGES[(=bool)]: directs the runtime to aggregate help messages, reporting each unique help message once accompanied by the number of processes that reported it. This option defaults to a true value if the option is given without a value.

  • FWD-ENVIRONMENT[(=bool)]: directs the runtime to forward the entire local environment in support of the application. This option defaults to a true value if the option is given without a value.

The --runtime-options command line option has no qualifiers.

Note

Directives are case-insensitive. FWD-ENVIRONMENT is the same as fwd-environment.

17.1.2.4.11.18. The --stream-buffering option

Adjust buffering for stdout/stderr. Allowable values:

  • 0: unbuffered

  • 1: line buffered

  • 2: fully buffered

17.1.2.4.11.19. The --tune option

Comma-delimited list of one or more files containing PRRTE and PMIx MCA params for tuning DVM and/or application operations. Parameters in the file will be treated as generic parameters and subject to the translation rules/uncertainties. See --help mca for more information.

Syntax in the file is:

param = value

with one parameter and its associated value per line. Empty lines and lines beginning with the # character are ignored.

17.1.2.4.11.20. The -x option

Export an environment variable, optionally specifying a value. For example:

  • -x foo exports the environment variable foo and takes its value from the current environment.

  • -x foo=bar exports the environment variable name foo and sets its value to bar in the started processes.

  • -x foo* exports all current environmental variables starting with foo.

17.1.2.4.12. Deprecated command line options

The following command line options are deprecated, and should generally not be used. They may be removed in a future release of Open MPI.

17.1.2.4.12.1. The --bind-to-core option

Bind each process to its own core.

Deprecated

This option is deprecated. Please use --bind-to core.

17.1.2.4.12.2. The --display-allocation option

Display the allocation being used by this job.

Deprecated

This option is deprecated. Please use --display alloc.

17.1.2.4.12.3. The --display-devel-allocation option

Display a detailed list (mostly intended for developers) of the allocation being used by this job.

Deprecated

This option is deprecated. Please use --display alloc-devel.

17.1.2.4.12.4. The --display-devel-map option

Display a detailed process map (mostly intended for developers) just before launch.

Deprecated

This option is deprecated. Please use --display map-devel.

17.1.2.4.12.5. The --display-map option

Display the process map just before launch.

Deprecated

This option is deprecated. Please use --display map.

17.1.2.4.12.6. The --display-topo option

Display the topology as part of the process map (mostly intended for developers) just before launch.

Deprecated

This option is deprecated. Please use --display topo.

17.1.2.4.12.7. The --gmca option

Syntax: --gmca <key> <value>, where key is the parameter name and value is the parameter value. The g prefix indicates that this parameter is “global”, and to be applied to all application contexts — not just the one in which the directive appears.

Pass generic MCA parameters — i.e., parameters whose project affiliation must be determined by PRRTE based on matching the name of the parameter with defined values from various projects that PRRTE knows about.

Deprecated

This translation can be incomplete (e.g., if known project adds or changes parameters) — thus, it is strongly recommended that users use project-specific parameters such as --gprtemca or --gpmixmca.

17.1.2.4.12.8. The --mca option

Syntax: --mca <key> <value>, where key is the parameter name and value is the parameter value.

Pass generic MCA parameters — i.e., parameters whose project affiliation must be determined by PRRTE based on matching the name of the parameter with defined values from various projects that PRRTE knows about.

Deprecated

This translation can be incomplete (e.g., if a project adds or changes parameters) — thus, it is strongly recommended that users use project-specific parameters such as --prtemca or --pmixmca.

17.1.2.4.12.9. The --merge-stderr-to-stdout option

Merge stderr to stdout for each process.

Deprecated

This option is deprecated. Please use --output merge

17.1.2.4.12.10. The --output-directory option

Redirect output from application processes into filename/job/rank/std[out,err,diag]. A relative path value will be converted to an absolute path. The directory name may include a colon followed by a comma-delimited list of optional case-insensitive directives. Supported directives currently include NOJOBID (do not include a job-id directory level) and NOCOPY (do not copy the output to the stdout/err streams).

Deprecated

This option is deprecated. Please use --output dir=<path>.

17.1.2.4.12.11. The --output-filename option

Redirect output from application processes into filename.rank. A relative path value will be converted to an absolute path. The directory name may include a colon followed by a comma-delimited list of optional case-insensitive directives. Supported directives currently include NOCOPY (do not copy the output to the stdout/err streams).

Deprecated

This option is deprecated. Please use --output file=<path>

17.1.2.4.12.12. The --report-bindings option

Display process bindings to stderr.

Deprecated

This option is deprecated. Please use --display bindings.

17.1.2.4.12.13. The --tag-output option

Tag all output with [job,rank].

Deprecated

This option is deprecated. Please use --output.

17.1.2.4.12.14. The --timestamp-output option

Timestamp all application process output.

Deprecated

This option is deprecated. Please use --output timestamp.

17.1.2.4.12.15. The --xml option

Provide all output in XML format.

Deprecated

This option is deprecated. Please use --output.

17.1.2.5. OPTIONS (OLD / HARD-CODED CONTENT — TO BE AUDITED

This is old content

This is the old section of manually hard-coded content. It should probably be read / audited and see what we want to keep and what we want to discard.

Feel free to refer to https://docs.prrte.org/ rather than replicating content here (e.g., for the definition of a slot and other things).

mpirun will send the name of the directory where it was invoked on the local node to each of the remote nodes, and attempt to change to that directory. See the “Current Working Directory” section below for further details.

  • <program>: The program executable. This is identified as the first non-recognized argument to mpirun.

  • <args>: Pass these run-time arguments to every new process. These must always be the last arguments to mpirun. If an app context file is used, <args> will be ignored.

  • -h, --help: Display help for this command

  • -q, --quiet: Suppress informative messages from orterun during application execution.

  • -v, --verbose:` Be verbose

  • -V, --version: Print version number. If no other arguments are given, this will also cause orterun to exit.

  • -N <num>: Launch num processes per node on all allocated nodes (synonym for --npernode).

  • --display-map: Display a table showing the mapped location of each process prior to launch.

  • --display-allocation: Display the detected resource allocation.

  • --output-proctable: Output the debugger proctable after launch.

  • --dvm: Create a persistent distributed virtual machine (DVM).

  • --max-vm-size <size>: Number of daemons to start.

Use one of the following options to specify which hosts (nodes) of the cluster to run on. Note that as of the start of the v1.8 release, mpirun will launch a daemon onto each host in the allocation (as modified by the following options) at the very beginning of execution, regardless of whether or not application processes will eventually be mapped to execute there. This is done to allow collection of hardware topology information from the remote nodes, thus allowing us to map processes against known topology. However, it is a change from the behavior in prior releases where daemons were only launched after mapping was complete, and thus only occurred on nodes where application processes would actually be executing.

  • -H, --host <host1,host2,...,hostN>: list of hosts on which to invoke processes.

  • --hostfile <hostfile>: Provide a hostfile to use.

  • --default-hostfile <hostfile>: Provide a default hostfile.

  • --machinefile <machinefile>: Synonym for --hostfile.

  • --cpu-set <list>: Restrict launched processes to the specified logical CPUs on each node (comma-separated list). Note that the binding options will still apply within the specified envelope — e.g., you can elect to bind each process to only one CPU within the specified CPU set.

The following options specify the number of processes to launch. Note that none of the options imply a particular binding policy — e.g., requesting N processes for each package does not imply that the processes will be bound to the package.

  • -n, --n, -c, -np <#>: Run this many copies of the program on the given nodes. This option indicates that the specified file is an executable program and not an application context. If no value is provided for the number of copies to execute (i.e., neither the -n nor its synonyms are provided on the command line), Open MPI will automatically execute a copy of the program on each process slot (see PRRTE’s defintion of “slot” for description of a “process slot”). This feature, however, can only be used in the SPMD model and will return an error (without beginning execution of the application) otherwise.

    Note

    The -n option is the preferred option to be used to specify the number of copies of the program to be executed, but the alternate options are also accepted.

  • --map-by ppr:N:<object>: Launch N times the number of objects of the specified type on each node.

  • --npersocket <#persocket>: On each node, launch this many processes times the number of processor sockets on the node. The -npersocket option also turns on the --bind-to-socket option. (deprecated in favor of --map-by ppr:n:package)

  • --npernode <#pernode>: On each node, launch this many processes. (deprecated in favor of --map-by ppr:n:node).

  • --pernode: On each node, launch one process — equivalent to --npernode 1. (deprecated in favor of --map-by ppr:1:node)

To map processes:

  • --map-by <object>: Map to the specified object, defaults to package. Supported options include slot, hwthread, core, L1cache, L2cache, L3cache, package, numa, node, seq, rankfile, pe-list=#, and ppr. Any object can include modifiers by adding a : and any combination of the following:

    • pe=n: bind n processing elements to each proc

    • span: load balance the processes across the allocation

    • oversubscribe: allow more processes on a node than processing elements

    • nooversubscribe: do not allow more processes on a node than processing elements (default)

    • nolocal: do not place processes on the same host as the mpirun process

    • hwtcpus: use hardware threads as CPU slots for mapping

    • corecpus: use processor cores as CPU slots for mapping (default)

    • file=filename: used with rankfile; use filename to specify the file to use

    • ordered: used with pe-list to bind each process to one of the specified processing elements

    Note

    socket is also accepted as an alias for package.

  • --bycore: Map processes by core (deprecated in favor of --map-by core).

  • --byslot: Map and rank processes round-robin by slot (deprecated in favor of --map-by slot).

  • --nolocal: Do not run any copies of the launched application on the same node as orterun is running. This option will override listing the localhost with --host or any other host-specifying mechanism. Alias for --map-by :nolocal.

  • --nooversubscribe: Do not oversubscribe any nodes; error (without starting any processes) if the requested number of processes would cause oversubscription. This option implicitly sets “max_slots” equal to the “slots” value for each node. (Enabled by default). Alias for --map-by :nooversubscribe.

  • --oversubscribe: Nodes are allowed to be oversubscribed, even on a managed system, and overloading of processing elements. Alias for --map-by :oversubscribe.

  • --bynode: Launch processes one per node, cycling by node in a round-robin fashion. This spreads processes evenly among nodes and assigns MPI_COMM_WORLD ranks in a round-robin, “by node” manner. (deprecated in favor of --map-by node)

  • --cpu-list <cpus>: Comma-delimited list of processor IDs to which to bind processes [default=``NULL``]. Processor IDs are interpreted as hwloc logical core IDs.

    Note

    You can run Run the hwloc lstopo(1) command to see a list of available cores and their logical IDs.

To order processes’ ranks in MPI_COMM_WORLD:

  • --rank-by <mode>: Rank in round-robin fashion according to the specified mode, defaults to slot. Supported options include slot, node, fill, and span.

For process binding:

  • --bind-to <object>: Bind processes to the specified object, defaults to core. Supported options include slot, hwthread, core, l1cache, l2cache, l3cache, package, numa, and none.

  • --cpus-per-proc <#perproc>: Bind each process to the specified number of cpus. (deprecated in favor of --map-by <obj>:PE=n)

  • --cpus-per-rank <#perrank>: Alias for --cpus-per-proc. (deprecated in favor of --map-by <obj>:PE=n)

  • --bind-to-core Bind processes to cores (deprecated in favor of --bind-to core)

  • --bind-to-socket: Bind processes to processor sockets (deprecated in favor of --bind-to package)

  • --report-bindings: Report any bindings for launched processes.

For rankfiles:

  • --rankfile <rankfile>: Provide a rankfile file. (deprecated in favor of --map-by rankfile:file=FILE)

To manage standard I/O:

  • --output-filename <filename>: Redirect the stdout, stderr, and stddiag of all processes to a process-unique version of the specified filename. Any directories in the filename will automatically be created. Each output file will consist of filename.id, where the id will be the processes’ rank in MPI_COMM_WORLD, left-filled with zero’s for correct ordering in listings. A relative path value will be converted to an absolute path based on the cwd where mpirun is executed. Note that this will not work on environments where the file system on compute nodes differs from that where mpirun(1) is executed.

  • --stdin <rank>: The MPI_COMM_WORLD rank of the process that is to receive stdin. The default is to forward stdin to MPI_COMM_WORLD rank 0, but this option can be used to forward stdin to any process. It is also acceptable to specify none, indicating that no processes are to receive stdin.

  • --merge-stderr-to-stdout: Merge stderr to stdout for each process.

  • --tag-output: Tag each line of output to stdout, stderr, and stddiag with [jobid, MCW_rank]<stdxxx> indicating the process jobid and MPI_COMM_WORLD rank of the process that generated the output, and the channel which generated it.

  • --timestamp-output: Timestamp each line of output to stdout, stderr, and stddiag.

  • --xml: Provide all output to stdout, stderr, and stddiag in an XML format.

  • --xml-file <filename> Provide all output in XML format to the specified file.

  • --xterm <ranks>: Display the output from the processes identified by their MPI_COMM_WORLD ranks in separate xterm windows. The ranks are specified as a comma-separated list of ranges, with a -1 indicating all. A separate window will be created for each specified process.

    Note

    xterm will normally terminate the window upon termination of the process running within it. However, by adding a ! to the end of the list of specified ranks, the proper options will be provided to ensure that xterm keeps the window open after the process terminates, thus allowing you to see the process’ output. Each xterm window will subsequently need to be manually closed. Note: In some environments, xterm may require that the executable be in the user’s path, or be specified in absolute or relative terms. Thus, it may be necessary to specify a local executable as ./my_mpi_app instead of just my_mpi_app. If xterm fails to find the executable, mpirun will hang, but still respond correctly to a ctrl-C. If this happens, please check that the executable is being specified correctly and try again.

To manage files and runtime environment:

  • --path <path>: <path> that will be used when attempting to locate the requested executables. This is used prior to using the local PATH environment variable setting.

  • --prefix <dir>: Prefix directory that will be used to set the PATH and LD_LIBRARY_PATH on the remote node before invoking Open MPI or the target process. See the Remote Execution section, below.

  • --noprefix: Disable the automatic --prefix behavior

  • --preload-binary: Copy the specified executable(s) to remote machines prior to starting remote processes. The executables will be copied to the Open MPI session directory and will be deleted upon completion of the job.

  • --preload-files <files>: Preload the comma-separated list of files to the current working directory of the remote machines where processes will be launched prior to starting those processes.

  • --set-cwd-to-session-dir: Set the working directory of the started processes to their session directory.

  • --wd <dir>: Synonym for -wdir.

  • --wdir <dir>: Change to the directory <dir> before the user’s program executes. See the Current Working Directory section for notes on relative paths. Note: If the --wdir option appears both on the command line and in an application context, the context will take precedence over the command line. Thus, if the path to the desired wdir is different on the backend nodes, then it must be specified as an absolute path that is correct for the backend node.

  • -x <env>: Export the specified environment variables to the remote nodes before executing the program. Only one environment variable can be specified per -x option. Existing environment variables can be specified or new variable names specified with corresponding values. For example:

    shell$ mpirun -x DISPLAY -x OFILE=/tmp/out ...
    

    The parser for the -x option is not very sophisticated; it does not even understand quoted values. Users are advised to set variables in the environment, and then use -x to export (not define) them.

Setting MCA parameters:

  • --gmca <key> <value>: Pass global MCA parameters that are applicable to all contexts. <key> is the parameter name; <value> is the parameter value.

  • --mca <key> <value>: Send arguments to various MCA modules. See the Setting MCA Parameters section for mode details.

  • --tune <tune_file>: Specify a tune file to set arguments for various MCA modules and environment variables. See the :ref:` Setting MCA parameters and environment variables from file <man1-mpirun-setting-mca-params-from-file>`. --am <arg> is an alias for --tune <arg>.

For debugging:

  • --get-stack-traces: When paired with the --timeout option, mpirun will obtain and print out stack traces from all launched processes that are still alive when the timeout expires. Note that obtaining stack traces can take a little time and produce a lot of output, especially for large process-count jobs.

  • --timeout <seconds>: The maximum number of seconds that mpirun will run. After this many seconds, mpirun will abort the launched job and exit with a non-zero exit status. Using --timeout can be also useful when combined with the --get-stack-traces option.

There are also other options:

  • --allow-run-as-root: Allow mpirun to run when executed by the root user (mpirun defaults to aborting when launched as the root user). Be sure to see the Running as root section for more detail.

  • --app <appfile>: Provide an appfile, ignoring all other command line options.

  • --continuous: Job is to run until explicitly terminated.

  • --disable-recovery: Disable recovery (resets all recovery options to off).

  • --do-not-launch: Perform all necessary operations to prepare to launch the application, but do not actually launch it.

  • --enable-recovery: Enable recovery from process failure (default: disabled)

  • --leave-session-attached: Do not detach back-end daemons used by this application. This allows error messages from the daemons as well as the underlying environment (e.g., when failing to launch a daemon) to be output.

  • --max-restarts <num>: Max number of times to restart a failed process.

  • --personality <list>: Comma-separated list of programming model, languages, and containers being used (default=``ompi``).

  • --ppr <list>: Comma-separated list of number of processes on a given resource type (default: none). Alias for --map-by ppr:N:OBJ.

  • --report-child-jobs-separately: Return the exit status of the primary job only.

  • --report-events <URI>: Report events to a tool listening at the specified URI.

  • --report-pid <channel>: Print out mpirun’s PID during startup. The channel must be either a - to indicate that the PID is to be output to stdout, a + to indicate that the PID is to be output to stderr, or a filename to which the PID is to be written.

  • --report-uri <channel>: Print out mpirun’s URI during startup. The channel must be either a - to indicate that the URI is to be output to stdout, a + to indicate that the URI is to be output to stderr, or a filename to which the URI is to be written.

  • --show-progress: Output a brief periodic report on launch progress.

  • --terminate: Terminate the DVM.

  • --use-hwthread-cpus: Use hardware threads as independent CPUs.

    Note that if a number of slots is not provided to Open MPI (e.g., via the slots keyword in a hostfile or from a resource manager such as Slurm), the use of this option changes the default calculation of number of slots on a node. See the PRRTE’s defintion of “slot” for more details.

    Also note that the use of this option changes the Open MPI’s definition of a “processor element” from a processor core to a hardware thread. See PRRTE’s defintion of a “processor element” for more details.

The following options are useful for developers; they are not generally useful to most Open MPI users:

  • --debug-daemons: Enable debugging of the run-time daemons used by this application.

  • --debug-daemons-file: Enable debugging of the run-time daemons used by this application, storing output in files.

  • --display-devel-map: Display a more detailed table showing the mapped location of each process prior to launch.

  • --display-topo: Display the topology as part of the process map just before launch.

  • --launch-agent: Name of the executable that is to be used to start processes on the remote nodes. The default is PRRTEd. This option can be used to test new daemon concepts, or to pass options back to the daemons without having mpirun itself see them. For example, specifying a launch agent of PRRTEd -mca odls_base_verbose 5 allows the developer to ask the PRRTEd for debugging output without clutter from mpirun itself.

  • --report-state-on-timeout: When paired with the --timeout command line option, report the run-time subsystem state of each process when the timeout expires.

There may be other options listed with mpirun --help.

17.1.2.5.1. Environment Variables

This is old, hard-coded content

Is this content still current / accurate? Should it be updated and retained, or removed?

  • MPIEXEC_TIMEOUT: Synonym for the --timeout command line option.

17.1.2.6. DESCRIPTION

This is old, hard-coded content

Is this content still current / accurate? Should it be updated and retained, or removed?

One invocation of mpirun starts an MPI application running under Open MPI. If the application is single process multiple data (SPMD), the application can be specified on the mpirun command line.

If the application is multiple instruction multiple data (MIMD), comprising of multiple programs, the set of programs and argument can be specified in one of two ways: Extended Command Line Arguments, and Application Context.

An application context describes the MIMD program set including all arguments in a separate file. This file essentially contains multiple mpirun command lines, less the command name itself. The ability to specify different options for different instantiations of a program is another reason to use an application context.

Extended command line arguments allow for the description of the application layout on the command line using colons (:) to separate the specification of programs and arguments. Some options are globally set across all specified programs (e.g., --hostfile), while others are specific to a single program (e.g., -n).

17.1.2.6.1. Specifying Host Nodes

This is old, hard-coded content

Is this content still current / accurate? Should it be updated and retained, or removed?

Host nodes can be identified on the mpirun command line with the --host option or in a hostfile.

For example:

shell$ mpirun -H aa,aa,bb ./a.out

Launches two processes on node aa and one on bb.

Or, consider the hostfile:

shell$ cat myhostfile
aa slots=2
bb slots=2
cc slots=2

Here, we list both the host names (aa, bb, and cc) but also how many slots there are for each.

shell$ mpirun --hostfile myhostfile ./a.out

will launch two processes on each of the three nodes.

shell$ mpirun --hostfile myhostfile --host aa ./a.out

will launch two processes, both on node aa.

shell$ mpirun --hostfile myhostfile --host dd ./a.out

will find no hosts to run on and will abort with an error. That is, the specified host dd is not in the specified hostfile.

When running under resource managers (e.g., Slurm, Torque, etc.), Open MPI will obtain both the hostnames and the number of slots directly from the resource manager.

17.1.2.6.2. Specifying Number of Processes

This is old, hard-coded content

Is this content still current / accurate? Should it be updated and retained, or removed?

As we have just seen, the number of processes to run can be set using the hostfile. Other mechanisms exist.

The number of processes launched can be specified as a multiple of the number of nodes or processor packages available. For example,

shell$ mpirun -H aa,bb --map-by ppr:2:package ./a.out

launches processes 0-3 on node aa and process 4-7 on node bb (assuming aa and bb both contain 4 slots each).

shell$ mpirun -H aa,bb --map-by ppr:2:node ./a.out

launches processes 0-1 on node aa and processes 2-3 on node bb.

shell$ mpirun -H aa,bb --map-by ppr:1:node ./a.out

launches one process per host node.

mpirun -H aa,bb --pernode ./a.out

is the same as --map-by ppr:1:node and --npernode 1.

Another alternative is to specify the number of processes with the -n option. Consider now the hostfile:

shell$ cat myhostfile
aa slots=4
bb slots=4
cc slots=4

Now run with myhostfile:

shell$ mpirun --hostfile myhostfile -n 6 ./a.out

will launch processes 0-3 on node aa and processes 4-5 on node bb. The remaining slots in the hostfile will not be used since the -n option indicated that only 6 processes should be launched.

17.1.2.6.3. Mapping Processes to Nodes: Using Policies

This is old, hard-coded content

Is this content still current / accurate? Should it be updated and retained, or removed?

The examples above illustrate the default mapping of process processes to nodes. This mapping can also be controlled with various mpirun options that describe mapping policies.

Consider the same hostfile as above, again with -n 6. The table below lists a few mpirun variations, and shows which MPI_COMM_WORLD ranks end up on which node:

Command

Node aa

Node bb

Node cc

mpirun

0 1 2 3

4 5

mpirun --map-by node

0 3

1 4

2 5

mpirun --nolocal

0 1 2 3

4 5

The --map-by node option will load balance the processes across the available nodes, numbering each process in a round-robin fashion.

The --nolocal option prevents any processes from being mapped onto the local host (in this case node aa). While mpirun typically consumes few system resources, --nolocal can be helpful for launching very large jobs where mpirun may actually need to use noticeable amounts of memory and/or processing time.

Just as -n can specify fewer processes than there are slots, it can also oversubscribe the slots. For example, with the same hostfile:

shell$ mpirun --hostfile myhostfile -n 14 ./a.out

will launch processes 0-3 on node aa, 4-7 on bb, and 8-11 on cc. It will then add the remaining two processes to whichever nodes it chooses.

One can also specify limits to oversubscription. For example, with the same hostfile:

shell$ mpirun --hostfile myhostfile -n 14 --nooversubscribe ./a.out

will produce an error since --nooversubscribe prevents oversubscription.

Limits to oversubscription can also be specified in the hostfile itself:

shell$ cat myhostfile
aa slots=4 max_slots=4
bb         max_slots=4
cc slots=4

The max_slots field specifies such a limit. When it does, the slots value defaults to the limit. Now:

shell$ mpirun --hostfile myhostfile -n 14 ./a.out

causes the first 12 processes to be launched as before, but the remaining two processes will be forced onto node cc. The other two nodes are protected by the hostfile against oversubscription by this job.

Using the --nooversubscribe option can be helpful since Open MPI currently does not get max_slots values from the resource manager.

Of course, -n can also be used with the -H or -host option. For example:

shell$ mpirun -H aa,bb -n 8 ./a.out

launches 8 processes. Since only two hosts are specified, after the first two processes are mapped, one to aa and one to bb, the remaining processes oversubscribe the specified hosts.

And here is a MIMD example:

shell$ mpirun -H aa -n 1 hostname : -H bb,cc -n 2 uptime

will launch process 0 running hostname on node aa and processes 1 and 2 each running uptime on nodes bb and cc, respectively.

17.1.2.6.4. Mapping, Ranking, and Binding: Oh My!

This is old, hard-coded content

Is this content still current / accurate? Should it be updated and retained, or removed?

Open MPI employs a three-phase procedure for assigning process locations and ranks:

  1. Mapping: Assigns a default location to each process

  2. Ranking: Assigns an MPI_COMM_WORLD rank value to each process

  3. Binding: Constrains each process to run on specific processors

The mapping step is used to assign a default location to each process based on the mapper being employed. Mapping by slot, node, and sequentially results in the assignment of the processes to the node level. In contrast, mapping by object, allows the mapper to assign the process to an actual object on each node.

Note that the location assigned to the process is independent of where it will be bound — the assignment is used solely as input to the binding algorithm.

The mapping of process processes to nodes can be defined not just with general policies but also, if necessary, using arbitrary mappings that cannot be described by a simple policy. One can use the “sequential mapper,” which reads the hostfile line by line, assigning processes to nodes in whatever order the hostfile specifies. Use the ---map-by seq option. For example, using the same hostfile as before:

shell$ mpirun -hostfile myhostfile --map-by seq ./a.out

will launch three processes, one on each of nodes aa, bb, and cc, respectively. The slot counts don’t matter; one process is launched per line on whatever node is listed on the line.

Another way to specify arbitrary mappings is with a rankfile, which gives you detailed control over process binding as well. Rankfiles are discussed below.

The second phase focuses on the ranking of the process within the job’s MPI_COMM_WORLD. Open MPI separates this from the mapping procedure to allow more flexibility in the relative placement of MPI processes. This is best illustrated by considering the following cases where we used the --np 8 --map-by ppr:2:package --host aa:4,bb:4 option:

Option

Node aa

Node bb

--rank-by fill (i.e., dense packing) Default

0 1 | 2 3

4 5 | 6 7

--rank-by span (i.e., sparse or load balanced packing)

0 4 | 1 5

2 6 | 3 7

--rank-by node

0 2 | 4 6

1 3 | 5 7

Ranking by fill assigns MCW ranks in a simple progression across each node. Ranking by span and by slot provide the identical result — a round-robin progression of the packages across all nodes before returning to the first package on the first node. Ranking by node assigns MCW ranks iterating first across nodes then by package.

The binding phase actually binds each process to a given set of processors. This can improve performance if the operating system is placing processes suboptimally. For example, it might oversubscribe some multi-core processor packages, leaving other packages idle; this can lead processes to contend unnecessarily for common resources. Or, it might spread processes out too widely; this can be suboptimal if application performance is sensitive to interprocess communication costs. Binding can also keep the operating system from migrating processes excessively, regardless of how optimally those processes were placed to begin with.

The processors to be used for binding can be identified in terms of topological groupings — e.g., binding to an l3cache will bind each process to all processors within the scope of a single L3 cache within their assigned location. Thus, if a process is assigned by the mapper to a certain package, then a --bind-to l3cache directive will cause the process to be bound to the processors that share a single L3 cache within that package.

Alternatively, processes can be mapped and bound to specified cores using the --map-by pe-list= option. For example, --map-by pe-list=0,2,5 will map three processes all three of which will be bound to logical cores 0,2,5. If you intend to bind each of the three processes to different cores then the :ordered qualifier can be used like --map-by pe-list=0,2,5:ordered. In this example, the first process on a node will be bound to CPU 0, the second process on the node will be bound to CPU 2, and the third process on the node will be bound to CPU 5.

Finally, --report-bindings can be used to report bindings.

As an example, consider a node with two processor packages, each comprised of four cores, and each of those cores contains one hardware thread. The --report-bindings option shows the binding of each process in a descriptive manner. Below are some examples.

shell$ mpirun --np 4 --report-bindings --map-by core --bind-to core
[...] Rank 0 bound to package[0][core:0]
[...] Rank 1 bound to package[0][core:1]
[...] Rank 2 bound to package[0][core:2]
[...] Rank 3 bound to package[0][core:3]

In the above case, the processes bind to successive cores.

shell$ mpirun --np 4 --report-bindings --map-by package --bind-to package
[...] Rank 0 bound to package[0][core:0-3]
[...] Rank 1 bound to package[0][core:0-3]
[...] Rank 2 bound to package[1][core:4-7]
[...] Rank 3 bound to package[1][core:4-7]

In the above case, processes bind to all cores on successive packages. The processes cycle through the processor packages in a round-robin fashion as many times as are needed. By default, the processes are ranked in a fill manner.

shell$ mpirun --np 4 --report-bindings --map-by package --bind-to package --rank-by span
[...] Rank 0 bound to package[0][core:0-3]
[...] Rank 1 bound to package[1][core:4-7]
[...] Rank 2 bound to package[0][core:0-3]
[...] Rank 3 bound to package[1][core:4-7]

The above case demonstrates the difference in ranking when the span qualifier is used instead of the default.

shell$ mpirun --np 4 --report-bindings --map-by slot:PE=2 --bind-to core
[...] Rank 0 bound to package[0][core:0-1]
[...] Rank 1 bound to package[0][core:2-3]
[...] Rank 2 bound to package[0][core:4-5]
[...] Rank 3 bound to package[0][core:6-7]

In the above case, the output shows us that 2 cores have been bound per process. Specifically, the mapping by slot with the PE=2 qualifier indicated that each slot (i.e., process) should consume two processor elements. By default, Open MPI defines “processor element” as “core”, and therefore the --bind-to core caused each process to be bound to both of the cores to which it was mapped.

shell$ mpirun --np 4 --report-bindings --map-by slot:PE=2 --use-hwthread-cpus
[...]] Rank 0 bound to package[0][hwt:0-1]
[...]] Rank 1 bound to package[0][hwt:2-3]
[...]] Rank 2 bound to package[0][hwt:4-5]
[...]] Rank 3 bound to package[0][hwt:6-7]

In the above case, we replace the --bind-to core with --use-hwthread-cpus. The --use-hwthread-cpus is converted into --bind-to hwthread and tells the --report-bindings output to show the hardware threads to which a process is bound. In this case, processes are bound to 2 hardware threads per process.

shell$ mpirun --np 4 --report-bindings --bind-to none
[...] Rank 0 is not bound (or bound to all available processors)
[...] Rank 1 is not bound (or bound to all available processors)
[...] Rank 2 is not bound (or bound to all available processors)
[...] Rank 3 is not bound (or bound to all available processors)

In the above case, binding is turned off and are reported as such.

Open MPI’s support for process binding depends on the underlying operating system. Therefore, certain process binding options may not be available on every system.

Process binding can also be set with MCA parameters. Their usage is less convenient than that of mpirun options. On the other hand, MCA parameters can be set not only on the mpirun command line, but alternatively in a system or user mca-params.conf file or as environment variables, as described in the Setting MCA Parameters. These are MCA parameters for the PRRTE runtime so the command line argument --PRRTEmca must be used to pass the MCA parameter key/value pair. Alternatively, the MCA parameter key/ value pair may be specific on the command line by prefixing the key with PRRTE_MCA_. Some examples include:

Option

PRRTE MCA parameter key

Value

--map-by core

rmaps_default_mapping_policy

core

--map-by package

rmaps_default_mapping_policy

package

--rank-by fill

rmaps_default_ranking_policy

fill

--bind-to core

hwloc_default_binding_policy

core

--bind-to package

hwloc_default_binding_policy

package

--bind-to none

hwloc_default_binding_policy

none

17.1.2.6.5. Defaults for Mapping, Ranking, and Binding

This is old, hard-coded content

Is this content still current / accurate? Should it be updated and retained, or removed?

If the user does not specify each of --map-by, --rank-by, and --bind-to option then the default values are as follows:

  • If no options are specified then

    • If the number of processes is less than or equal to 2, then:

      • --map-by is core

      • --bind-to is core

      • --rank-by is span

      • Result: --map-by core --bind-to core --rank-by span

    • Otherwise:

      • --map-by is package

      • --bind-to is package

      • --rank-by is fill

      • Result: --map-by package --bind-to package --rank-by fill

  • If only --map-by OBJ (where OBJ is something like core) is specified, then:

    • --map-by specified OBJ

    • --bind-to uses the same OBJ as --map-by

    • --rank-by defaults to fill

    • Result: --map-by OBJ --bind-to OBJ --rank-by fill

  • If only --bind-to OBJ (where OBJ is something like core) is specified, then:

    • --map-by is either core or package depending on the number of processes

    • --bind-to specified OBJ

    • --rank-by defaults to fill

    • Result: --map-by OBJ --bind-to OBJ --rank-by fill

  • If --map-by OBJ1 --bind-to OBJ2, then:

    • --map-by specified OBJ1

    • --bind-to specified OBJ2

    • --rank-by defaults to fill

    • Result: --map-by OBJ2 --bind-to OBJ2 --rank-by fill

Consider 2 identical hosts (hostA and hostB) with 2 packages (denoted by []) each with 8 cores (denoted by /../) and 2 hardware threads per core (denoted by a .).

Default of --map-by core --bind-to core --rank-by span when the number of processes is less than or equal to 2.

shell$ mpirun --np 2 --host hostA:4,hostB:2 ./a.out
R0  hostA  [BB/../../../../../../..][../../../../../../../..]
R1  hostA  [../BB/../../../../../..][../../../../../../../..]

Default of --map-by package --bind-to package --rank-by fill when the number of processes is greater than 2.

shell$ mpirun --np 4 --host hostA:4,hostB:2 ./a.out
R0  hostA  [BB/BB/BB/BB/BB/BB/BB/BB][../../../../../../../..]
R1  hostA  [BB/BB/BB/BB/BB/BB/BB/BB][../../../../../../../..]
R2  hostA  [../../../../../../../..][BB/BB/BB/BB/BB/BB/BB/BB]
R3  hostA  [../../../../../../../..][BB/BB/BB/BB/BB/BB/BB/BB]

If only --map-by OBJ is specified, then it implies --bind-to OBJ --rank-by fill. The example below results in --map-by hwthread --bind-to hwthread --rank-by fill

shell$ mpirun --np 4 --map-by hwthread --host hostA:4,hostB:2 ./a.out
R0  hostA  [B./../../../../../../..][../../../../../../../..]
R1  hostA  [.B/../../../../../../..][../../../../../../../..]
R0  hostA  [../B./../../../../../..][../../../../../../../..]
R1  hostA  [../.B/../../../../../..][../../../../../../../..]

If only --bind-to OBJ is specified, then --map-by is determined by the number of processes and --rank-by fill. The example below results in --map-by package --bind-to core --rank-by fill

shell$ mpirun --np 4 --bind-to core --host hostA:4,hostB:2 ./a.out
R0  hostA  [BB/../../../../../../..][../../../../../../../..]
R1  hostA  [../BB/../../../../../..][../../../../../../../..]
R2  hostA  [../../../../../../../..][BB/../../../../../../..]
R3  hostA  [../../../../../../../..][../BB/../../../../../..]

The mapping pattern might be better seen if we change the default --rank-by from fill to span. First, the processes are mapped by package iterating between the two marking a core at a time. Next, the processes are ranked in a spanning manner that load balances them across the object they were mapped against. Finally, the processes are bound to the core that they were mapped againast.

shell$ mpirun --np 4 --bind-to core --rank-by span --host hostA:4,hostB:2 ./a.out
R0  hostA  [BB/../../../../../../..][../../../../../../../..]
R1  hostA  [../../../../../../../..][BB/../../../../../../..]
R2  hostA  [../BB/../../../../../..][../../../../../../../..]
R3  hostA  [../../../../../../../..][../BB/../../../../../..]

17.1.2.6.6. Rankfiles

This is old, hard-coded content

Is this content still current / accurate? Should it be updated and retained, or removed?

Rankfiles are text files that specify detailed information about how individual processes should be mapped to nodes, and to which processor(s) they should be bound. Each line of a rankfile specifies the location of one process (for MPI jobs, the process’ “rank” refers to its rank in MPI_COMM_WORLD). The general form of each line in the rankfile is:

rank <N>=<hostname> slot=<slot list>

For example:

shell$ cat myrankfile
rank 0=aa slot=1:0-2
rank 1=bb slot=0:0,1
rank 2=cc slot=2-3
shell$ mpirun -H aa,bb,cc,dd --map-by rankfile:file=myrankfile ./a.out

Means that:

  • Rank 0 runs on node aa, bound to logical package 1, cores 0-2.

  • Rank 1 runs on node bb, bound to logical package 0, cores 0 and 1.

  • Rank 2 runs on node cc, bound to logical cores 2 and 3.

Note that only logicical processor locations are supported. By default, the values specifed are assumed to be cores. If you intend to specify specific hardware threads then you must add the :hwtcpus qualifier to the --map-by command line option (e.g., --map-by rankfile:file=myrankfile:hwtcpus).

If the binding specification overlaps between any two ranks then an error occurs. If you intend to allow processes to share the same logical processing unit then you must pass the --bind-to :overload-allowed command line option to tell the runtime to ignore this check.

The hostnames listed above are “absolute,” meaning that actual resolveable hostnames are specified. However, hostnames can also be specified as “relative,” meaning that they are specified in relation to an externally-specified list of hostnames (e.g., by mpirun’s --host argument, a hostfile, or a job scheduler).

The “relative” specification is of the form +n<X>, where X is an integer specifying the Xth hostname in the set of all available hostnames, indexed from 0. For example:

shell$ cat myrankfile
rank 0=+n0 slot=1:0-2
rank 1=+n1 slot=0:0,1
rank 2=+n2 slot=2-3
shell$ mpirun -H aa,bb,cc,dd --map-by rankfile:file=myrankfile ./a.out

All package/core slot locations are specified as logical indexes.

Note

The Open MPI v1.6 series used physical indexes. Starting in Open MPI v5.0 only logicial indexes are supported and the rmaps_rank_file_physical MCA parameter is no longer recognized.

You can use tools such as Hwloc’s lstopo(1) to find the logical indexes of package and cores.

17.1.2.6.7. Application Context or Executable Program?

This is old, hard-coded content

Is this content still current / accurate? Should it be updated and retained, or removed?

To distinguish the two different forms, mpirun looks on the command line for --app option. If it is specified, then the file named on the command line is assumed to be an application context. If it is not specified, then the file is assumed to be an executable program.

17.1.2.6.8. Locating Files

This is old, hard-coded content

Is this content still current / accurate? Should it be updated and retained, or removed?

If no relative or absolute path is specified for a file, Open MPI will first look for files by searching the directories specified by the --path option. If there is no --path option set or if the file is not found at the --path location, then Open MPI will search the user’s PATH environment variable as defined on the source node(s).

If a relative directory is specified, it must be relative to the initial working directory determined by the specific starter used. For example when using the ssh starter, the initial directory is $HOME by default. Other starters may set the initial directory to the current working directory from the invocation of mpirun.

17.1.2.6.9. Current Working Directory

This is old, hard-coded content

Is this content still current / accurate? Should it be updated and retained, or removed?

The --wdir mpirun option (and its synonym, --wd) allows the user to change to an arbitrary directory before the program is invoked. It can also be used in application context files to specify working directories on specific nodes and/or for specific applications.

If the --wdir option appears both in a context file and on the command line, the context file directory will override the command line value.

If the -wdir option is specified, Open MPI will attempt to change to the specified directory on all of the remote nodes. If this fails, mpirun will abort.

If the -wdir option is not specified, Open MPI will send the directory name where mpirun was invoked to each of the remote nodes. The remote nodes will try to change to that directory. If they are unable (e.g., if the directory does not exist on that node), then Open MPI will use the default directory determined by the starter.

All directory changing occurs before the user’s program is invoked; it does not wait until MPI_INIT(3) is called.

17.1.2.6.10. Standard I/O

This is old, hard-coded content

Is this content still current / accurate? Should it be updated and retained, or removed?

Open MPI directs UNIX standard input to /dev/null on all processes except the MPI_COMM_WORLD rank 0 process. The MPI_COMM_WORLD rank 0 process inherits standard input from mpirun.

Note

The node that invoked mpirun need not be the same as the node where the MPI_COMM_WORLD rank 0 process resides. Open MPI handles the redirection of mpirun’s standard input to the rank 0 process.

Open MPI directs UNIX standard output and error from remote nodes to the node that invoked mpirun and prints it on the standard output/error of mpirun. Local processes inherit the standard output/error of mpirun and transfer to it directly.

Thus it is possible to redirect standard I/O for Open MPI applications by using the typical shell redirection procedure on mpirun. For example:

shell$ mpirun -n 2 my_app < my_input > my_output

Note that in this example only the MPI_COMM_WORLD rank 0 process will receive the stream from my_input on stdin. The stdin on all the other nodes will be tied to /dev/null. However, the stdout from all nodes will be collected into the my_output file.

17.1.2.6.11. Signal Propagation

This is old, hard-coded content

Is this content still current / accurate? Should it be updated and retained, or removed?

When mpirun receives a SIGTERM and SIGINT, it will attempt to kill the entire job by sending all processes in the job a SIGTERM, waiting a small number of seconds, then sending all processes in the job a SIGKILL.

SIGUSR1 and SIGUSR2 signals received by mpirun are propagated to all processes in the job.

A SIGTSTOP signal to mpirun will cause a SIGSTOP signal to be sent to all of the programs started by mpirun and likewise a SIGCONT signal to mpirun will cause a SIGCONT sent.

Other signals are not currently propagated by mpirun.

17.1.2.6.12. Process Termination / Signal Handling

This is old, hard-coded content

Is this content still current / accurate? Should it be updated and retained, or removed?

During the run of an MPI application, if any process dies abnormally (either exiting before invoking MPI_FINALIZE(3), or dying as the result of a signal), mpirun will print out an error message and kill the rest of the MPI application.

User signal handlers should probably avoid trying to cleanup MPI state (Open MPI is currently not async-signal-safe; see MPI_INIT_THREAD(3) for details about MPI_THREAD_MULTIPLE and thread safety). For example, if a segmentation fault occurs in MPI_SEND(3) (perhaps because a bad buffer was passed in) and a user signal handler is invoked, if this user handler attempts to invoke MPI_FINALIZE(3), Bad Things could happen since Open MPI was already “in” MPI when the error occurred. Since mpirun will notice that the process died due to a signal, it is probably not necessary (and safest) for the user to only clean up non-MPI state.

17.1.2.6.13. Process Environment

This is old, hard-coded content

Is this content still current / accurate? Should it be updated and retained, or removed?

Processes in the MPI application inherit their environment from the PRRTE daemon upon the node on which they are running. The environment is typically inherited from the user’s shell. On remote nodes, the exact environment is determined by the boot MCA module used. The rsh launch module, for example, uses either rsh/ssh to launch the PRRTE daemon on remote nodes, and typically executes one or more of the user’s shell-setup files before launching the PRRTE daemon. When running dynamically linked applications which require the LD_LIBRARY_PATH environment variable to be set, care must be taken to ensure that it is correctly set when booting Open MPI.

See the Remote Execution section for more details.

17.1.2.6.14. Remote Execution

This is old, hard-coded content

Is this content still current / accurate? Should it be updated and retained, or removed?

Open MPI requires that the PATH environment variable be set to find executables on remote nodes (this is typically only necessary in rsh- or ssh-based environments — batch/scheduled environments typically copy the current environment to the execution of remote jobs, so if the current environment has PATH and/or LD_LIBRARY_PATH set properly, the remote nodes will also have it set properly). If Open MPI was compiled with shared library support, it may also be necessary to have the LD_LIBRARY_PATH environment variable set on remote nodes as well (especially to find the shared libraries required to run user MPI applications).

However, it is not always desirable or possible to edit shell startup files to set PATH and/or LD_LIBRARY_PATH. The --prefix option is provided for some simple configurations where this is not possible.

The --prefix option takes a single argument: the base directory on the remote node where Open MPI is installed. Open MPI will use this directory to set the remote PATH and LD_LIBRARY_PATH before executing any Open MPI or user applications. This allows running Open MPI jobs without having pre-configured the PATH and LD_LIBRARY_PATH on the remote nodes.

Open MPI adds the basename of the current node’s $bindir (the directory where Open MPI’s executables were installed) to the prefix and uses that to set the PATH on the remote node. Similarly, Open MPI adds the basename of the current node’s $libdir (the directory where Open MPI’s libraries were installed) to the prefix and uses that to set the LD_LIBRARY_PATH on the remote node. For example:

  • Local bindir: /local/node/directory/bin

  • Local libdir: /local/node/directory/lib64

If the following command line is used:

shell$ mpirun --prefix /remote/node/directory

Open MPI will add /remote/node/directory/bin to the PATH and /remote/node/directory/lib64 to the LD_LIBRARY_PATH on the remote node before attempting to execute anything.

The --prefix option is not sufficient if the installation paths on the remote node are different than the local node (e.g., if /lib is used on the local node, but /lib64 is used on the remote node), or if the installation paths are something other than a subdirectory under a common prefix.

Note that executing mpirun via an absolute pathname is equivalent to specifying --prefix without the last subdirectory in the absolute pathname to mpirun. For example:

shell$ /usr/local/bin/mpirun ...

is equivalent to

shell$ mpirun --prefix /usr/local

17.1.2.6.15. Exported Environment Variables

This is old, hard-coded content

Is this content still current / accurate? Should it be updated and retained, or removed?

All environment variables that are named in the form OMPI_* will automatically be exported to new processes on the local and remote nodes. Environmental parameters can also be set/forwarded to the new processes using the MCA parameter mca_base_env_list. The -x option to mpirun has been deprecated, but the syntax of the MCA param follows that prior example. While the syntax of the -x option and MCA param allows the definition of new variables, note that the parser for these options are currently not very sophisticated — it does not even understand quoted values. Users are advised to set variables in the environment and use the option to export them; not to define them.

17.1.2.6.16. Setting MCA Parameters

This is old, hard-coded content

Is this content still current / accurate? Should it be updated and retained, or removed?

The --mca switch allows the passing of parameters to various MCA (Modular Component Architecture) modules. MCA modules have direct impact on MPI programs because they allow tunable parameters to be set at run time (such as which BTL communication device driver to use, what parameters to pass to that BTL, etc.).

The --mca switch takes two arguments: <key> and <value>. The <key> argument generally specifies which MCA module will receive the value. For example, the <key> btl is used to select which BTL to be used for transporting MPI messages. The <value> argument is the value that is passed. For example:

shell$ mpirun --mca btl tcp,self -n 1 my_mpi_app

This tells Open MPI to use the tcp and self BTLs, and to run a single copy of my_mpi_app an allocated node.

shell$ mpirun --mca btl self -n 1 my_mpi_app

Tells Open MPI to use the self BTL, and to run a single copy of my_mpi_app an allocated node.

The --mca switch can be used multiple times to specify different <key> and/or <value> arguments. If the same <key> is specified more than once, the <value>``s are concatenated with a comma (,``) separating them.

Note that the --mca switch is simply a shortcut for setting environment variables. The same effect may be accomplished by setting corresponding environment variables before running mpirun. The form of the environment variables that Open MPI sets is:

OMPI_MCA_<key>=<value>

Thus, the --mca switch overrides any previously set environment variables. The --mca settings similarly override MCA parameters set in the $OPAL_PREFIX/etc/openmpi-mca-params.conf or $HOME/.openmpi/mca-params.conf file.

Unknown <key> arguments are still set as environment variable — they are not checked (by mpirun) for correctness. Illegal or incorrect <value> arguments may or may not be reported — it depends on the specific MCA module.

To find the available component types under the MCA architecture, or to find the available parameters for a specific component, use the ompi_info command. See the ompi_info(1) man page for detailed information on this command.

17.1.2.6.17. Setting MCA parameters and environment variables from file

This is old, hard-coded content

Is this content still current / accurate? Should it be updated and retained, or removed?

The --tune command line option and its synonym --mca mca_base_envar_file_prefix allows a user to set MCA parameters and environment variables with the syntax described below. This option requires a single file or list of files separated by “,” to follow.

A valid line in the file may contain zero or more -x or --mca. The following patterns are supported:

  • --mca var val

  • --mca var "val"

  • -x var=val

  • -x var

If any argument is duplicated in the file, the last value read will be used.

MCA parameters and environment specified on the command line have higher precedence than variables specified in the file.

17.1.2.6.18. Running as root

This is old, hard-coded content

Is this content still current / accurate? Should it be updated and retained, or removed?

Warning

The Open MPI team strongly advises against executing mpirun as the root user. MPI applications should be run as regular (non-root) users.

mpirun will refuse to run as root by default.

To override this default, you can add the --allow-run-as-root option to the mpirun command line, or you can set the environmental parameters OMPI_ALLOW_RUN_AS_ROOT=1 and OMPI_ALLOW_RUN_AS_ROOT_CONFIRM=1. Note that it takes setting two environment variables to effect the same behavior as --allow-run-as-root in order to stress the Open MPI team’s strong advice against running as the root user.

After extended discussions with communities who use containers (where running as the root user is the default), there was a persistent desire to be able to enable root execution of mpirun via an environmental control (vs. the existing --allow-run-as-root command line parameter). The compromise of using two environment variables was reached: it allows root execution via an environmental control, but it conveys the Open MPI team’s strong recommendation against this behavior.

17.1.2.6.19. Exit status

This is old, hard-coded content

Is this content still current / accurate? Should it be updated and retained, or removed?

There is no standard definition for what mpirun should return as an exit status. After considerable discussion, we settled on the following method for assigning the mpirun exit status (note: in the following description, the “primary” job is the initial application started by mpirun — all jobs that are spawned by that job are designated “secondary” jobs):

  • If all processes in the primary job normally terminate with exit status 0, mpirun returns 0.

  • If one or more processes in the primary job normally terminate with non-zero exit status, mpirun returns the exit status of the process with the lowest MPI_COMM_WORLD rank to have a non-zero status.

  • If all processes in the primary job normally terminate with exit status 0, and one or more processes in a secondary job normally terminate with non-zero exit status, mpirun:

    1. Returns the exit status of the process with the lowest MPI_COMM_WORLD rank in the lowest jobid to have a non-zero status, and

    2. Outputs a message summarizing the exit status of the primary and all secondary jobs.

  • If the command line option --report-child-jobs-separately is set, we will return only the exit status of the primary job. Any non-zero exit status in secondary jobs will be reported solely in a summary print statement.

By default, the job will abort when any process terminates with non-zero status. The MCA parameter --PRRTEmca state_base_error_non_zero_exit can be set to “false” (or “0”) to cause Open MPI to not abort a job if one or more processes return a non-zero status. In that situation the Open MPI records and notes that processes exited with non-zero termination status to report the appropriate exit status of mpirun (per bullet points above).

17.1.2.7. EXAMPLES

This is old, hard-coded content

Is this content still current / accurate? Should it be updated and retained, or removed?

Be sure also to see the examples throughout the sections above.

shell$ mpirun -n 4 --mca btl tcp,sm,self prog1

Run 4 copies of prog1 using the tcp, sm (shared memory), and self (process loopback) BTL’s for the transport of MPI messages.

17.1.2.8. RETURN VALUE

This is old, hard-coded content

Is this content still current / accurate? Should it be updated and retained, or removed?

mpirun returns 0 if all processes started by mpirun exit after calling MPI_FINALIZE(3). A non-zero value is returned if an internal error occurred in mpirun, or one or more processes exited before calling MPI_FINALIZE(3). If an internal error occurred in mpirun, the corresponding error code is returned. In the event that one or more processes exit before calling MPI_FINALIZE(3), the return value of the MPI_COMM_WORLD rank of the process that mpirun first notices died before calling MPI_FINALIZE(3) will be returned. Note that, in general, this will be the first process that died but is not guaranteed to be so.

If the --timeout command line option is used and the timeout expires before the job completes (thereby forcing mpirun to kill the job) mpirun will return an exit status equivalent to the value of ETIMEDOUT (which is typically 110 on Linux and OS X systems).