| 
    libflame
    12600
    
   
   | 
  
  
  
 
Functions | |
| void | FLASH_LU_incpiv_cntl_init () | 
| void | FLASH_LU_incpiv_cntl_finalize () | 
Variables | |
| fla_gemm_t * | flash_gemm_cntl_bp_bb | 
| fla_trsm_t * | flash_trsm_cntl_bp | 
| fla_appiv_t * | flash_appiv_cntl_bp | 
| fla_lu_t * | flash_lu_incpiv_cntl_leaf | 
| fla_lu_t * | flash_lu_incpiv_cntl | 
| fla_blocksize_t * | flash_lu_incpiv_bsize | 
| void FLASH_LU_incpiv_cntl_finalize | ( | void | ) | 
References FLA_Blocksize_free(), and FLA_Cntl_obj_free().
Referenced by FLA_Cntl_finalize_flash().
| void FLASH_LU_incpiv_cntl_init | ( | void | ) | 
References FLA_Blocksize_create(), and FLA_Cntl_lu_obj_create().
Referenced by FLA_Cntl_init_flash().
{
    // Set blocksize for hierarchical storage.
    flash_lu_incpiv_bsize       = FLA_Blocksize_create( 1, 1, 1, 1 );
    // Create a control tree that assumes A is a b x b block.
    flash_lu_incpiv_cntl_leaf   = FLA_Cntl_lu_obj_create( FLA_HIER,
                                                          FLA_SUBPROBLEM,
                                                          NULL,
                                                          NULL,
                                                          NULL,
                                                          NULL,
                                                          NULL,
                                                          NULL,
                                                          NULL,
                                                          NULL,
                                                          NULL );
    // Create a control tree that assumes A is large.
    flash_lu_incpiv_cntl        = FLA_Cntl_lu_obj_create( FLA_HIER,
                                                          FLA_BLOCKED_VARIANT1,
                                                          flash_lu_incpiv_bsize,
                                                          flash_lu_incpiv_cntl_leaf,
                                                          flash_gemm_cntl_bp_bb,
                                                          NULL,
                                                          NULL,
                                                          flash_trsm_cntl_bp,
                                                          flash_trsm_cntl_bp,
                                                          flash_appiv_cntl_bp,
                                                          NULL );
}
Referenced by FLASH_Gemm_cntl_init().
 1.7.6.1