You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi Marian devs, I'm trying to build with OpenMPI but haven't been successful in getting cmake to find my OpenMPI installation. I've installed OpenMPI with:
git clone https://github.com/open-mpi/ompi.git
cd ompi
./autogen.pl
./configure && make && make install
All of the above works apparently without problems, and I see mpi.h in /usr/local/include and libmpi.so in /usr/local/include, as expected.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Hi Marian devs, I'm trying to build with OpenMPI but haven't been successful in getting cmake to find my OpenMPI installation. I've installed OpenMPI with:
All of the above works apparently without problems, and I see
mpi.h
in/usr/local/include
andlibmpi.so
in/usr/local/include
, as expected.Then I built marian with:
(This is on a machine with no Nvidia GPU, thus the
-DCOMPILE_CUDA=OFF
, but that shouldn't matter for MPI support, right?)When I run
marian --build-info 2>&1 | grep USE_MPI
, I see:However, when I run
marian -c transformer-model.yml
(using the transformer-intro tutorial), I see:Did I miss something obvious? I will continue to dig into the code to look for the solution.
Beta Was this translation helpful? Give feedback.
All reactions