Functions | |
FLA_Error | FLASH_Chol (FLA_Uplo uplo, FLA_Obj A) |
void FLA_F2C() | flash_chol_f (F_INT *uplo, F_INT *A, F_INT *IERROR) |
Variables | |
fla_chol_t * | flash_chol_cntl |
References FLA_Check_error_level(), FLA_Chol_check(), FLA_Chol_internal(), FLASH_Queue_begin(), and FLASH_Queue_end().
Referenced by flash_chol_f().
00038 { 00039 FLA_Error r_val; 00040 00041 // Check parameters. 00042 if ( FLA_Check_error_level() >= FLA_MIN_ERROR_CHECKING ) 00043 FLA_Chol_check( uplo, A ); 00044 00045 // Begin a parallel region. 00046 FLASH_Queue_begin(); 00047 00048 // Enqueue tasks via a SuperMatrix-aware control tree. 00049 r_val = FLA_Chol_internal( uplo, A, flash_chol_cntl ); 00050 00051 // End the parallel region. 00052 FLASH_Queue_end(); 00053 00054 return r_val; 00055 }
void FLA_F2C() flash_chol_f | ( | F_INT * | uplo, | |
F_INT * | A, | |||
F_INT * | IERROR | |||
) |
References FLASH_Chol().
00059 { 00060 *IERROR = FLASH_Chol( *( ( FLA_Uplo * ) uplo ), 00061 *( ( FLA_Obj * ) A ) ); 00062 }