Functions | |
FLA_Error | FLA_Chol (FLA_Uplo uplo, FLA_Obj A) |
void FLA_F2C() | fla_chol_f (F_INT *uplo, F_INT *A, F_INT *IERROR) |
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().
Referenced by fla_chol_f().
00039 { 00040 FLA_Error r_val; 00041 00042 // Check parameters. 00043 if ( FLA_Check_error_level() >= FLA_MIN_ERROR_CHECKING ) 00044 FLA_Chol_check( uplo, A ); 00045 00046 // Invoke FLA_Chol_internal() with the appropriate control tree. 00047 r_val = FLA_Chol_internal( uplo, A, fla_chol_cntl2 ); 00048 00049 return r_val; 00050 }
void FLA_F2C() fla_chol_f | ( | F_INT * | uplo, | |
F_INT * | A, | |||
F_INT * | IERROR | |||
) |