f77_blas_rotm Module



Interfaces

public interface f77_rotm

Generic old style interface for ROTM. Supports s, d. See also: mfi_rotm, srotm, drotm.

  • public pure subroutine srotm(n, x, incx, y, incy, param)

    Original interface for SROTM See also: mfi_rotm, rotm.

    Arguments

    Type IntentOptional Attributes Name
    integer, intent(in) :: n
    real(kind=REAL32), intent(inout) :: x(*)
    integer, intent(in) :: incx
    real(kind=REAL32), intent(inout) :: y(*)
    integer, intent(in) :: incy
    real(kind=REAL32), intent(in) :: param(5)
  • public pure subroutine drotm(n, x, incx, y, incy, param)

    Original interface for DROTM See also: mfi_rotm, rotm.

    Arguments

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