f77_blas_hemm Module



Interfaces

public interface f77_hemm

Generic old style interface for HEMM. Supports c, z. See also: mfi_hemm, chemm, zhemm.

  • public pure subroutine chemm(side, uplo, m, n, alpha, a, lda, b, ldb, beta, c, ldc)

    Original interface for CHEMM See also: mfi_hemm, hemm.

    Arguments

    Type IntentOptional Attributes Name
    character(len=1), intent(in) :: side
    character(len=1), intent(in) :: uplo
    integer, intent(in) :: m
    integer, intent(in) :: n
    complex(kind=REAL32), intent(in) :: alpha
    complex(kind=REAL32), intent(in) :: a(lda,*)
    integer, intent(in) :: lda
    complex(kind=REAL32), intent(in) :: b(ldb,*)
    integer, intent(in) :: ldb
    complex(kind=REAL32), intent(in) :: beta
    complex(kind=REAL32), intent(inout) :: c(ldc,*)
    integer, intent(in) :: ldc
  • public pure subroutine zhemm(side, uplo, m, n, alpha, a, lda, b, ldb, beta, c, ldc)

    Original interface for ZHEMM See also: mfi_hemm, hemm.

    Arguments

    Type IntentOptional Attributes Name
    character(len=1), intent(in) :: side
    character(len=1), intent(in) :: uplo
    integer, intent(in) :: m
    integer, intent(in) :: n
    complex(kind=REAL64), intent(in) :: alpha
    complex(kind=REAL64), intent(in) :: a(lda,*)
    integer, intent(in) :: lda
    complex(kind=REAL64), intent(in) :: b(ldb,*)
    integer, intent(in) :: ldb
    complex(kind=REAL64), intent(in) :: beta
    complex(kind=REAL64), intent(inout) :: c(ldc,*)
    integer, intent(in) :: ldc