oqp_stpsv_i64 Subroutine

public subroutine oqp_stpsv_i64(uplo, trans, diag, n, ap, x, incx)

Arguments

Type IntentOptional Attributes Name
character(len=1) :: uplo
character(len=1) :: trans
character(len=1) :: diag
integer :: n
real :: ap(*)
real :: x(*)
integer :: incx

Calls

proc~~oqp_stpsv_i64~~CallsGraph proc~oqp_stpsv_i64 oqp_stpsv_i64 interface~show_message show_message proc~oqp_stpsv_i64->interface~show_message stpsv stpsv proc~oqp_stpsv_i64->stpsv

Source Code

  subroutine oqp_stpsv_i64(uplo, trans, diag, n, ap, x, incx)
    integer :: incx
    integer :: n
    character :: diag
    character :: trans
    character :: uplo
    real :: ap(*)
    real :: 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 stpsv(uplo, trans, diag, n_, ap, x, incx_)

  end subroutine oqp_stpsv_i64