3

因此,我尝试使用 NAS 基准对特定 MPI 实现进行性能测试。所以我去编译fortran代码,我遇到了障碍。每当我输入此命令进行编译时:

gfortran -O0 -Wall -I/home/stephen/trunk/include -I.  -c ./TestData/common/timers.f

我得到这些编译器错误:

Warning: mpif.h:2: Illegal pdreprocessor directive
Warning: mpif.h:3: Illegal preprocessor directive
Warning: mpif.h:4: Illegal preprocessor directive
Warning: mpif.h:5: Illegal preprocessor directive
Warning: mpif.h:6: Illegal preprocessor directive
Warning: mpif.h:7: Illegal preprocessor directive
Warning: mpif.h:8: Illegal preprocessor directive
Warning: mpif.h:9: Illegal preprocessor directive
Warning: mpif.h:12: Illegal preprocessor directive
Warning: mpif.h:13: Illegal preprocessor directive
Warning: mpif.h:14: Illegal preprocessor directive
Warning: mpif.h:2: Illegal preprocessor directive
Warning: mpif.h:3: Illegal preprocessor directive
Warning: mpif.h:4: Illegal preprocessor directive
Warning: mpif.h:5: Illegal preprocessor directive
Warning: mpif.h:6: Illegal preprocessor directive
Warning: mpif.h:7: Illegal preprocessor directive
Warning: mpif.h:8: Illegal preprocessor directive
Warning: mpif.h:9: Illegal preprocessor directive
Warning: mpif.h:12: Illegal preprocessor directive
Warning: mpif.h:13: Illegal preprocessor directive
Warning: mpif.h:14: Illegal preprocessor directive
mpif.h:1.1:
    Included at ./TestData/common/timers.f:30:

/*
 1
Error: Non-numeric character in statement label at (1)
mpif.h:1.2:
    Included at ./TestData/common/timers.f:30:

/*
  1
Error: Invalid character in name at (1)
mpif.h:1.1:
    Included at ./TestData/common/timers.f:50:

/*
 1
Error: Non-numeric character in statement label at (1)
mpif.h:1.2:
    Included at ./TestData/common/timers.f:50:

/*
  1
Error: Invalid character in name at (1)
make: *** [cg] Error 1

这是错误的 timers.f 代码(第 30 和 50 行是包含行):

c---------------------------------------------------------------------                                                                                                                                         
c---------------------------------------------------------------------                                                                                                                                         
      subroutine timer_start(n)
c---------------------------------------------------------------------                                                                                                                                         
c---------------------------------------------------------------------                                                                                                                                         
      implicit none
      integer n
      include 'mpif.h'
      double precision start(64), elapsed(64)
      common /tt/ start, elapsed
      start(n) = MPI_Wtime()
      return
      end
c---------------------------------------------------------------------                                                                                                                                         
c---------------------------------------------------------------------                                                                                                                                         
      subroutine timer_stop(n)
c---------------------------------------------------------------------                                                                                                                                         
c---------------------------------------------------------------------                                                                                                                                         
      implicit none
      integer n
      include 'mpif.h'
      double precision start(64), elapsed(64)
      common /tt/ start, elapsed
      double precision t, now
      now = MPI_Wtime()
      t = now - start(n)
      elapsed(n) = elapsed(n) + t
      return
      end

有任何想法吗?我已经为 gfortran 尝试了各种命令行参数来尝试让它进行不同类型的预处理(我承认其中大部分都是盲目地完成的)。对我来说奇怪的是,编译器在我的代码中没有的非数字字符 /* 上出错了,所以我很迷茫。

谢谢!

4

2 回答 2

5

您肯定是以非标准方式编译此代码。使用 mpi 编译 f77 或 f90 代码的常用方法是使用程序mpif77mpif90,它们环绕用于构建特定 MPI 版本的编译器。

例如,在我的笔记本电脑上(使用用 gfortran/gcc 编译的 OpenMPI),该命令mpif77大致相当于:

gfortran -I/usr/local/include -L/usr/local/lib -lmpi_f77 -lmpi -lopen-rte -lopen-pal -lutil

(我通过mpif90 -showme-- 我不知道该命令行选项是否是 MPI 标准的一部分,因此它可能对您不起作用)获得了此信息。

要编译你的代码,我会尝试这样的事情:

mpif77 -O0 -Wall -c ./TestData/common/timers.f -o timers.o

由于没有要包含的其他文件,因此使用附加-I标志增加编译器包含路径实际上没有任何意义——您只会增加意外找到错误头文件的可能性;)。

也许在您的当前目录或 /home/stephen/trunk/include 中有一个文件“mpif.h”,它在不应该被选中时被选中。(看起来你可能会看到一个 C 头文件,因为/*它是 C 注释的开头——尽管我不明白为什么 ac 头文件会被称为“mpif.h”)。

于 2012-06-12T20:30:03.233 回答
0

我同意您应该使用 mpif77 或 mpif90 链接到正确的库。如果 gfortran 不喜欢预处理器宏,您应该尝试 -cpp 编译器选项。

于 2012-06-12T21:14:18.173 回答