root/contrib/scaling/mpi_no_op.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     MPI_Init(&argc, &argv);
  14 
  15     MPI_Finalize();
  16     return 0;
  17 }

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