oqp_ssyr_i64 Subroutine

public subroutine oqp_ssyr_i64(uplo, n, alpha, x, incx, a, lda)

Arguments

Type IntentOptional Attributes Name
character(len=1) :: uplo
integer :: n
real :: alpha
real :: x(*)
integer :: incx
real :: a(lda,*)
integer :: lda

Calls

proc~~oqp_ssyr_i64~~CallsGraph proc~oqp_ssyr_i64 oqp_ssyr_i64 interface~show_message show_message proc~oqp_ssyr_i64->interface~show_message ssyr ssyr proc~oqp_ssyr_i64->ssyr

Source Code

  subroutine oqp_ssyr_i64(uplo, n, alpha, x, incx, a, lda)
    real :: alpha
    integer :: incx
    integer :: lda
    integer :: n
    character :: uplo
    real :: a(lda,*)
    real :: x(*)

    integer(blas_int) :: n_, incx_, lda_
    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
      ok = ok .and. abs(lda  ) <= 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)
    lda_  = int(lda  , blas_int)

    call ssyr(uplo, n_, alpha, x, incx_, a, lda_)

  end subroutine oqp_ssyr_i64