oqp_dtbsv_i64 Subroutine

public subroutine oqp_dtbsv_i64(uplo, trans, diag, n, k, a, lda, x, incx)

Arguments

Type IntentOptional Attributes Name
character(len=1) :: uplo
character(len=1) :: trans
character(len=1) :: diag
integer :: n
integer :: k
double precision :: a(lda,*)
integer :: lda
double precision :: x(*)
integer :: incx

Calls

proc~~oqp_dtbsv_i64~~CallsGraph proc~oqp_dtbsv_i64 oqp_dtbsv_i64 dtbsv dtbsv proc~oqp_dtbsv_i64->dtbsv interface~show_message show_message proc~oqp_dtbsv_i64->interface~show_message

Source Code

  subroutine oqp_dtbsv_i64(uplo, trans, diag, n, k, a, lda, x, incx)
    integer :: incx
    integer :: k
    integer :: lda
    integer :: n
    character :: diag
    character :: trans
    character :: uplo
    double precision :: a(lda,*)
    double precision :: x(*)

    integer(blas_int) :: n_, k_, lda_, incx_
    logical :: ok

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

    n_    = int(n    , blas_int)
    k_    = int(k    , blas_int)
    lda_  = int(lda  , blas_int)
    incx_ = int(incx , blas_int)

    call dtbsv(uplo, trans, diag, n_, k_, a, lda_, x, incx_)

  end subroutine oqp_dtbsv_i64