libflame  revision_anchor
Functions | Variables
FLA_Herk.c File Reference

(r)

Functions

FLA_Error FLA_Herk (FLA_Uplo uplo, FLA_Trans trans, FLA_Obj alpha, FLA_Obj A, FLA_Obj beta, FLA_Obj C)
 

Variables

fla_herk_tfla_herk_cntl_mm
 

Function Documentation

◆ FLA_Herk()

FLA_Error FLA_Herk ( FLA_Uplo  uplo,
FLA_Trans  trans,
FLA_Obj  alpha,
FLA_Obj  A,
FLA_Obj  beta,
FLA_Obj  C 
)

References FLA_Check_error_level(), FLA_Herk_check(), FLA_Herk_external(), and FLA_Herk_internal().

16 {
17  FLA_Error r_val = FLA_SUCCESS;
18 
19  // Check parameters.
20  if ( FLA_Check_error_level() >= FLA_MIN_ERROR_CHECKING )
21  FLA_Herk_check( uplo, trans, alpha, A, beta, C );
22 
23 #ifdef FLA_ENABLE_BLAS3_FRONT_END_CNTL_TREES
24  r_val = FLA_Herk_internal( uplo, trans, alpha, A, beta, C, fla_herk_cntl_mm );
25 #else
26  r_val = FLA_Herk_external( uplo, trans, alpha, A, beta, C );
27 #endif
28 
29  return r_val;
30 }
FLA_Error FLA_Herk_external(FLA_Uplo uplo, FLA_Trans trans, FLA_Obj alpha, FLA_Obj A, FLA_Obj beta, FLA_Obj C)
Definition: FLA_Herk_external.c:13
int FLA_Error
Definition: FLA_type_defs.h:47
fla_herk_t * fla_herk_cntl_mm
Definition: FLA_Herk_cntl_init.c:19
FLA_Error FLA_Herk_internal(FLA_Uplo uplo, FLA_Trans trans, FLA_Obj alpha, FLA_Obj A, FLA_Obj beta, FLA_Obj C, fla_herk_t *cntl)
Definition: FLA_Herk_internal.c:16
unsigned int FLA_Check_error_level(void)
Definition: FLA_Check.c:18
FLA_Error FLA_Herk_check(FLA_Uplo uplo, FLA_Trans trans, FLA_Obj alpha, FLA_Obj A, FLA_Obj beta, FLA_Obj C)
Definition: FLA_Herk_check.c:13

Variable Documentation

◆ fla_herk_cntl_mm

fla_herk_t* fla_herk_cntl_mm