root/orte/test/mpi/sio.c

/* [<][>][^][v][top][bottom][index][help] */

DEFINITIONS

This source file includes following definitions.
  1. main

   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 }

/* [<][>][^][v][top][bottom][index][help] */