#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. A sample file is: {{{ sample!! }}} == 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 -type 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.