2
0
Fork 0
mirror of https://github.com/MartinThoma/LaTeX-examples.git synced 2025-04-26 06:48:04 +02:00
LaTeX-examples/documents/Programmierparadigmen/scripts/mpi/comm-rank-example.c

13 lines
184 B
C
Raw Normal View History

2014-03-09 20:34:02 +01:00
#include "mpi.h"
2014-03-09 21:01:47 +01:00
int rank;
MPI_Comm comm;
2014-03-09 20:34:02 +01:00
2014-03-09 21:01:47 +01:00
...
MPI_Comm_rank(comm, &rank);
if (rank==0) {
... Code fur Prozess 0 ...
}
else {
... Code fur die anderen Prozesse ...
}