oqp_dsbmv_i64 Subroutine

public subroutine oqp_dsbmv_i64(uplo, n, k, alpha, a, lda, x, incx, beta, y, incy)

Arguments

Type IntentOptional Attributes Name
character(len=1) :: uplo
integer :: n
integer :: k
double precision :: alpha
double precision :: a(lda,*)
integer :: lda
double precision :: x(*)
integer :: incx
double precision :: beta
double precision :: y(*)
integer :: incy

Calls

proc~~oqp_dsbmv_i64~~CallsGraph proc~oqp_dsbmv_i64 oqp_dsbmv_i64 dsbmv dsbmv proc~oqp_dsbmv_i64->dsbmv interface~show_message show_message proc~oqp_dsbmv_i64->interface~show_message

Source Code

  subroutine oqp_dsbmv_i64(uplo, n, k, alpha, a, lda, x, incx, beta, y, incy)
    double precision :: alpha
    double precision :: beta
    integer :: incx
    integer :: incy
    integer :: k
    integer :: lda
    integer :: n
    character :: uplo
    double precision :: a(lda,*)
    double precision :: x(*)
    double precision :: y(*)

    integer(blas_int) :: n_, k_, lda_, incx_, incy_
    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
      ok = ok .and. abs(incy ) <= 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)
    incy_ = int(incy , blas_int)

    call dsbmv(uplo, n_, k_, alpha, a, lda_, x, incx_, beta, y, incy_)

  end subroutine oqp_dsbmv_i64