[OMPI users] How to time data transfers?

2010-10-13 Thread Ed Peddycoart
I need to do some performance tests on my mpi app. I simply want to determine how long it takes for my sends from one process to be received by another process. Here is the code I used as my example for non-blocking send/receive... if( myrank == 0 ) { /* Post a receive, send a message,

[OMPI users] Send data structures

2010-10-12 Thread Ed Peddycoart
The data that I want to send via MPI is in the form of a struct: struct myDataStruct { struct subData1 { int position[2]; int length[2]; }; struct subData2 { float *data1; float *data2; float *data3; float *data4; }; struct subData3 {

Re: [OMPI users] nonblocking send/receive question

2010-10-12 Thread Ed Peddycoart
Actually, that wasn't the problem. My code is working now with no changes to it. Not sure what the problem was but it wasn't the called to MPI_Send blocking. Ed From: users-boun...@open-mpi.org on behalf of Jeff Squyres Sent: Tue 10/12/2010 6:52 AM To: Open

[OMPI users] nonblocking send/receive question

2010-10-11 Thread Ed Peddycoart
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. I would like to

[OMPI users] OpenMPI and glut

2010-10-08 Thread Ed Peddycoart
I have a glut app I am infusing with MPI calls... The glut init appears to fail in the rank1 processes. How do I accomplish this, that is, parallel rendering with GLUT and MPI? Ed

Re: [OMPI users] OpenMPI and glut

2010-10-08 Thread Ed Peddycoart
? and 1-N is all others? Ed From: Ed Peddycoart Sent: Fri 10/8/2010 11:10 AM To: us...@open-mpi.org Subject: OpenMPI and glut I have a glut app I am infusing with MPI calls... The glut init appears to fail in the rank1 processes. How do I accomplish

[OMPI users] new open mpi user questions

2010-10-04 Thread Ed Peddycoart
I would like to give Open MPI a test drive on some machines I have in my lab and I have a few questions... The machines are RHEL 5.4 machines and an older version of Open MPI was already installed. I understand from the faq that I should not simply over write the old installation, but would