f77_dot Interface

public interface f77_dot

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


Functions

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

Original interface for SDOT See also: mfi_dot, f77_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, f77_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)