oqp_izamax_i64 Function

public function oqp_izamax_i64(n, zx, incx)

Arguments

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

Return Value integer


Calls

proc~~oqp_izamax_i64~~CallsGraph proc~oqp_izamax_i64 oqp_izamax_i64 interface~show_message show_message proc~oqp_izamax_i64->interface~show_message izamax izamax proc~oqp_izamax_i64->izamax

Source Code

  function oqp_izamax_i64(n, zx, incx)
    integer(blas_int), external :: izamax
    integer :: oqp_izamax_i64
    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)

    oqp_izamax_i64 = izamax(n_, zx, incx_)

  end function oqp_izamax_i64