Re: [OMPI users] OpenMPI 4.1.1, CentOS 7.9, nVidia HPC-SDk, build hints?

2021-09-30 Thread Carl Ponder via users
Sep 2021 08:46:26 -0400 From: Bennet Fauber To: Carl Ponder , Open MPI Users CC: Ray Muno *External email: Use caution opening links or attachments* You may be seeing this? C language issues Default to |-fno-common| A common mistake in C is omitting |extern| when

Re: [OMPI users] OpenMPI 4.1.1, CentOS 7.9, nVidia HPC-SDk, build hints?

2021-09-30 Thread Carl Ponder via users
For now, you can suppress this error building OpenMPI 4.1.1 ./.libs/liblocal_ops_avx512.a(liblocal_ops_avx512_la-op_avx_functions.o):(.data+0x0): multipledefinition of `ompi_op_avx_functions_avx2' ./.libs/liblocal_ops_avx2.a(liblocal_ops_avx2_la-op_avx_functions.o):(.data+0x0): fir

[OMPI users] AVX errors building OpenMPI 4.1.0

2021-02-05 Thread Carl Ponder via users
Building OpenMPI 4.1.0 with the PGI 21.1 compiler on a Broadwell processor, I get this error libtool: compile:  pgcc -DHAVE_CONFIG_H -I. -I../../../../opal/include -I../../../../ompi/include -I../../../../oshmem/include -I../../../../opal/mca/hwloc/hwloc201/hwloc/include/private/auto

[OMPI users] 4.1.0 build failure with --enable-cxx-exceptions

2021-02-05 Thread Carl Ponder via users
I usually build OpenMPI using these flags --enable-mpi-cxx --enable-mpi-cxx-seek --enable-cxx-exceptions but get this error for the 4.1.0 source checking for compiler exception flags... -fexceptions checking to see if C compiler likes the exception flags... no configure: WARNING: C+

Re: [OMPI users] Trying to map to socket #0 on each node

2015-12-07 Thread Carl Ponder
*On 12/06/2015 11:07 AM, Carl Ponder wrote:* I'm trying to run a multi-node job but I want to map all of the processes to cores on socket #0 only. I'm having a hard time figuring out how to do this, the obvious combinations mpirun -n 8 -npernode 4 -repor

Re: [OMPI users] Trying to map to socket #0 on each node

2015-12-06 Thread Carl Ponder
*On 12/06/2015 11:28 AM, Ralph Castain wrote:* You want "-bind-to socket -slot-list=0,2,4,6" Or if you want each process bound to a single core on the socket, then change “socket” to “core” in the above As for host/rankfile - we do indeed support just asking for “the next em

[OMPI users] Trying to map to socket #0 on each node

2015-12-06 Thread Carl Ponder
I'm trying to run a multi-node job but I want to map all of the processes to cores on socket #0 only. I'm having a hard time figuring out how to do this, the obvious combinations mpirun -n 8 -npernode 4 -report-bindings ... mpirun -n 8 -npernode 4 --map-by core -report-bindings ... mp