1
1
openmpi/contrib/scaling/mpi_no_op.c
Ralph Castain 3068438022 Add scaling tests and script
This commit was SVN r26509.
2012-05-29 15:21:44 +00:00

18 строки
211 B
C

/* -*- C -*-
*
* $HEADER$
*
* The most basic of MPI applications
*/
#include <stdio.h>
#include "mpi.h"
int main(int argc, char* argv[])
{
MPI_Init(&argc, &argv);
MPI_Finalize();
return 0;
}