我必须在C编译器中使用MPI库来执行以下代码。我已经安装了该库,但是我不知道如何导入它才能使用它。我正在使用Cygwin64。谁能帮忙吗?
此代码仅是测试。
#include <mpi.h>
#include <stdio.h>
int main(int argc, char** argv) {
// Initialize the MPI environment
MPI_Init(NULL, NULL);
// Get the number of processes
int world_size;
MPI_Comm_size(MPI_COMM_WORLD, &world_size);
// Get the rank of the process
int world_rank;
MPI_Comm_rank(MPI_COMM_WORLD, &world_rank);
// Get the name of the processor
char processor_name[MPI_MAX_PROCESSOR_NAME];
int name_len;
MPI_Get_processor_name(processor_name, &name_len);
// Print off a hello world message
printf("Hello world from processor %s, rank %d out of %d processors\n",
processor_name, world_rank, world_size);
// Finalize the MPI environment.
MPI_Finalize();
}
答案 0 :(得分:0)
MPICH - FAQ写道:
问:为什么我不能再在Windows上构建MPICH? 不幸的是,由于缺乏开发人员资源,Windows(包括Cygwin)不再支持MPICH。 Windows上支持的MPICH的最新版本是MPICH2 1.4.1p1。这个版本只剩下很少的支持,但是您可以在下载页面上找到它:
http://www.mpich.org/downloads/
或者,Microsoft维护MPICH的派生产品,该产品应提供所需的功能。您还可以在上面的下载页面上找到该链接。该版本很有可能在您的系统上运行,并且将来会继续更新。我们建议所有Windows用户迁移到使用MS-MPI。
由于www.pich.org上没有“ MPICH2 1.4.1p1”的引用,因此建议您使用MS-MPI。