1 /* -*- C -*-
2 *
3 * $HEADER$
4 *
5 * The most basic of MPI applications
6 */
7
8 #include <stdio.h>
9 #include "mpi.h"
10
11 int main(int argc, char* argv[])
12 {
13 MPI_Init(&argc, &argv);
14 MPI_Barrier(MPI_COMM_WORLD);
15 MPI_Finalize();
16 return 0;
17 }