to get the current time in Fortran, we can use “system_clock” built-in function. To do this, take a look at the code below.
integer::count_0,count_rate,count_max, walltime, tstart,tend
call system_clock(count_0,count_rate,count_max)
tstart=count_0/count_rate
write(*,*) ‘begin (system_clock)’,tstart
To find out how long your program has run, add a similar line and save the time to, for example “t_end” variable, and get the difference. It will [...]
Filed under: Uncategorized | Tagged: fortran | Leave a Comment »