libflame  revision_anchor
Functions | Variables
FLA_Chol.c File Reference

(r)

Functions

FLA_Error FLA_Chol (FLA_Uplo uplo, FLA_Obj A)
 

Variables

fla_chol_tfla_chol_cntl
 
fla_chol_tfla_chol_cntl2
 

Function Documentation

◆ FLA_Chol()

FLA_Error FLA_Chol ( FLA_Uplo  uplo,
FLA_Obj  A 
)
17 {
18  FLA_Error r_val;
19 
20  // Check parameters.
21  if ( FLA_Check_error_level() >= FLA_MIN_ERROR_CHECKING )
22  FLA_Chol_check( uplo, A );
23 
24  // Invoke FLA_Chol_internal() with the appropriate control tree.
25  r_val = FLA_Chol_internal( uplo, A, fla_chol_cntl2 );
26  //r_val = FLA_Chol_internal( uplo, A, fla_chol_cntl );
27 
28  return r_val;
29 }
fla_chol_t * fla_chol_cntl2
Definition: FLA_Chol_cntl_init.c:17
FLA_Error FLA_Chol_internal(FLA_Uplo uplo, FLA_Obj A, fla_chol_t *cntl)
Definition: FLA_Chol_internal.c:16
FLA_Error FLA_Chol_check(FLA_Uplo uplo, FLA_Obj A)
Definition: FLA_Chol_check.c:13
unsigned int FLA_Check_error_level(void)
Definition: FLA_Check.c:18
int FLA_Error
Definition: FLA_type_defs.h:47

References FLA_Check_error_level(), FLA_Chol_check(), fla_chol_cntl2, and FLA_Chol_internal().

Variable Documentation

◆ fla_chol_cntl

fla_chol_t* fla_chol_cntl
extern

◆ fla_chol_cntl2

fla_chol_t* fla_chol_cntl2
extern