libflame  12600
Functions | Variables
FLA_Hemm.c File Reference

(r12600)

Functions

FLA_Error FLA_Hemm (FLA_Side side, FLA_Uplo uplo, FLA_Obj alpha, FLA_Obj A, FLA_Obj B, FLA_Obj beta, FLA_Obj C)

Variables

fla_hemm_tfla_hemm_cntl_mm

Function Documentation

FLA_Error FLA_Hemm ( FLA_Side  side,
FLA_Uplo  uplo,
FLA_Obj  alpha,
FLA_Obj  A,
FLA_Obj  B,
FLA_Obj  beta,
FLA_Obj  C 
)

References FLA_Check_error_level(), FLA_Hemm_check(), FLA_Hemm_external(), and FLA_Hemm_internal().

{
  FLA_Error r_val = FLA_SUCCESS;
  
  // Check parameters.
  if ( FLA_Check_error_level() >= FLA_MIN_ERROR_CHECKING )
    FLA_Hemm_check( side, uplo, alpha, A, B, beta, C );

#ifdef FLA_ENABLE_BLAS3_FRONT_END_CNTL_TREES
  r_val = FLA_Hemm_internal( side, uplo, alpha, A, B, beta, C, fla_hemm_cntl_mm );
#else
  r_val = FLA_Hemm_external( side, uplo, alpha, A, B, beta, C );
#endif

  return r_val;
}

Variable Documentation