oqp_drotm_i64 Subroutine

public subroutine oqp_drotm_i64(n, dx, incx, dy, incy, dparam)

Arguments

Type IntentOptional Attributes Name
integer :: n
double precision :: dx(*)
integer :: incx
double precision :: dy(*)
integer :: incy
double precision :: dparam(5)

Calls

proc~~oqp_drotm_i64~~CallsGraph proc~oqp_drotm_i64 oqp_drotm_i64 drotm drotm proc~oqp_drotm_i64->drotm interface~show_message show_message proc~oqp_drotm_i64->interface~show_message

Source Code

  subroutine oqp_drotm_i64(n, dx, incx, dy, incy, dparam)
    integer :: incx
    integer :: incy
    integer :: n
    double precision :: dparam(5)
    double precision :: dx(*)
    double precision :: dy(*)

    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 drotm(n_, dx, incx_, dy, incy_, dparam)

  end subroutine oqp_drotm_i64