FLASH_Trinv.c File Reference

(r)


Functions

FLA_Error FLASH_Trinv (FLA_Uplo uplo, FLA_Diag diag, FLA_Obj A)
void FLA_F2C() flash_trinv_f (F_INT *uplo, F_INT *diag, F_INT *A, F_INT *IERROR)

Variables

fla_trinv_tflash_trinv_cntl

Function Documentation

FLA_Error FLASH_Trinv ( FLA_Uplo  uplo,
FLA_Diag  diag,
FLA_Obj  A 
)

References FLA_Check_error_level(), FLA_Trinv_check(), FLA_Trinv_internal(), FLASH_Queue_begin(), and FLASH_Queue_end().

Referenced by flash_trinv_f().

00038 {
00039   FLA_Error r_val;
00040 
00041   // Check parameters.
00042   if ( FLA_Check_error_level() >= FLA_MIN_ERROR_CHECKING )
00043     FLA_Trinv_check( uplo, diag, 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_Trinv_internal( uplo, diag, A, flash_trinv_cntl );
00050   
00051   // End the parallel region.
00052   FLASH_Queue_end();
00053 
00054   return r_val;
00055 }

void FLA_F2C() flash_trinv_f ( F_INT *  uplo,
F_INT *  diag,
F_INT *  A,
F_INT *  IERROR 
)

References FLASH_Trinv().

00059 {
00060   *IERROR = FLASH_Trinv( *( ( FLA_Uplo * ) uplo ), 
00061                          *( ( FLA_Diag * ) diag ), 
00062                          *( ( FLA_Obj  * ) A    ) );
00063 }


Variable Documentation


Generated on Mon Jul 6 05:45:56 2009 for libflame by  doxygen 1.5.9