Re: [OMPI users] unable to launch a job on a system with OmniPath

2021-05-21 Thread Pavel Mezentsev via users
? Another idea that came to mind was to get an OpenMPI build that would not have any high performance fabric support and would only work via TCP. So any advice on how to accomplish my goal would be appreciated. I realize that performance-wise that is going to be quite... sad. But currently t

Re: [OMPI users] unable to launch a job on a system with OmniPath

2021-05-19 Thread Pavel Mezentsev via users
can I improve the performance? Regards, Pavel Mezentsev. On Mon, May 10, 2021 at 6:20 PM Heinz, Michael William < michael.william.he...@cornelisnetworks.com> wrote: > *That warning is an annoying bit of cruft from the openib / verbs provider > that can be ignored. (Actually, I recomm

[OMPI users] unable to launch a job on a system with OmniPath

2021-05-10 Thread Pavel Mezentsev via users
pmix=external --with-libevent=external --with-ompi-pmix-rte ``` Which also raises another question: if it was built with `--without-orte` then why do I get an error about failing to get something from ORTE. The OpenMPI version is `4.1.0rc1` built with `gcc-9.3.0`. Thank you in advance! Regards, Pavel Mezentsev.

Re: [OMPI users] CentOS 6.3 & OpenMPI 1.6.3

2012-11-28 Thread Pavel Mezentsev
You can try downloading and installing a fresher version of MXM from mellanox web site. There was a thread on the list with the same problem, you can search for it. 2012/11/28 Joseph Farran > Howdy. > > I a have a stock CentOS 6.3 OS and a Mellanox MT26428 card. > > I installed the Mellanox OFE

Re: [OMPI users] Problem executing mpic++ for LAMMPS installation

2012-10-13 Thread Pavel Mezentsev
Try adding path to openmpi libraries to LD_LIBRARY_PATH: export LD_LIBRARY_PATH=/home/ras536/lib/openmpi/lib:$LD_LIBRARY_PATH Regards, Pavel Mezentsev 2012/10/12 Rafael Antonio Soler-Crespo > Hello everyone, > > I'm a new student at my university, and I need to install LAMMPS

Re: [OMPI users] Algorithms used in MPI_BCast

2012-09-24 Thread Pavel Mezentsev
Hello, Are you making these rules manually or in some automated way? Regards, Pavel Mezentsev. 2012/9/21 Iliev, Hristo > Hi, > > Open MPI uses several different algorithms depending on which module from > the "coll" framework is selected to perform the logic of the broa

Re: [OMPI users] application with mxm hangs on startup

2012-08-24 Thread Pavel Mezentsev
igurations: 16 nodes with Intel SB processors and fdr infiniband 10 nodes with AMD Interlagos and qdr infiniband. Regards, Pavel Mezentsev. 2012/8/24 Mike Dubman > > Hi, > Could you please download latest mxm from > http://www.mellanox.com/products/mxm/ and retry? > The mxm

Re: [OMPI users] application with mxm hangs on startup

2012-08-22 Thread Pavel Mezentsev
m observing the same behavior as with FDR: application hangs in the beginning. Best regards, Pavel Mezentsev. 2012/8/22 Pavel Mezentsev > Hello! > > I've built openmpi 1.6.1rc3 with support of MXM. But when I try to launch > an application using this mtl it hangs and can't

[OMPI users] application with mxm hangs on startup

2012-08-21 Thread Pavel Mezentsev
with-knem=/usr/share/knem I'm using the latest ofed from mellanox: 1.5.3-3.1.0 on centos 6.1 with default kernel: 2.6.32-131.0.15. The compilation with default mxm (1.0.601) failed so I installed the latest version from mellanox: 1.1.1227 Best regards, Pavel Mezentsev.

Re: [OMPI users] Help with multicore AMD machine performance

2012-03-30 Thread Pavel Mezentsev
You can try running using this script: #!/bin/bash s=$(($OMPI_COMM_WORLD_NODE_RANK)) numactl --physcpubind=$((s)) --localalloc ./YOUR_PROG instead of 'mpirun ... ./YOUR_PROG' run 'mpirun ... ./SCRIPT I tried this with openmpi-1.5.4 and it helped. Best regards, Pavel Mezents