Re: [OMPI users] Concerning infiniband support

2011-01-20 Thread Bowen Zhou
On 01/20/2011 07:57 AM, On Jan 20, 2011, at 7:51 AM, Bowen Zhou wrote: Besides all these advices have been given, you may need to use --prefix in configure script to override default installation directory since you don't have root account. Also you might want to look at MVAPICH

Re: [OMPI users] Concerning infiniband support

2011-01-20 Thread Bowen Zhou
luck, Bowen Zhou On 01/20/2011 01:59 AM, Dear all, I want to use infiniband, I am from a University in the US, my University’s high performance center don’t have Gcc compiled openmpi that support infiniband, so I want to compile myself. But I have a few questions, 1.Is it ok to compile openmpi m

Re: [OMPI users] MPI_Send doesn't work if the data >= 2GB

2010-12-07 Thread Bowen Zhou
similar issue happens with MPICH2 too. Can you try with message size (2G-1) bytes? http://trac.mcs.anl.gov/projects/mpich2/ticket/1080 Best, Bowen Zhou

Re: [OMPI users] How to run different versions of application in the same run?

2010-10-13 Thread Bowen Zhou
Thanks a lot! That's exactly what I was looking for. See here: http://www.open-mpi.org/faq/?category=running#mpmd-run On Tue, 2010-10-12 at 22:21 -0400, Bowen Zhou wrote: Greetings, I'm doing software fault injection in a parallel application to evaluate the effect of hardwar

[OMPI users] How to run different versions of application in the same run?

2010-10-12 Thread Bowen Zhou
stand that mpirun or mpiexec would require a globally accessible path to the same executable mounted with NFS or some other file system. So is there any way to specify different pathnames in different nodes? Many thanks, Bowen Zhou

Re: [OMPI users] nonblocking send/receive question

2010-10-11 Thread Bowen Zhou
Try MPI_Isend? I have a glut application I am trying to add MPI to. In the display callback, for rank >= 1, I want to send data to the rank =0 process. I am not concerned at this point about sending data from the rank 0 process back to the rank >= 1 process, so my data is one direction.

Re: [OMPI users] "self scheduled" work & mpi receive???

2010-09-23 Thread Bowen Zhou
Hi All: I’ve written an openmpi program that “self schedules” the work. The master task is in a loop chunking up an input stream and handing off jobs to worker tasks. At first the master gives the next job to the next highest rank. After all ranks have their first job, the master wai

Re: [OMPI users] OpenMPI load data to multiple nodes

2010-07-12 Thread Bowen Zhou
Since each node has its own memory in a distributed memory system, there is no such thing as "global variable" that can be accessed by all processes. So you need to use MPI to scatter the input from rank 0 process to all the other processes explicitly. From: dtustud...@hotmail.com To: us...@open-

[OMPI users] Any example for noncrashing bugs in MPI applications

2010-06-28 Thread Bowen Zhou
Hi, I am developing a runtime detector for noncrashing bugs in MPI applications. It is capable of collecting MPI communication and diagnose if a node is abnormal based on its communication with other nodes. Therefore, it is highly desirable to have a couple of noncrashing bugs from real-life