acc_stream_cptr Function

public function acc_stream_cptr(this) result(res)

Returns C-pointer of given stream.

Arguments

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

stream ID

Return Value logical

false (accelerator support is not enabled)


Source Code

   FUNCTION acc_stream_cptr(this) RESULT(res)
      !! Returns C-pointer of given stream.

      INTEGER, INTENT(in)                                :: this
         !! stream ID
      LOGICAL                                            :: res
         !! false (accelerator support is not enabled)

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