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 int i;
14
15 MPI_Init(&argc, &argv);
16
17 for (i=0; i < 100; i++) {
18 printf("some output from mpitest to test the xml problem: %d\n", i);
19 }
20
21 MPI_Finalize();
22 return 0;
23 }