oqp_dspr_i64 Subroutine

public subroutine oqp_dspr_i64(uplo, n, alpha, x, incx, ap)

Arguments

Type IntentOptional Attributes Name
character(len=1) :: uplo
integer :: n
double precision :: alpha
double precision :: x(*)
integer :: incx
double precision :: ap(*)

Calls

proc~~oqp_dspr_i64~~CallsGraph proc~oqp_dspr_i64 oqp_dspr_i64 dspr dspr proc~oqp_dspr_i64->dspr interface~show_message show_message proc~oqp_dspr_i64->interface~show_message

Source Code

  subroutine oqp_dspr_i64(uplo, n, alpha, x, incx, ap)
    double precision :: alpha
    integer :: incx
    integer :: n
    character :: uplo
    double precision :: ap(*)
    double precision :: x(*)

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

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

    n_    = int(n    , blas_int)
    incx_ = int(incx , blas_int)

    call dspr(uplo, n_, alpha, x, incx_, ap)

  end subroutine oqp_dspr_i64