f77_blas_dot Module



Interfaces

public interface f77_dot

Generic old style interface for DOT. Supports s, d. See also: mfi_dot, sdot, ddot.

  • public pure function sdot(n, x, incx, y, incy)

    Original interface for SDOT See also: mfi_dot, dot.

    Arguments

    Type IntentOptional Attributes Name
    integer, intent(in) :: n
    real(kind=REAL32), intent(in) :: x(*)
    integer, intent(in) :: incx
    real(kind=REAL32), intent(in) :: y(*)
    integer, intent(in) :: incy

    Return Value real(kind=REAL32)

  • public pure function ddot(n, x, incx, y, incy)

    Original interface for DDOT See also: mfi_dot, dot.

    Arguments

    Type IntentOptional Attributes Name
    integer, intent(in) :: n
    real(kind=REAL64), intent(in) :: x(*)
    integer, intent(in) :: incx
    real(kind=REAL64), intent(in) :: y(*)
    integer, intent(in) :: incy

    Return Value real(kind=REAL64)