stack_buffer_type Derived Type

type, private :: stack_buffer_type


Components

Type Visibility Attributes Name Initial
type(acc_devmem_type), public :: devmem
integer, public, DIMENSION(:, :), POINTER :: hostmem => Null()
type(acc_event_type), public :: ready
type(acc_event_type), public :: calculated
type(acc_stream_type), public :: stream

Source Code

   TYPE stack_buffer_type
      TYPE(acc_devmem_type)                  :: devmem
      INTEGER, DIMENSION(:, :), POINTER       :: hostmem => Null()
      TYPE(acc_event_type)                   :: ready
      TYPE(acc_event_type)                   :: calculated
      TYPE(acc_stream_type)                  :: stream
   END TYPE stack_buffer_type