oqp_cdotu_i64 Function

public function oqp_cdotu_i64(n, cx, incx, cy, incy)

Arguments

Type IntentOptional Attributes Name
integer :: n
complex :: cx(*)
integer :: incx
complex :: cy(*)
integer :: incy

Return Value complex


Calls

proc~~oqp_cdotu_i64~~CallsGraph proc~oqp_cdotu_i64 oqp_cdotu_i64 cdotu cdotu proc~oqp_cdotu_i64->cdotu interface~show_message show_message proc~oqp_cdotu_i64->interface~show_message

Source Code

  function oqp_cdotu_i64(n, cx, incx, cy, incy)
    complex, external :: cdotu
    complex :: oqp_cdotu_i64
    integer :: incx
    integer :: incy
    integer :: n
    complex :: cx(*)
    complex :: cy(*)

    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)

    oqp_cdotu_i64 = cdotu(n_, cx, incx_, cy, incy_)

  end function oqp_cdotu_i64