oqp_srot_i64 Subroutine

public subroutine oqp_srot_i64(n, sx, incx, sy, incy, c, s)

Arguments

Type IntentOptional Attributes Name
integer :: n
real :: sx(*)
integer :: incx
real :: sy(*)
integer :: incy
real :: c
real :: s

Calls

proc~~oqp_srot_i64~~CallsGraph proc~oqp_srot_i64 oqp_srot_i64 interface~show_message show_message proc~oqp_srot_i64->interface~show_message srot srot proc~oqp_srot_i64->srot

Source Code

  subroutine oqp_srot_i64(n, sx, incx, sy, incy, c, s)
    real :: c
    real :: s
    integer :: incx
    integer :: incy
    integer :: n
    real :: sx(*)
    real :: sy(*)

    integer(blas_int) :: n_, incx_, incy_
    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(incy ) <= 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)
    incy_ = int(incy , blas_int)

    call srot(n_, sx, incx_, sy, incy_, c, s)

  end subroutine oqp_srot_i64