446838f5db
This commit was SVN r658.
22 строки
235 B
C
22 строки
235 B
C
/* -*- C -*-
|
|
*
|
|
* $HEADER$
|
|
*
|
|
* The most basic of MPI applications
|
|
*/
|
|
|
|
#include <mpi.h>
|
|
#include <stdio.h>
|
|
|
|
int
|
|
main(int argc, char* argv[])
|
|
{
|
|
MPI_Init(&argc, &argv);
|
|
|
|
printf("Hello, World\n");
|
|
|
|
MPI_Finalize();
|
|
|
|
return 0;
|
|
}
|