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