subroutine oqp_ssbmv_i64(uplo, n, k, alpha, a, lda, x, incx, beta, y, incy)
real :: alpha
real :: beta
integer :: incx
integer :: incy
integer :: k
integer :: lda
integer :: n
character :: uplo
real :: a(lda,*)
real :: x(*)
real :: 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 ssbmv(uplo, n_, k_, alpha, a, lda_, x, incx_, beta, y, incy_)
end subroutine oqp_ssbmv_i64