mirror of
https://github.com/MartinThoma/LaTeX-examples.git
synced 2025-04-26 06:48:04 +02:00
10 lines
243 B
C
10 lines
243 B
C
|
#include "mpi.h"
|
||
|
|
||
|
int sendcount, recvcount;
|
||
|
void *sendbuf, *recvbuf;
|
||
|
MPI_Datatype sendtype, recvtype;
|
||
|
MPI_Comm comm;
|
||
|
...
|
||
|
MPI_Alltoall(sendbuf, sendcount, sendtype,
|
||
|
recvbuf, recvcount, recvtype, comm);
|
||
|
...
|