mirror of
https://github.com/MartinThoma/LaTeX-examples.git
synced 2025-04-25 14:28:05 +02:00
13 lines
No EOL
224 B
C
13 lines
No EOL
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 ...
|
|
} |