dtimer_start Subroutine

private impure subroutine dtimer_start(this)

Starts the timer by recording the current processor clock value. This value is used to calculate the elapsed time later.

Type Bound

timer

Arguments

Type IntentOptional Attributes Name
class(timer), intent(inout) :: this

Called by

proc~~dtimer_start~~CalledByGraph proc~dtimer_start timer%dtimer_start program~example5 example5 program~example5->proc~dtimer_start program~example6 example6 program~example6->proc~dtimer_start program~test25 test25 program~test25->proc~dtimer_start program~test26 test26 program~test26->proc~dtimer_start program~test27 test27 program~test27->proc~dtimer_start program~test28 test28 program~test28->proc~dtimer_start program~test29 test29 program~test29->proc~dtimer_start program~test30 test30 program~test30->proc~dtimer_start

Source Code

   impure subroutine dtimer_start(this)
      class(timer), intent(inout) :: this

      ! Start the timer
      call date_and_time(values=this%values_start)

   end subroutine dtimer_start