Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have recently started learning Fortran 90 for the fun of it, and I want to know if there is any simple way to display the time taken to execute my code. It is just simple loop that counts to a million, and I want to see how long it takes to do that.

If it helps, here is the code I'm using:

program count
    implicit none
    integer :: i

    do i=0,1000000
        print*,i
    end do
end program count

I am on Linux using gFortran as my compiler. I am using Geany as a text editor.

Thanks in advance.

share|improve this question

1 Answer

up vote 1 down vote accepted

In Fortran 90 or later, use the SYSTEM_CLOCK intrinsic subroutine:

call system_clock(beginning, rate)
result = do_computation()
call system_clock(end)
print *, "elapsed time: ", real(end - beginning) / real(rate)
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.