libflame
revision_anchor
|
Functions | |
FLA_Error | FLASH_LU_incpiv_noopt (FLA_Obj A, FLA_Obj p, FLA_Obj L) |
Variables | |
fla_lu_t * | flash_lu_incpiv_cntl |
FLA_Error FLASH_LU_incpiv_noopt | ( | FLA_Obj | A, |
FLA_Obj | p, | ||
FLA_Obj | L | ||
) |
References FLASH_LU_incpiv_var1(), FLASH_Obj_scalar_width_tl(), FLASH_Queue_begin(), and FLASH_Queue_end().
Referenced by FLASH_LU_incpiv().
{ dim_t nb_alg; FLA_Error r_val; // Inspect the width of a the top-left element of L to get the algorithmic // blocksize we'll use throughout the LU_incpiv algorithm. nb_alg = FLASH_Obj_scalar_width_tl( L ); // Begin a parallel region. FLASH_Queue_begin(); // Enqueue tasks via a SuperMatrix-aware control tree. r_val = FLASH_LU_incpiv_var1( A, p, L, nb_alg, flash_lu_incpiv_cntl ); // End the parallel region. FLASH_Queue_end(); return r_val; }