oqp_xerbla_i64 Subroutine

public subroutine oqp_xerbla_i64(srname, info)

Arguments

Type IntentOptional Attributes Name
character(len=1) :: srname
integer :: info

Calls

proc~~oqp_xerbla_i64~~CallsGraph proc~oqp_xerbla_i64 oqp_xerbla_i64 interface~show_message show_message proc~oqp_xerbla_i64->interface~show_message xerbla xerbla proc~oqp_xerbla_i64->xerbla

Source Code

  subroutine oqp_xerbla_i64(srname, info)
    character :: srname
    integer :: info

    integer(blas_int) :: info_
    logical :: ok

    if (ARG_CHECK) then
      ok = .true.
      ok = ok .and. abs(info ) <= HUGE_BLAS_INT-1
      if (.not.ok) call show_message(ERRMSG, WITH_ABORT)
    end if

    info_ = int(info , blas_int)

    call xerbla(srname, info_)

  end subroutine oqp_xerbla_i64