Skip to content

Timers

The type(timer) structure tracks computational performance.

  • Routine timing
  • Nested timers
  • Performance reports
  • MPI timing statistics
type(timer) :: t
call t%start()
! ... computational work ...
call t%stop()
call t%print_stats()

Detailed timing API and profiling guide.