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
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
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
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
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
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.
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
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-
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