Re: [OMPI users] growing memory use from MPI application

2019-06-20 Thread Yann Jobic via users
Hi, Le 6/20/2019 à 3:31 PM, Noam Bernstein via users a écrit : On Jun 20, 2019, at 4:44 AM, Charles A Taylor > wrote: This looks a lot like a problem I had with OpenMPI 3.1.2.  I thought the fix was landed in 4.0.0 but you might want to check the code to be sure ther

Re: [OMPI users] Rounding errors and MPI

2017-01-16 Thread Yann Jobic
Hi, Is there an overlapping section in the MPI part ? Otherwise, please check : - declaration type of all the variables (consistency) - correct initialization of the array "wave" (to zero) - maybe use temporary variables like real size1,size2,factor size1 = dx+dy size2 = dhx+dhy factor = dt*size

[OMPI users] MPI_Sendrecv datatype memory bug ?

2016-11-24 Thread Yann Jobic
Hi all, I'm going crazy about a possible bug in my code. I'm using a derived mpi datatype in a sendrecv function. The problem is that the memory footprint of my code is growing as time increases. The problem is not showing with a regular datatype, as MPI_DOUBLE. I don't have this problem for o

Re: [OMPI users] valgrind invalid read

2016-11-22 Thread Yann Jobic
review. meanwhile, you can manually apply the patch available at https://github.com/open-mpi/ompi/pull/2418 Cheers, Gilles On 11/18/2016 9:34 PM, Yann Jobic wrote: Hi, I'm using valgrind 3.12 with openmpi 2.0.1. The code simply send an integer to another process with : #in

[OMPI users] valgrind invalid read

2016-11-18 Thread Yann Jobic
Hi, I'm using valgrind 3.12 with openmpi 2.0.1. The code simply send an integer to another process with : #include #include #include int main (int argc, char **argv) { const int tag = 13; int size, rank; MPI_Init(&argc, &argv); MPI_Comm_size(MPI_COMM_WORLD, &size); if (size < 2) {

[OMPI users] infiniband question

2009-09-17 Thread Yann JOBIC
Set MTU to IBV value 4 (2048 bytes) And then, the program hangs. I thought i only need rdma communications, and don't need the DALP lib (with the iboip module). I am wrong ? Thanks, Yann -- ___ Yann JOBIC HPC engineer Polytech Marseille DME IUSTI-CNRS UMR 6595 T

Re: [OMPI users] SVD with mpi

2009-09-09 Thread Yann JOBIC
Attila Börcs wrote: Hi Everyone, I'd like to achieve singular value decomposition with mpi. I heard about Lanczos algorith and some different kind of algorith for svd, but I need some help about this theme. Knows anybody some usable code or tutorial about parallel svd? Best Regards, Attila

Re: [OMPI users] Program runs successfully...but with error messages displayed

2009-08-27 Thread Yann JOBIC
fo.cgi/users You can define some default parameter in the $OMPIDIR/etc/openmpi-mca-params.conf For instance, you can add : # Exclude openib BTL, not currently supported btl = ^openib,ofud Yann -- ___ Yann JOBIC HPC engineer Polytech Marseille DME IUSTI-CNRS UMR 6595 T

Re: [OMPI users] Help: orted: command not found.

2009-08-24 Thread Yann JOBIC
http://www.open-mpi.org/mailman/listinfo.cgi/users You may use the variable OPAL_PREFIX, which point to your installation directory. Yann -- ___ Yann JOBIC HPC engineer Polytech Marseille DME IUSTI-CNRS UMR 6595 Technopôle de Château Gombert 5 rue Enrico Fermi 13453

Re: [OMPI users] pipes system limit

2009-08-07 Thread Yann JOBIC
ann On 08/07/09 11:21, Yann JOBIC wrote: Hello all, I'm using hpc8.2 : Lidia-jobic% ompi_info Displaying Open MPI information for 32-bit ... Package: ClusterTools 8.2 Open MPI: 1.3.3r21324-ct8.2-b09j-r40 [...] And i've got a X4600 machine (8*4 cores). W

[OMPI users] pipes system limit

2009-08-07 Thread Yann JOBIC
Hello all, I'm using hpc8.2 : Lidia-jobic% ompi_info Displaying Open MPI information for 32-bit ... Package: ClusterTools 8.2 Open MPI: 1.3.3r21324-ct8.2-b09j-r40 [...] And i've got a X4600 machine (8*4 cores). When i'm trying to run a 32 processor

Re: [OMPI users] MPI_Lookup_name

2009-06-09 Thread jobic
ent one is rather useless, I must admit. :-/ Thanks Ralph That's working fine ! Thanks for the fast answer. Yann On Tue, Jun 9, 2009 at 9:58 AM, Yann JOBIC <mailto:jo...@polytech.univ-mrs.fr>> wrote: Hi all, I'm trying to get MPI_Lookup_name working. The codes are worki

[OMPI users] MPI_Lookup_name

2009-06-09 Thread Yann JOBIC
e error. Here's the codes : http://www.latp.univ-mrs.fr/~jobic/server.c http://www.latp.univ-mrs.fr/~jobic/client.c I also have some strange errors, like : [homard:26319] [[34061,0],0] ORTE_ERROR_LOG: Bad parameter in file base/rml_base_contact.c at line 153 [homard:26319] [[34061,0],0] ORTE_ER

Re: [OMPI users] strange error, seems inable to launch job

2009-02-12 Thread jobic
g got crosswise during build. Ralph On Feb 11, 2009, at 3:10 AM, Mr Yann JOBIC wrote: Hello all, I compiled ompi v1.3 (tarball) with the intel compiler on debian etch. Everything went fine, thanks for the FAQ (quite complet) But, when i'm running a job, i've got this error : Trixy0

Re: [OMPI users] strange error, seems inable to launch job

2009-02-12 Thread Mr Yann JOBIC
st code for the pipe permissions? May i've something wrong in my /dev ? (right permissions ?) For the library part, i don't know how to check that. On linux, every libs are in /usr/lib. Yann On Feb 11, 2009, at 3:10 AM, Mr Yann JOBIC wrote: Hello all, I compiled ompi v1.3

[OMPI users] strange error, seems inable to launch job

2009-02-11 Thread Mr Yann JOBIC
Hello all, I compiled ompi v1.3 (tarball) with the intel compiler on debian etch. Everything went fine, thanks for the FAQ (quite complet) But, when i'm running a job, i've got this error : Trixy03-jobic% mpirun --verbose --debug-daemons -np 4 ./exe [Trixy03:15140] [[19525,0],0]

Re: [OMPI users] OMPI link error with petsc 2.3.3

2008-10-08 Thread Yann JOBIC
14:14:50 +0200 From: "Yann JOBIC" Subject: Re: [OMPI users] OMPI link error with petsc 2.3.3 To: Open MPI Users Message-ID: <48eca43a.1060...@polytech.univ-mrs.fr> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Hello, I used cc to compile. I tried to use mpicc/mpi

Re: [OMPI users] OMPI link error with petsc 2.3.3

2008-10-08 Thread Yann JOBIC
Hello, I used cc to compile. I tried to use mpicc/mpif90 to compile PETSC, but it changed nothing. I still have the same error. I'm giving you the whole compile proccess : 4440p-jobic% gmake solv_ksp mpicc -o solv_ksp.o -c -fPIC -m64 -I/opt/lib/petsc -I/opt/lib/petsc/bmake/a

Re: [OMPI users] OMPI link error with petsc 2.3.3

2008-10-07 Thread Yann JOBIC
am is running and gives some good results (so far, for some small cases). However i don't know if we'll have some strange behavior in some cases. Yann Date: Tue, 07 Oct 2008 16:55:14 +0200 From: "Yann JOBIC" Subject: [OMPI users] OMPI link error with petsc 2.3.3 To: O

[OMPI users] OMPI link error with petsc 2.3.3

2008-10-07 Thread Yann JOBIC
Hello, I'm using openmpi 1.3r19400 (ClusterTools 8.0), with sun studio 12, and solaris 10u5 I've got this error when linking a PETSc code : ld: warning: symbol `mpi_fortran_status_ignore_' has differing sizes: (file /opt/SUNWhpc/HPC8.0/lib/amd64/libmpi.so value=0x8; file /opt/SUNWhpc/H