1
1
openmpi/test/simple/sio.c
Ralph Castain 7e2874a83d
Save the old ORTE simple tests
Useful when debugging RTE-related issues

Not for inclusion in the tarball - just added to git repo for use by
developers.

Signed-off-by: Ralph Castain <rhc@pmix.org>
2020-02-21 06:15:06 -08:00

24 строки
337 B
C

/* -*- C -*-
*
* $HEADER$
*
* The most basic of MPI applications
*/
#include <stdio.h>
#include "mpi.h"
int main(int argc, char* argv[])
{
int i;
MPI_Init(&argc, &argv);
for (i=0; i < 100; i++) {
printf("some output from mpitest to test the xml problem: %d\n", i);
}
MPI_Finalize();
return 0;
}