mpi编译警告隐式声明

时间:2013-11-06 23:06:35

标签: c compiler-construction mpi linker-errors

今天我在mi mac 10.9上使用home-brew mpicc安装mpi与simlpe hello world程序一起使用,但如果我尝试这样的事情

#include <mpi.h>
#include <string.h>
#include <stdio.h>
#define max 1000

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


    int myrank,nProc,tag,j;
    char buff [max];
    MPI_Status status;
    tag=0;
    MPI_Init(&argv,&argc);
    MPI_Comm_Rank(MPI_COMM_WORLD,&myrank);
    MPI_Comm_Size(MPI_COMM_WORLD,&nProc);

    if(myrank==0){
    for(j =1 ; j<nProc;j++){
    MPI_Recv(&buff,max,MPI_CHAR,j,tag,MPI_COMM_WORLD,&status);
    printf("Il processo %d dice di chiamarsi %s\n",j,buff);
    }

                }
                else{
                switch (myrank){
                case 1 :
                 MPI_Send("Franco",max,MPI_CHAR,j,tag,MPI_COMM_WORLD);
                 break;
                 case 2 :
                 MPI_Send("Mena",max,MPI_CHAR,j,tag,MPI_COMM_WORLD);
                 break;
                 case 3 :
                 MPI_Send("Nino",max,MPI_CHAR,j,tag,MPI_COMM_WORLD);
                 break;
                                }
                    }
    printf("Ciao da %d \n",myrank);
    MPI_Finalize();
    return(0);
                               }

我尝试在下一行编译它:

mpicc -o filename filename.c

它给了我这个警告而没有建成。

nucciampi.c:15:3: warning: implicit declaration of function 'MPI_Comm_Rank' is
      invalid in C99 [-Wimplicit-function-declaration]
                MPI_Comm_Rank(MPI_COMM_WORLD,&myrank);
                ^
nucciampi.c:16:3: warning: implicit declaration of function 'MPI_Comm_Size' is
      invalid in C99 [-Wimplicit-function-declaration]
                MPI_Comm_Size(MPI_COMM_WORLD,&nProc);
                ^
2 warnings generated.
Undefined symbols for architecture x86_64:
  "_MPI_Comm_Rank", referenced from:
      _main in nucciampi-zsehoq.o
  "_MPI_Comm_Size", referenced from:
      _main in nucciampi-zsehoq.o
ld: symbol(s) not found for architecture x86_64
clang: error: linker command failed with exit code 1 (use -v to see invocation)

请帮我解决这个问题!!!

2 个答案:

答案 0 :(得分:3)

MPI_Comm_Rank - &gt; MPI_Comm_rank

MPI_Comm_Size - &gt; MPI_Comm_size

答案 1 :(得分:2)

MPI中的所有例程和常量都有明确定义的命名约定,并在MPI规范的第2.2节中描述:

  

在C中,与特定类型的MPI对象关联的所有例程应为MPI_Class_action_subset形式,如果不存在子集,则应为MPI_Class_action形式。在Fortran中,与特定类型的MPI对象关联的所有例程应为MPI_CLASS_ACTION_SUBSET形式,如果不存在子集,则应为MPI_CLASS_ACTION形式。对于C和Fortran,我们使用C ++术语来定义Class。在C ++中,例程是Class上的一个方法,名为MPI::Class::Action_subset。如果例程与某个类相关联,但作为对象方法没有意义,则它是该类的静态成员函数。

请注意,与Fortran不同,C中的符号名称区分大小写。