subroutine oqp_dgemv_i64(trans, m, n, alpha, a, lda, x, incx, beta, y, incy)
double precision :: alpha
double precision :: beta
integer :: incx
integer :: incy
integer :: lda
integer :: m
integer :: n
character :: trans
double precision :: a(lda,*)
double precision :: x(*)
double precision :: y(*)
integer(blas_int) :: m_, n_, lda_, incx_, incy_
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(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
m_ = int(m , blas_int)
n_ = int(n , blas_int)
lda_ = int(lda , blas_int)
incx_ = int(incx , blas_int)
incy_ = int(incy , blas_int)
call dgemv(trans, m_, n_, alpha, a, lda_, x, incx_, beta, y, incy_)
end subroutine oqp_dgemv_i64