Сборка Boost.MPI с Intel MPI - PullRequest
       93

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

2 голосов
/ 02 ноября 2011

Я пытаюсь собрать 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 Ответ

4 голосов
/ 03 ноября 2011

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

...