mfi_blas_dot Module



Interfaces

public interface mfi_dot

Generic modern interface for DOT. Supports s, d. See also: sdot, ddot.

  • public pure function mfi_sdot(x, y, incx, incy)

    Modern interface for f77_dot. See also: mfi_dot, f77_dot.

    Arguments

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

    Return Value real(kind=REAL32)

  • public pure function mfi_ddot(x, y, incx, incy)

    Modern interface for f77_dot. See also: mfi_dot, f77_dot.

    Arguments

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

    Return Value real(kind=REAL64)


Functions

public pure function mfi_sdot(x, y, incx, incy)

Modern interface for f77_dot. See also: mfi_dot, f77_dot.

Arguments

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

Return Value real(kind=REAL32)

public pure function mfi_ddot(x, y, incx, incy)

Modern interface for f77_dot. See also: mfi_dot, f77_dot.

Arguments

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

Return Value real(kind=REAL64)