redist_buffer Derived Type

type, private :: redist_buffer

Small container type simply providing a 1D allocatable buffer. Used to allow array of buffers of different sizes.


Contents

Source Code


Components

Type Visibility Attributes Name Initial
complex, public, dimension(:), allocatable :: complex_buffer
real, public, dimension(:), allocatable :: real_buffer

Source Code

  type :: redist_buffer
     complex, dimension(:), allocatable :: complex_buffer
     real, dimension(:), allocatable :: real_buffer
  end type redist_buffer