timer_local Function

public function timer_local()

Uses

Returns CPU time in seconds. Currently just a thin wrapper to method of the same name in mp. In the future we probably want to remove the method here and change the relevant use statements.

Arguments

None

Return Value real


Contents

Source Code


Source Code

  real function timer_local()
    use mp, only: timer_local_mp => timer_local
    implicit none
    timer_local = timer_local_mp()
  end function timer_local