Сборка Boost.MPI с Intel MPI

Я пытаюсь собрать Boost.MPI 1.47 с Intel MPI 4.0.0.012, но Boost не может найти установку. Я пробовал разные using mpi ;-варианты в user-config.jam, включая using mpi ;, using mpi : mpicl ; а также using mpi : c:/path/to/mpi/mpicl.bat без удачи Я также пытался использовать using mpi : <find-shared-library>impi ; хотя я не уверен что <find-shared-library> действительно).

С помощью using mpi ; Я получил:

===============MPI Auto-configuration===============
Did not find Microsoft Compute Cluster Pack in C:\Program Files\Microsoft Comput
e Cluster Pack.
warning: toolset mpi initialization: can not find tool mpic++
warning: initialized from c:\temp\boost_1_47_0\tools/build/v2\user-config.jam:94

The system cannot find the path specified.
The system cannot find the path specified.
The system cannot find the path specified.
The system cannot find the path specified.
MPI auto-detection failed: unknown wrapper compiler mpic++
Please report this error to the Boost mailing list: http://www.boost.org
You will need to manually configure MPI support.
warning: toolset mpi initialization: can not find tool mpirun
warning: initialized from c:\temp\boost_1_47_0\tools/build/v2\user-config.jam:94

MPI launcher: mpirun -np
====================================================

С помощью using mpi : mpicc Я получил:

===============MPI Auto-configuration===============
warning: toolset mpi initialization:
warning: can not find user-provided command  'mpicl'
warning: initialized from c:\temp\boost_1_47_0\tools/build/v2\user-config.jam:94

The system cannot find the path specified.
The system cannot find the path specified.
The system cannot find the path specified.
The system cannot find the path specified.
MPI auto-detection failed: unknown wrapper compiler mpicl
Please report this error to the Boost mailing list: http://www.boost.org
You will need to manually configure MPI support.
warning: toolset mpi initialization: can not find tool mpirun
warning: initialized from c:\temp\boost_1_47_0\tools/build/v2\user-config.jam:94

MPI launcher: mpirun -np
====================================================

using mpi : <find-shared-library>impi ; результаты в

MPI auto-detection failed: unknown wrapper compiler <find-shared-library>impi

Как связать Boost.MPI с Intel MPI (Windows, Visual Studio 2010, x64)?

1 ответ

Решение

Проблемы были вызваны пропавшим без вести: в using-statment. Boost.MPI скомпилирован нормально после исправления этого using mpi : : <find-shared-library>impi ; (обратите внимание, что есть два ':').

Другие вопросы по тегам