oqp_zdscal_i64 Subroutine

public subroutine oqp_zdscal_i64(n, da, zx, incx)

Arguments

Type IntentOptional Attributes Name
integer :: n
double precision :: da
complex(kind=8) :: zx(*)
integer :: incx

Calls

proc~~oqp_zdscal_i64~~CallsGraph proc~oqp_zdscal_i64 oqp_zdscal_i64 interface~show_message show_message proc~oqp_zdscal_i64->interface~show_message zdscal zdscal proc~oqp_zdscal_i64->zdscal

Source Code

  subroutine oqp_zdscal_i64(n, da, zx, incx)
    double precision :: da
    integer :: incx
    integer :: n
    complex(kind=8) :: zx(*)

    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 zdscal(n_, da, zx, incx_)

  end subroutine oqp_zdscal_i64