oqp_zhemv_i64 Subroutine

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

Arguments

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

Calls

proc~~oqp_zhemv_i64~~CallsGraph proc~oqp_zhemv_i64 oqp_zhemv_i64 interface~show_message show_message proc~oqp_zhemv_i64->interface~show_message zhemv zhemv proc~oqp_zhemv_i64->zhemv

Source Code

  subroutine oqp_zhemv_i64(uplo, n, alpha, a, lda, x, incx, beta, y, incy)
    complex(kind=8) :: alpha
    complex(kind=8) :: beta
    integer :: incx
    integer :: incy
    integer :: lda
    integer :: n
    character :: uplo
    complex(kind=8) :: a(lda,*)
    complex(kind=8) :: x(*)
    complex(kind=8) :: y(*)

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

    if (ARG_CHECK) then
      ok = .true.
      ok = ok .and. abs(n    ) <= 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)
    lda_  = int(lda  , blas_int)
    incx_ = int(incx , blas_int)
    incy_ = int(incy , blas_int)

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

  end subroutine oqp_zhemv_i64