用户注册



邮箱:

密码:

用户登录


邮箱:

密码:
记住登录一个月忘记密码?

发表随想


还能输入:200字

芙蓉妹妹    -  云代码空间

——

point-to-point communication(点对点通信)

2019-04-19|651阅||

摘要:MPI_Send(str,strlen(str)+1,MPI_CHAR,1,99,comm); //发送的地址,消息长度,消息数据类型,接收进程号,消息标志,通信域 MPI_Recv(str,100,MPI_CHAR,0,99,comm,&status

#include<stdio.h>
#include"mpi.h"
int main(int argc, char **argv){
    MPI_Comm comm = MPI_COMM_WORLD;
    int size ,rank;
    MPI_Status status;
    char str[100];
    MPI_Init(&argc,&argv);
    MPI_Comm_size(comm,&size);
    MPI_Comm_rank(comm,&rank);
    if(rank == 0){
        strcpy(str,"hello world");
        printf("Process 0 send [%s] to process 1.\n",str);
        MPI_Send(str,strlen(str)+1,MPI_CHAR,1,99,comm);
        //发送的地址,消息长度,消息数据类型,接收进程号,消息标志,通信域
    }
    else if (rank == 1){
        MPI_Recv(str,100,MPI_CHAR,0,99,comm,&status);
        //存储消息的地址,接收的数量,消息数据类型,发送进程号,消息标志,通信域,接收状态
        printf("Process 1 received message [%s] from Process 0.\n",str);
    }
    MPI_Finalize();
    return 0;
}

顶 2踩 2收藏
文章评论
    发表评论

    个人资料

    • 昵称: 芙蓉妹妹
    • 等级: 资深程序员
    • 积分: 1710
    • 代码: 104 个
    • 文章: 25 篇
    • 随想: 0 条
    • 访问: 32 次
    • 关注

    标签

    最新提问

      站长推荐