0

我只是想知道如何将以下openMP程序转换为MPI程序

#include <omp.h>  
#define CHUNKSIZE 100  
#define N     1000  

int main (int argc, char *argv[])    
{  

int i, chunk;  
float a[N], b[N], c[N];  

/* Some initializations */  
for (i=0; i < N; i++)  
  a[i] = b[i] = i * 1.0;  
chunk = CHUNKSIZE;  

#pragma omp parallel shared(a,b,c,chunk) private(i)  
  {  

  #pragma omp for schedule(dynamic,chunk) nowait  
  for (i=0; i < N; i++)  
    c[i] = a[i] + b[i];  

  }  /* end of parallel section */  

return 0;  
}  

我有一个类似的程序,我想在集群上运行,并且该程序正在使用 OpenMP。

谢谢!


更新:

在下面的玩具代码中,我想限制函数 f() 中的并行部分:

#include "mpi.h"  
#include <stdio.h>  
#include <string.h>  

void f();

int main(int argc, char **argv)  
{  
printf("%s\n", "Start running!");  
f();  
printf("%s\n", "End running!");  
return 0;  
}  


void f()  
{  
char idstr[32]; char buff[128];  
int numprocs; int myid; int i;  
MPI_Status stat;  

printf("Entering function f().\n");

MPI_Init(NULL, NULL);  
MPI_Comm_size(MPI_COMM_WORLD,&numprocs);  
MPI_Comm_rank(MPI_COMM_WORLD,&myid);  

if(myid == 0)  
{  
  printf("WE have %d processors\n", numprocs);  
  for(i=1;i<numprocs;i++)  
  {  
    sprintf(buff, "Hello %d", i);  
    MPI_Send(buff, 128, MPI_CHAR, i, 0, MPI_COMM_WORLD); }  
    for(i=1;i<numprocs;i++)  
    {  
      MPI_Recv(buff, 128, MPI_CHAR, i, 0, MPI_COMM_WORLD, &stat);  
      printf("%s\n", buff);  
    }  
}  
else  
{  
  MPI_Recv(buff, 128, MPI_CHAR, 0, 0, MPI_COMM_WORLD, &stat);  
  sprintf(idstr, " Processor %d ", myid);  
  strcat(buff, idstr);  
  strcat(buff, "reporting for duty\n");  
  MPI_Send(buff, 128, MPI_CHAR, 0, 0, MPI_COMM_WORLD);  
}  
MPI_Finalize();  

printf("Leaving function f().\n");  
}  

但是,预计不会出现运行输出。并行部分之前和之后的 printf 部分已被每个进程执行,而不仅仅是主进程:

$ mpirun -np 3 ex2  
Start running!  
Entering function f().  
Start running!  
Entering function f().  
Start running!  
Entering function f().  
WE have 3 processors  
Hello 1 Processor 1 reporting for duty  

Hello 2 Processor 2 reporting for duty  

Leaving function f().  
End running!  
Leaving function f().  
End running!  
Leaving function f().  
End running!  

所以在我看来,并行部分并不局限于 MPI_Init() 和 MPI_Finalize()。

4

3 回答 3

4

要回答您的更新:

使用 MPI 时,每个处理器运行相同的程序。为了限制并行部分,您需要使用如下语句:

if (rank == 0) { ...serial work... }

这将确保只有一个处理器在此块内完成工作。

您可以在您发布的示例程序中看到它是如何工作的,里面f()if(myid == 0)语句。然后,这个语句块将仅由进程 0 执行,所有其他进程直接进入else并接收它们的消息,然后再将它们发送回去。

关于MPI_InitMPI_Finalize--MPI_Init初始化 MPI 环境。调用此方法后,您可以使用其他 MPI 方法,例如SendRecv。使用完 MPI 方法后,MPI_Finalize将释放资源等,但程序将继续运行。例如,您可以MPI_Finalize在执行一些需要很长时间的 I/O 之前调用。这些方法不限制代码的并行部分,只是在您可以使用其他 MPI 调用的地方。

希望这可以帮助。

于 2011-02-24T13:20:58.320 回答
1

You just need to assign a portion of the arrays (a, b, c) to each process. Something like this:

#include <mpi.h>

#define N 1000

int main(int argc, char *argv[])
{
  int i, myrank, myfirstindex, mylastindex, procnum;
  float a[N], b[N], c[N];

  MPI_Init(&argc, &argv);
  MPI_Comm_size(MPI_COMM_WORLD, &procnum);
  MPI_Comm_rank(comm, &myrank);


  /* Dynamic assignment of chunks,
   * depending on number of processes
   */
  if (myrank == 0)
    myfirstindex = 0;
  else if (myrank < N % procnum)
    myfirstindex = myrank * (N / procnum + 1);
  else
    myfirstindex = N % procnum + myrank * (N / procnum);

  if (myrank == procnum - 1)
    mylastindex = N - 1;
  else if (myrank < N % procnum)
    mylastindex = myfirstindex + N / procnum + 1;
  else
    mylastindex = myfirstindex + N / procnum;

  // Initializations
  for(i = myfirstindex; i < mylastindex; i++)  
    a[i] = b[i] = i * 1.0; 

  // Computations
  for(i = myfirstindex; i < mylastindex; i++)
    c[i] = a[i] + b[i];

  MPI_Finalize();
}
于 2010-01-28T06:55:51.443 回答
1

您可以尝试使用专有的 Intel Cluster OpenMP。它将在集群上运行 OpenMP 程序。是的,它使用“软件分布式共享内存” http://en.wikipedia.org/wiki/Distributed_shared_memory在分布式内存集群上模拟共享内存计算机

它易于使用并包含在英特尔 C++ 编译器 (9.1+) 中。但它仅适用于 64 位处理器。

于 2010-02-01T17:53:52.117 回答