2
0
Fork 0
mirror of https://github.com/MartinThoma/LaTeX-examples.git synced 2025-04-26 06:48:04 +02:00

Datentypen zu MPI hinzugefuegt

This commit is contained in:
Martin Thoma 2014-04-07 10:33:49 +02:00
parent 28ad9f1197
commit 9c2b597bc3
4 changed files with 10 additions and 5 deletions

View file

@ -5,6 +5,6 @@ int recvbuf[DATASIZE], sendbuf[DATA_SIZE];
...
/* Minimum bilden */
MPI_Reduce(sendbuf, recvbuf, DATA_SIZE, MPI_INT, MPI_MIN,
0, MPI_COMM_WORLD);
MPI_Reduce(sendbuf, recvbuf, DATA_SIZE, MPI_INT,
MPI_MIN, 0, MPI_COMM_WORLD);
...