oqp_dger_i64 Subroutine

public subroutine oqp_dger_i64(m, n, alpha, x, incx, y, incy, a, lda)

Arguments

Type IntentOptional Attributes Name
integer :: m
integer :: n
double precision :: alpha
double precision :: x(*)
integer :: incx
double precision :: y(*)
integer :: incy
double precision :: a(lda,*)
integer :: lda

Calls

proc~~oqp_dger_i64~~CallsGraph proc~oqp_dger_i64 oqp_dger_i64 dger dger proc~oqp_dger_i64->dger interface~show_message show_message proc~oqp_dger_i64->interface~show_message

Source Code

  subroutine oqp_dger_i64(m, n, alpha, x, incx, y, incy, a, lda)
    double precision :: alpha
    integer :: incx
    integer :: incy
    integer :: lda
    integer :: m
    integer :: n
    double precision :: a(lda,*)
    double precision :: x(*)
    double precision :: y(*)

    integer(blas_int) :: m_, n_, incx_, incy_, lda_
    logical :: ok

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

    m_    = int(m    , blas_int)
    n_    = int(n    , blas_int)
    incx_ = int(incx , blas_int)
    incy_ = int(incy , blas_int)
    lda_  = int(lda  , blas_int)

    call dger(m_, n_, alpha, x, incx_, y, incy_, a, lda_)

  end subroutine oqp_dger_i64