2
0
Fork 0
mirror of https://github.com/MartinThoma/LaTeX-examples.git synced 2025-04-25 22:38:04 +02:00
LaTeX-examples/documents/Programmierparadigmen/scripts/mpi/mpi-reduce-example.c

10 lines
187 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 myid;
int recvbuf[DATASIZE], sendbuf[DATA_SIZE];
2014-03-09 20:34:02 +01:00
2014-03-09 21:01:47 +01:00
...
/* Minimum bilden */
MPI_Reduce(sendbuf, recvbuf, DATA_SIZE, MPI_INT, MPI_MIN,
0, MPI_COMM_WORLD);
...