gFortran 和 OpenACC 支持
gFortran and OpenACC support
根据 gFortran docs 为了启用 OpenACC 支持,必须使用 -fopenacc
开关。但是,这似乎不起作用。
gfortran: error: unrecognized command line option ‘-fopenacc’
gFortran 版本是 GNU Fortran (GCC) 4.8.5 20150623 (Red Hat 4.8.5-28)
。
在 OpenACC 支持下编译 Fortran 代码的正确方法是什么?
你的版本太旧了。当前支持的 GCC 版本为 7、8 和 9。
版本特定手册可在 https://gcc.gnu.org/onlinedocs/gcc-9.2.0/gfortran/OpenACC.html#OpenACC 更改地址中的版本号以查看其他版本。
该选项似乎是在版本 5 中添加的,但在较新版本中的支持可能会好得多。
根据 gFortran docs 为了启用 OpenACC 支持,必须使用 -fopenacc
开关。但是,这似乎不起作用。
gfortran: error: unrecognized command line option ‘-fopenacc’
gFortran 版本是 GNU Fortran (GCC) 4.8.5 20150623 (Red Hat 4.8.5-28)
。
在 OpenACC 支持下编译 Fortran 代码的正确方法是什么?
你的版本太旧了。当前支持的 GCC 版本为 7、8 和 9。 版本特定手册可在 https://gcc.gnu.org/onlinedocs/gcc-9.2.0/gfortran/OpenACC.html#OpenACC 更改地址中的版本号以查看其他版本。
该选项似乎是在版本 5 中添加的,但在较新版本中的支持可能会好得多。