|
libflame
revision_anchor
|
Functions | |
| FLA_Error | FLA_Chol (FLA_Uplo uplo, FLA_Obj A) |
Variables | |
| fla_chol_t * | fla_chol_cntl |
| fla_chol_t * | fla_chol_cntl2 |
References FLA_Check_error_level(), FLA_Chol_check(), and FLA_Chol_internal().
{
FLA_Error r_val;
// Check parameters.
if ( FLA_Check_error_level() >= FLA_MIN_ERROR_CHECKING )
FLA_Chol_check( uplo, A );
// Invoke FLA_Chol_internal() with the appropriate control tree.
r_val = FLA_Chol_internal( uplo, A, fla_chol_cntl2 );
//r_val = FLA_Chol_internal( uplo, A, fla_chol_cntl );
return r_val;
}
1.7.6.1