File: PE_RTE.md

package info (click to toggle)
mpich 4.3.2-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 101,184 kB
  • sloc: ansic: 1,040,629; cpp: 82,270; javascript: 40,763; perl: 27,933; python: 16,041; sh: 14,676; xml: 14,418; f90: 12,916; makefile: 9,270; fortran: 8,046; java: 4,635; asm: 324; ruby: 103; awk: 27; lisp: 19; php: 8; sed: 4
file content (43 lines) | stat: -rw-r--r-- 1,452 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# Parallel Environment Runtime Edition (PE RTE) 
Below are instructions for configuring, building, and testing.

## MPICH Test Suite Instructions

From a mpich testsuite build directory, such as
*/home/johndoe/testsuite*, invoke the configure script in the *test/mpi*
directory of the mpich source.

```
/home/johndoe/mpich/test/mpi/configure \
    --srcdir=/home/johndoe/mpich/test/mpi \
    --with-mpi=/opt/ibmhpc/pecurrent/base
```

The `--srcdir` configure option specifies the location of the testsuite
source and the `--with-mpi` configure option specifies which mpi
installation to use when compiling the tests.

Once configured, the tests can be compiled and executed using the `make
testing` makefile rule. Specific make variables need to be specified
depending on how the jobs are to be launched.

### POE

The host list file must be specified with the environment variable
`MP_HOSTFILE` before testing starts. For more information on the host
list file see section **"Set the MP_HOSTFILE environment variable"** in
the [Parallel Environment Runtime
Edition](http://publib.boulder.ibm.com/infocenter/clresctr/vxrx/index.jsp?topic=%2Fcom.ibm.cluster.pe.v1r3.pe100.doc%2Fam102_shnf.htm)
online documentation.

```
export MP_HOSTFILE=/home/johndoe/host.list
```

To begin testing, change to the directory where the configure command
was run (*/home/johndoe/testsuite* in this example) and invoke the
following command:

```
make testing
```