Re: [OMPI users] Communication round-trip time

2012-11-07 Thread George Bosilca
Try one of these: http://www.scl.ameslab.gov/netpipe/ http://mvapich.cse.ohio-state.edu/benchmarks/osu-micro-benchmarks-3.7.tar.gz george. On Nov 7, 2012, at 00:30 , huydanlin wrote: > Hi, >Have anyone know about MPI Program use to measure communication round-trip > time on Cluster (

[OMPI users] Communication round-trip time

2012-11-07 Thread huydanlin
Hi, Have anyone know about MPI Program use to measure communication round-trip time on Cluster ( like ping command on network) That is the program have each process run on each node on Cluster. Then it use MPI to calculate the communication round-trip time among nodes. Thanks

Re: [OMPI users] Communication Round-trip time

2012-10-09 Thread Elken, Tom
l Message- > From: users-boun...@open-mpi.org [mailto:users-boun...@open-mpi.org] On > Behalf Of Jeff Squyres > Sent: Tuesday, October 09, 2012 2:58 AM > To: Open MPI Users > Subject: Re: [OMPI users] Communication Round-trip time > > In general, what you said is "right

Re: [OMPI users] Communication Round-trip time

2012-10-09 Thread Jeff Squyres
In general, what you said is "right"... for some definition of "right". :-) Usually, benchmarking programs start a timer, do the round trip sends N times, stop the timer, and then divide the total time by N (to get a smoother definition of "average"). But keep in mind that there are many, many

[OMPI users] Communication Round-trip time

2012-10-08 Thread huydanlin
Hi, I'm currently doing MPI project in NUS University. My professor require me make a monitoring tool to check the connection among processes in Cluster. And also measure communication round-trip time. My solution is : 1. At the source process : start MPI_Send 2. At the destination process :