clock_now Subroutine

public subroutine clock_now(t)

Fetch the current clock tick count.

Arguments

Type IntentOptional Attributes Name
integer(kind=int64), intent(out) :: t

Current tick count from system_clock.


Source Code

   subroutine clock_now(t)
      integer(int64), intent(out) :: t
      !! Current tick count from `system_clock`.
      call system_clock(t)
   end subroutine clock_now