acc_devmem_cptr Function

public function acc_devmem_cptr(this) result(res)

Returns C-pointer to data of given devmem.

Arguments

Type IntentOptional Attributes Name
integer, intent(in) :: this

device memory

Return Value logical

false (accelerator support is not enabled)


Source Code

   FUNCTION acc_devmem_cptr(this) RESULT(res)
      !! Returns C-pointer to data of given devmem.

      INTEGER, INTENT(IN)                                :: this
         !! device memory
      LOGICAL                                            :: res
         !! false (accelerator support is not enabled)

      MARK_USED(this)
      res = .FALSE.
   END FUNCTION acc_devmem_cptr