Re: [OMPI users] Mac OS X Static PGI

2011-03-01 Thread Ralph Castain
On Mar 1, 2011, at 1:34 PM, David Robertson wrote: > Hi, > > > Error means OMPI didn't find a network interface - do you have your > > networks turned off? Sometimes people travel with Airport turned off. > > If you haven wire connected, then no interfaces exist. > > I am logged in to the machi

[OMPI users] MPI_ALLREDUCE bug with 1.5.2rc3r24441

2011-03-01 Thread Harald Anlauf
Hi, there appears to be a regression in revision 1.5.2rc3r24441. The attached program crashes even with 1 PE with: Default real, digits: 4 24 Real kind,digits: 8 53 Integer kind, bits: 8 64 Default Integer :

Re: [OMPI users] Mac OS X Static PGI

2011-03-01 Thread David Robertson
Hi, > Error means OMPI didn't find a network interface - do you have your > networks turned off? Sometimes people travel with Airport turned off. > If you haven wire connected, then no interfaces exist. I am logged in to the machine remotely through the wired interface. The Airport is always of

Re: [OMPI users] Mac OS X Static PGI

2011-03-01 Thread Ralph Castain
Error means OMPI didn't find a network interface - do you have your networks turned off? Sometimes people travel with Airport turned off. If you haven wire connected, then no interfaces exist. Sent from my iPad On Mar 1, 2011, at 11:50 AM, David Robertson wrote: > Hi all, > > I am having tr

[OMPI users] Mac OS X Static PGI

2011-03-01 Thread David Robertson
Hi all, I am having trouble with PGI on Mac OS X 10.6.6. PGI's support staff has informed me that PGI does not "support 64-bit shared library creation" on the Mac. Therefore, I have built Open MPI in static only mode (--disable-shared --enable-static). I have to do some manipulation to get m

Re: [OMPI users] RDMACM Differences

2011-03-01 Thread Jeff Squyres
On Feb 28, 2011, at 12:49 PM, Jagga Soorma wrote: > -bash-3.2$ mpiexec --mca btl openib,self -mca btl_openib_warn_default_gid_ > prefix 0 -np 2 --hostfile mpihosts > /home/jagga/osu-micro-benchmarks-3.3/openmpi/ofed-1.5.2/bin/osu_latency Your use of btl_openib_warn_default_gid_prefix may have br

Re: [OMPI users] Unknown overhead in "mpirun -am ft-enable-cr"

2011-03-01 Thread Joshua Hursey
I have not had the time to look into the performance problem yet, and probably won't for a little while. Can you send me a small program that illustrates the performance problem, and I'll file a bug so we don't lose track of it. Thanks, Josh On Feb 25, 2011, at 1:31 PM, Nguyen Toan wrote: > De

Re: [OMPI users] Basic question on portability

2011-03-01 Thread Jeff Squyres
Yes, you will have problems. We did not formally introduce ABI compatibility until version 1.3.2. Meaning: your application compiled with 1.3.2 will successfully link/run against any 1.3.x version >= 1.3.2, and against any 1.4.x version. v1.5 broke ABI with the v1.3/v1.4 series, but it will al

Re: [OMPI users] using MPI through Qt

2011-03-01 Thread Eugene Loh
Eye RCS 51 wrote: Hi, In an effort to make a Qt gui using MPI, I have the following: 1. Gui started in master node. 2. In Gui, through a pushbutton, a global variable x is assigned some value; let say, x=1000; 3. I want this value to be know to all nodes. So I used broadcast in the functi

[OMPI users] Basic question on portability

2011-03-01 Thread Blosch, Edwin L
If I compile against OpenMPI 1.2.8, shared linkage, on one system, then move the executable to another system with OpenMPI 1.4.x or 1.5.x, will I have any problems running the executable? Thanks

Re: [OMPI users] using MPI through Qt

2011-03-01 Thread David Zhang
Certainly you may call MPI functions many times, the problem is that you need to have matching receives (or collectives) at your slave nodes, which is only determined at run-time. Perhaps this could be done with two communications, the first broadcast the type of communications to the slaves (for

Re: [OMPI users] RoCE (IBoE) & OpenMPI

2011-03-01 Thread Jeff Squyres
I thought you mentioned in a prior email that you had gotten one or two other OFED sample applications to work properly. How are they setting the SL? Are they not using the RDMA CM? On Mar 1, 2011, at 7:35 AM, Michael Shuey wrote: > So, since RoCE has no SM, and setting an SL is required to

Re: [OMPI users] RoCE (IBoE) & OpenMPI

2011-03-01 Thread Michael Shuey
So, since RoCE has no SM, and setting an SL is required to get lossless ethernet on Cisco switches (and possibly others), does this mean that RoCE will never work correctly with OpenMPI on Cisco hardware? -- Mike Shuey On Tue, Mar 1, 2011 at 3:42 AM, Doron Shoham wrote: > Hi, > > Regarding to

[OMPI users] using MPI through Qt

2011-03-01 Thread Eye RCS 51
Hi, In an effort to make a Qt gui using MPI, I have the following: 1. Gui started in master node. 2. In Gui, through a pushbutton, a global variable x is assigned some value; let say, x=1000; 3. I want this value to be know to all nodes. So I used broadcast in the function assigning it on the m