GCC Code Coverage Report


Directory: ./
File: misc/vampir.f90
Date: 2022-01-11 19:19:34
Exec Total Coverage
Lines: 0 6 0.0%
Branches: 0 0 -%

Line Branch Exec Source
1 module Vampir
2
3 INTEGER,parameter :: VTcaldyn=1
4 INTEGER,parameter :: VTintegre=2
5 INTEGER,parameter :: VTadvection=3
6 INTEGER,parameter :: VTdissipation=4
7 INTEGER,parameter :: VThallo=5
8 INTEGER,parameter :: VTphysiq=6
9 INTEGER,parameter :: VTinca=7
10
11 INTEGER,parameter :: nb_inst=7
12 INTEGER :: MPE_begin(nb_inst)
13 INTEGER :: MPE_end(nb_inst)
14
15 contains
16
17 subroutine InitVampir
18 implicit none
19
20
21 end subroutine InitVampir
22
23 subroutine VTb(number)
24 implicit none
25 INTEGER :: number
26
27 end subroutine VTb
28
29 subroutine VTe(number)
30 implicit none
31 INTEGER :: Number
32
33
34 end subroutine VTe
35
36 end module Vampir
37