#pragma section-numbers 2 = MPI-Start as EMI-ES ParallelEnvironment backend = <> == UNICORE == The UNICORE EMI-ES !ParallelEnvironment is a complete implementation of the specification. The configuration is done via xml files where the mapping from the job specification to the final executable is specified. For each mpi-flavor that needs to be supported by mpi-start an entry in the idb must be included. For example for OpenMPI: {{{#!highlight xml OpenMPI 1.5.4 Runs OpenMPI job using mpi-start to start the job /usr/bin/mpi-start #EXECUTABLE -t openmpi #ARGS #USERCOMMAND #USERARGS Output -o string Write the job output to a FILE instead of to the standard output stream PostHook -post string Use the file as post hook PreHook -pre string Use the file as pre hook Error -e string Write the job error to a FILE instead of to the standard error stream Verbose -v Enable verbose mode PerNode -pnode Start one process per available node PerSocket -psocket Start one process per available socket PerCore -pcore Start one process per available core }}} == ARC == ARC supports MPI jobs through the !RunTimeEnvironments. There are two options for integrating them with mpi-start 1. Explicit mpi-start usage by users. 1. mpi-start as backend of parallel jobs === Explicit mpi-start === In this use case, the only requirements is that mpi-start is available at the nodes that will execute the job. There is no need for a RuntimeEnvironment and the user must set as executable for the jobs `mpi-start`. A minimal job description is shown below: {{{#!highlight xml MPI Test job A test job showing the features of EMI-ES single /usr/bin/mpi-start -t openmpi -pre pre.sh cpi std.err std.out 2     2     true pre.shpre.sh cpi.ccpi.c }}} Note that the `-t openmpi` option is passed explicitly to indicate to mpi-start which implementation to use. === mpi-start backend === In this case, a !RuntimeEnvironment prepares the execution with mpi-start, hiding from the user the details of the implementation. Any additional arguments to mpi-start must be passed as environment variables. A sample runtime environment for running !OpenMPI applications would be: {{{#!highlight sh #!/bin/sh export I2G_MPI_TYPE=openmpi case "$1" in 0) joboption_args="mpi-start -- $joboption_args" ;; 1) ;; 2) ;; *) return 1 ;; esac }}} The job description would look as follows: {{{#!highlight xml test job A test job showing the features of EMI-ES single test cpi std.err std.out I2G_MPI_PRE_RUN_HOOKpre.sh 2 2 true OPENMPI pre.sh pre.sh cpi.c cpi.c cpi cpi }}} == CREAM == Cream does not support the !ParallelEnvironment. Jobs may be sumbmitted using `/usr/bin/mpi-start` as executable. See the previous ARC example for details.