mp_perf_type Derived Type

type, private :: mp_perf_type


Components

Type Visibility Attributes Name Initial
character(len=20), public :: name = ""
integer, public :: count = -1
real(kind=dp), public :: msg_size = -1.0_dp

Source Code

   TYPE mp_perf_type
      CHARACTER(LEN=20) :: name = ""
      INTEGER :: count = -1
      REAL(KIND=dp) :: msg_size = -1.0_dp
   END TYPE mp_perf_type