test20 Program

Uses

  • program~~test20~~UsesGraph program~test20 test20 forunittest forunittest program~test20->forunittest module~fortime fortime program~test20->module~fortime iso_fortran_env iso_fortran_env module~fortime->iso_fortran_env

Source Code

program test20

   use fortime, only: timer
   use forunittest, only: unit_test, rk

   implicit none

#if defined(USE_OMP)
   type(timer) :: t
   type(unit_test) :: ut
   integer :: nl, nloops=3


   ! OMP time with nloops
   call t%otimer_start()
   do nl = 1, nloops
      call sleep(1) ! Perform operations ntimes
   end do
   call t%otimer_stop(nloops = nloops, message = 'OMP time:', print=.false.)
   call t%otimer_write('test/test20_otimes.txt') ! Optionally, write the elapsed time to a file

   call ut%check(res=t%omp_time, expected=1.0_rk, tol=1.0e-1_rk, msg='test20')

#endif

end program test20