mirror of
https://github.com/MartinThoma/LaTeX-examples.git
synced 2025-04-25 14:28:05 +02:00
10 lines
No EOL
215 B
C
10 lines
No EOL
215 B
C
#include "mpi.h"
|
|
|
|
int myid;
|
|
int recvbuf[DATASIZE], sendbuf[DATA_SIZE];
|
|
|
|
...
|
|
/* Minimum bilden */
|
|
MPI_Reduce(sendbuf, recvbuf, DATA_SIZE, MPI_INT, MPI_MIN,
|
|
0, MPI_COMM_WORLD);
|
|
... |