MAPL_CommRequest Derived Type

type, public :: MAPL_CommRequest


Inherits

type~~mapl_commrequest~~InheritsGraph type~mapl_commrequest MAPL_CommRequest type~arrptr ArrPtr type~mapl_commrequest->type~arrptr Buff

Inherited by

type~~mapl_commrequest~~InheritedByGraph type~mapl_commrequest MAPL_CommRequest type~mapl_cfio MAPL_CFIO type~mapl_cfio->type~mapl_commrequest reqs type~historycollection~2 HistoryCollection type~historycollection~2->type~mapl_cfio MCFIO type~historycollectionvectoriterator~2 HistoryCollectionVectorIterator type~historycollectionvectoriterator~2->type~historycollection~2 elements type~historycollectionvectorriterator~2 HistoryCollectionVectorRIterator type~historycollectionvectorriterator~2->type~historycollection~2 elements type~historycollectionvector~2 HistoryCollectionVector type~historycollectionvector~2->type~historycollection~2 elements

Components

Type Visibility Attributes Name Initial
integer, public :: MYPE
integer, public :: RequestType = MAPL_Unknown
integer, public :: comm
integer, public, pointer :: i1(:)
integer, public, pointer :: im(:)
integer, public :: im0
integer, public :: im_world
integer, public, pointer :: in(:)
integer, public, pointer :: j1(:)
integer, public, pointer :: jm(:)
integer, public :: jm0
integer, public :: jm_world
integer, public, pointer :: jn(:)
integer, public :: nDEs
integer, public, pointer :: recv(:) => null()
integer, public :: root
integer, public :: s_rqst
integer, public, pointer :: send(:) => null()
integer, public :: tag
logical, public :: IsPrePosted
logical, public :: active = .false.
logical, public :: amRoot = .false.
real, public, pointer :: DstArray(:,:) => null()
real, public, pointer :: Local_Array(:,:) => null()
real, public, pointer :: Read_Array(:,:) => null()
real, public, pointer :: Trans_Array(:,:,:) => null()
real, public, pointer :: var(:) => null()
type(ArrPtr), public, pointer :: Buff(:)

Source Code

  type MAPL_CommRequest
     integer, pointer :: i1(:),in(:),j1(:),jn(:),im(:),jm(:)
     integer          :: im_world, jm_world, im0, jm0
     integer, pointer :: recv(:)=>null()
     integer, pointer :: send(:)=>null()
     real, pointer    :: var(:)=>null()
     real, pointer    :: DstArray(:,:)=>null()
     real, pointer    :: Local_Array(:,:)=>null()
     real, pointer    :: Trans_Array(:,:,:)=>null()
     real, pointer    :: Read_Array(:,:)=>null()
     type(ArrPtr), pointer :: Buff(:)
     integer          :: nDEs, MYPE, comm, root
     logical          :: active=.false., amRoot=.false.
     logical          :: IsPrePosted
     integer          :: RequestType=MAPL_Unknown
     integer          :: tag, s_rqst
  end type MAPL_CommRequest