我要加入 登录
声振论坛 返回首页

lily_cuili的个人空间 http://home.vibunion.com/?64418 [收藏] [复制] [分享] [RSS]

日志

vc.net平台下的mpi程序例子

已有 254 次阅读2007-6-17 19:25

#include <mpi.h>
#include <stdlib.h>
#include <stdio.h>
#include <conio.h>

#pragma comment (lib, "mpichd.lib") 

int main(int argc, char* argv[])
{
int myid,numprocs;
int namelen;
char processor_name[MPI_MAX_PROCESSOR_NAME];

MPI_Init(&argc,&argv);

MPI_Comm_rank(MPI_COMM_WORLD,&myid);
MPI_Comm_size(MPI_COMM_WORLD,&numprocs);
MPI_Get_processor_name(processor_name,&namelen);

fprintf(stderr,
"Hello World!Process %d of %d on %s\n",
myid,numprocs,processor_name);

MPI_Finalize();
    
    if (myid == 0)
    {
        printf("\nPress a key and exit.\n");

        getch();
    }
return 0;
}

评论 (0 个评论)

facelist doodle 涂鸦板

您需要登录后才可以评论 登录 | 我要加入

QQ|小黑屋|Archiver|手机版|联系我们|声振论坛

GMT+8, 2025-1-11 21:55 , Processed in 0.085618 second(s), 16 queries , Gzip On.

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

返回顶部