Nek5000
SEM for Incompressible NS
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
opctr_mod.F90
Go to the documentation of this file.
1 module opctr
2 ! OPCTR is a set of arrays for tracking the number of operations,
3 ! and number of calls for a particular subroutine
4  use kinds, only : dp
5  implicit none
6 
7  integer, parameter :: maxrts = 1000
8  character(6) :: rname(maxrts)
9 
10  real(DP) :: dcount,dct(maxrts),rct(maxrts)
11  integer :: ncall(maxrts), nrout
12 
13  integer, save :: myrout,isclld
14  data myrout /0/
15  data isclld /0/
16 
17 end module opctr