int MPI_Barrier(MPI_Comm
comm) 等待直到所有的进程都执行到这一例程才继续执行下一条语句。 int MPI_Bcast(void * buffer, int count, MPI_Datatype datatype, int root, MPI_Comm comm) 将root进程的消息广播到所有其它的进程 int MPI_Bsend(void * buf, int count, MPI_Datatype datatype, int dest, int tag, MPI_Comm comm) 使用用户声明的缓冲区进行发送 int MPI_Bsend_init(void * buf, int count, MPI_Datatype datatype, int dest, int tag, MPI_Comm comm, MPI_Request * request) 建立发送缓冲句柄 int MPI_Buffer_attach(void * buffer, int size) 将一个用户指定的缓冲区用于消息发送的目的 int MPI_Buffer_detach(void * buffer, int * size) 移走一个指定的发送缓冲区 |
||