2
0
Fork 0
mirror of https://github.com/MartinThoma/LaTeX-examples.git synced 2025-04-25 14:28:05 +02:00
LaTeX-examples/documents/Programmierparadigmen/scripts/mpi/hello-world.c
Martin Thoma 3cec128f33 MPI
2014-03-09 19:42:44 +01:00

13 lines
No EOL
328 B
C

#include <stdio.h>
#include <mpi.h>
int main (int argc, char** args) {
int size;
int myrank;
MPI_Init(&argc, &args);
MPI_Comm_size(MPI_COMM_WORLD, &size);
MPI_Comm_rank(MPI_COMM_WORLD, &myrank);
printf("Hello world, I have rank %d out of %d.\n",
myrank, size);
MPI_Finalize();
return 0;
}