Re: [OMPI users] Cluster : received unexpected process identifier

2012-04-04 Thread Jeffrey Squyres
On Apr 4, 2012, at 8:04 PM, Rohan Deshpande wrote: > Yes they are on same subnet. ips for example - 192.168.1.1, 192.168.1.2, > 192.168.1.3 This is generally considered a bad idea, not just for MPI, but for Linux in general. Google around about this. One reason, for example, is that there i

Re: [OMPI users] Cluster : received unexpected process identifier

2012-04-04 Thread Rohan Deshpande
Yes they are on same subnet. ips for example - 192.168.1.1, 192.168.1.2, 192.168.1.3 So what I need to modify here? On Thu, Apr 5, 2012 at 7:59 AM, Jeffrey Squyres wrote: > Run ifconfig on your nodes. Do you have multiple IP interfaces? > > If so, are they on the same IP subnet? (e.g., one

Re: [OMPI users] Cluster : received unexpected process identifier

2012-04-04 Thread Jeffrey Squyres
Run ifconfig on your nodes. Do you have multiple IP interfaces? If so, are they on the same IP subnet? (e.g., one IP interface 192.168.1.x/24 and another on 192.168.1.y/24) On Apr 4, 2012, at 7:55 PM, Rohan Deshpande wrote: > Hi, > > I am not quite sure what does that mean. Can you please

Re: [OMPI users] Cluster : received unexpected process identifier

2012-04-04 Thread Rohan Deshpande
Hi, I am not quite sure what does that mean. Can you please explain more. Thanks On Wed, Apr 4, 2012 at 10:47 PM, Jeffrey Squyres wrote: > Do you have multiple IP interfaces on a single machine on the same IP > subnet, perchance? > > If so, don't do that. :-) Put each of your IP addresses in

Re: [OMPI users] Problem with MPI_Barrier (Inter-communicator)

2012-04-04 Thread Thatyene Louise Alves de Souza Ramos
Hi Edgar, thank you for the response. Unfortunately, I've tried with and without this option. In both the result was the same... =( On Wed, Apr 4, 2012 at 5:04 PM, Edgar Gabriel wrote: > did you try to start the program with the --mca coll ^inter switch that > I mentioned? Collective dup for in

Re: [OMPI users] Problem with MPI_Barrier (Inter-communicator)

2012-04-04 Thread Edgar Gabriel
did you try to start the program with the --mca coll ^inter switch that I mentioned? Collective dup for intercommunicators should work, its probably again the bcast over a communicator of size 1 that is causing the hang, and you could avoid it with the flag that I mentioned above. Also, if you cou

Re: [OMPI users] Problem with MPI_Barrier (Inter-communicator)

2012-04-04 Thread Thatyene Louise Alves de Souza Ramos
Hi there. I've made some tests related to the problem reported by Rodrigo. And I think, I'd rather be wrong, that *collective calls like Create and Dup do not work with Inter communicators. I've try this in the client group:* *MPI::Intercomm tmp_inter_comm;* * * *tmp_inter_comm = server_comm.Crea

Re: [OMPI users] Need Performance estimation of MPI_Bcast

2012-04-04 Thread anas trad
OK Jeffrey thanks a lot, the answer was very helpful to me, at least I got to know the complexity of this issue.  --- On Wed, 4/4/12, Jeffrey Squyres wrote: From: Jeffrey Squyres Subject: Re: [OMPI users] Need Performance estimation of MPI_Bcast To: "Open MPI Users" List-Post: users@lists.ope

Re: [OMPI users] Cluster : received unexpected process identifier

2012-04-04 Thread Jeffrey Squyres
Do you have multiple IP interfaces on a single machine on the same IP subnet, perchance? If so, don't do that. :-) Put each of your IP addresses in a different IP subnet. On Apr 3, 2012, at 10:30 PM, Rohan Deshpande wrote: > Hi, > > I am running a MPI program using cluster and tcp communi

Re: [OMPI users] Need Performance estimation of MPI_Bcast

2012-04-04 Thread Jeffrey Squyres
On Apr 4, 2012, at 9:56 AM, anas trad wrote: > Thanks Jeffrey, I understand, can you please guide me to such paper that give > more accurate estimation for the MPI_Bcast. I can't cite any specific papers (collectives are not my focus area, and I left academia several years ago); you'll need to

Re: [OMPI users] Need Performance estimation of MPI_Bcast

2012-04-04 Thread anas trad
Thanks Jeffrey, I understand, can you please guide me to such paper that give more accurate estimation for the MPI_Bcast. --- On Wed, 4/4/12, Jeffrey Squyres wrote: From: Jeffrey Squyres Subject: Re: [OMPI users] Need Performance estimation of MPI_Bcast To: "Open MPI Users" List-Post: users@

Re: [OMPI users] Need Performance estimation of MPI_Bcast

2012-04-04 Thread Jeffrey Squyres
It's a bit more complicated than that; there are many factors involved: - how many peer MPI processes are involved in the broadcast - how many of those peers are local (and will likely communicate via shared memory, not a network device) and how many are remote - what broadcast algorithm is used

Re: [OMPI users] configuration of openmpi-1.5.4 with visual studio

2012-04-04 Thread Shiqing Fan
Hi Toufik, Could you please try the 1.5.5 installer? http://www.open-mpi.org/software/ompi/v1.5/downloads/OpenMPI_v1.5.5-1_win32.exe Please let me know if it works for you. Thanks. Shiqing On 2012-04-02 8:02 PM, toufik hadjazi wrote: Hi Shiqing, i haven't yet find a solution and for the reco

Re: [OMPI users] Need Performance estimation of MPI_Bcast

2012-04-04 Thread anas trad
Hi  Envoyé , Thanks for the reply but I want to estimate the time of executing MPI_Bcast function by mathmatics. I found that we can achieve this by using LogGP model with this equation: T = ceil(log2p) . (L + 2 · o + (n − 1) · G but that does not give good accuracy for time evaluation. --- On

Re: [OMPI users] Need Performance estimation of MPI_Bcast

2012-04-04 Thread Aurélien Bouteiller
You can use the intel mpi benchmark, or skampi. These two programs are designed to evaluate Moi performance. Envoyé de mon iPad Le 2012-04-04 à 08:46, anas trad a écrit : > Hi all, > > I need to know the time estimation of executing MPI_Bcast function on Neolith > Cluster. Please, can anyone

[OMPI users] Need Performance estimation of MPI_Bcast

2012-04-04 Thread anas trad
Hi all, I need to know the time estimation of executing MPI_Bcast function on Neolith Cluster. Please, can anyone show me how to achieve that. Thanks,Anas