mirror of
https://github.com/MartinThoma/LaTeX-examples.git
synced 2025-04-25 22:38:04 +02:00
13 lines
224 B
C
13 lines
224 B
C
|
#include "mpi.h"
|
||
|
|
||
|
int rank;
|
||
|
MPI_Comm comm;
|
||
|
|
||
|
...
|
||
|
MPI_Comm_rank(comm, &rank);
|
||
|
if (rank==0) {
|
||
|
... Code fur Prozess 0 ...
|
||
|
}
|
||
|
else {
|
||
|
... Code fur die anderen Prozesse ...
|
||
|
}
|