[OMPI users] Honor host_aliases file for tight SGE integration

2017-09-13 Thread Reuti
Hi, I wonder whether it came ever to the discussion, that SGE can have a similar behavior like Torque/PBS regarding the mangling of hostnames. It's similiar to https://github.com/open-mpi/ompi/issues/2328, in the behavior that a node can have multiple network interfaces and each has an unique

Re: [OMPI users] mpif90 unable to find ibverbs

2017-09-13 Thread Mahmood Naderan
>are you sure you are using Open MPI ? I am using the openmpi shipped with Rocks 6 and trying to build Quantum ESPRESSO 6.1 >Beware: static linking is not for the meek. Agree! I found that I have to install compat-dapl-static.x86_64. As can be seen from the name, it is a compatibility library.

Re: [OMPI users] mpif90 unable to find ibverbs

2017-09-13 Thread Jeff Squyres (jsquyres)
Beware: static linking is not for the meek. Is there a reason you need to link statically? Be sure to read this FAQ item: https://www.open-mpi.org/faq/?category=mpi-apps#static-ofa-mpi-apps (note that that FAQ item was written a long time ago; it cites the "mthca" Mellanox obverts driver; the

Re: [OMPI users] mpif90 unable to find ibverbs

2017-09-13 Thread gilles
This is something related to DAPL. /* just google "libdat" */ iirc, Intel MPI uses that, but i do not recall Open MPI using it (!) are you sure you are using Open MPI ? which interconnect do you have ? Cheers, Gilles - Original Message - Thanks Gilles... That has been solved.

Re: [OMPI users] mpif90 unable to find ibverbs

2017-09-13 Thread Mahmood Naderan
Thanks Gilles... That has been solved. Another issue is mpif90 -g -pthread -static -o iotk_print_kinds.x iotk_print_kinds.o libiotk.a /usr/bin/ld: cannot find -ldat The name is actually hard to google! I cannot find the library name for "dat". Have you heard of that? There is not "libdat"

Re: [OMPI users] mpif90 unable to find ibverbs

2017-09-13 Thread gilles
Mahmood, since you are building a static binary, only static library (e.g. libibverbs.a) can be used. on your system, only dynamic libibverbs.so is available. simply install libibverbs.a and you should be fine. Best regards, Gilles - Original Message - Hi, I am trying to

[OMPI users] mpif90 unable to find ibverbs

2017-09-13 Thread Mahmood Naderan
Hi, I am trying to build an application with static linking that uses openmpi. in the middle of the build, I get this mpif90 -g -pthread -static -o iotk_print_kinds.x iotk_print_kinds.o libiotk.a /usr/bin/ld: cannot find -libverbs collect2: ld returned 1 exit status However, such library exists