Re: [OMPI users] Problem with MPI_Wtime()

2011-09-15 Thread Ghislain Lartigue
Le 15 sept. 2011 à 16:37, Eugene Loh a écrit : > On 9/15/2011 5:51 AM, Ghislain Lartigue wrote: >> start_0 = MPI_Wtime() >> >> start_1 = MPI_Wtime() >> call foo() >> end_1 = MPI_Wtime() >> write(*,*) "timer1 = ",end1-start1 >> >> start_2 = MPI_Wtime() >> call bar() >> end_2 = MPI_Wtime() >> wri

Re: [OMPI users] Problem with MPI_Wtime()

2011-09-15 Thread Eugene Loh
On 9/15/2011 5:51 AM, Ghislain Lartigue wrote: start_0 = MPI_Wtime() start_1 = MPI_Wtime() call foo() end_1 = MPI_Wtime() write(*,*) "timer1 = ",end1-start1 start_2 = MPI_Wtime() call bar() end_2 = MPI_Wtime() write(*,*) "timer2 = ",end2-start2 end_0 = MPI_Wtime() write(*,*) "timer0 = ",end0-s

[OMPI users] Problem with MPI_Wtime()

2011-09-15 Thread Ghislain Lartigue
Hello, I have instrumented my fortran code with "timers" in the following way: == start_0 = MPI_Wtime() start_1 = MPI_Wtime() call foo() end_1 = MPI_Wtime() write(*,*) "timer1 = ",end1-start1 start_2 = MPI_Wtime() call bar() end_2 = MPI_Wtime() w