oqp_csscal_i64 Subroutine

public subroutine oqp_csscal_i64(n, sa, cx, incx)

Arguments

Type IntentOptional Attributes Name
integer :: n
real :: sa
complex :: cx(*)
integer :: incx

Calls

proc~~oqp_csscal_i64~~CallsGraph proc~oqp_csscal_i64 oqp_csscal_i64 csscal csscal proc~oqp_csscal_i64->csscal interface~show_message show_message proc~oqp_csscal_i64->interface~show_message

Source Code

  subroutine oqp_csscal_i64(n, sa, cx, incx)
    real :: sa
    integer :: incx
    integer :: n
    complex :: cx(*)

    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 csscal(n_, sa, cx, incx_)

  end subroutine oqp_csscal_i64