Ошибка компиляции OpenMPI с помощью ifort


0

Я пытаюсь скомпилировать OpenMPI 1.10.2 с помощью компилятора Intel Fortran (ifort), установленного с графическим интерфейсом. При настройке

sudo ./configure FC="ifort" 

(как сказано в README для установки другого компилятора) я получаю следующую ошибку

    *** Fortran compiler
checking whether we are using the GNU Fortran compiler... no
checking whether ifort accepts -g... no
checking whether ln -s works... yes
checking if Fortran compiler works... no
**********************************************************************
* It appears that your Fortran compiler is unable to produce working
* executables.  A simple test application failed to properly
* execute.  Note that this is likely not a problem with Open MPI,
* but a problem with the local compiler installation.  More
* information (including exactly what command was given to the
* compiler and what error resulted when the command was executed) is
* available in the config.log file in the Open MPI build directory.
**********************************************************************
configure: error: Could not run a simple Fortran program.  Aborting.

Глядя в файл config.log я прочитал это:

 configure:32556: checking if Fortran compiler works
configure:32585: ifort -o conftest /opt/intel/bin/   conftest.f  >&5
./configure: line 4835: ifort: command not found
configure:32585: $? = 127
configure: program exited with status 127
configure: failed program was:
|       program main
| 
|       end
configure:32601: result: no
configure:32615: error: Could not run a simple Fortran program.  Aborting.

Поэтому я попытался запустить ifort в одиночку, и это работает. Кроме того, я не могу найти файл conftest.f .

Те же проблемы с icc (компилятор Intel c ++).

Я думаю, что есть какой-то путь, но не знаю как.

Ответы:


0

Да, ваш ifortдолжен быть в PATH.

export PATH=<path_to_your_ifort_binary>:$PATH
sudo ./configure FC="ifort"

Перейдите <path_to_your_ifort_binary>в реальный каталог.

С другой стороны, у компилятора Intel есть файл сценария ifortvars.sh, который выполняет работу со всеми переменными за вас. Учитывая, что это каталог, в котором установлен Intel Compiler, добавьте в свой ~/.bashrc:

source <install-dir>/bin/ifortvars.sh intel64

Третий способ попробовать использовать compilervars.shIntel Composer. Пожалуйста, смотрите здесь.

Используя наш сайт, вы подтверждаете, что прочитали и поняли нашу Политику в отношении файлов cookie и Политику конфиденциальности.
Licensed under cc by-sa 3.0 with attribution required.