stack_buffer_type Derived Type

type, private :: stack_buffer_type


Components

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

Source Code

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