Functions | |
void | FLASH_LU_nopiv_cntl_init () |
void | FLASH_LU_nopiv_cntl_finalize () |
Variables | |
fla_gemm_t * | flash_gemm_cntl_op_bp |
fla_trsm_t * | flash_trsm_cntl_bp |
fla_lu_t * | flash_lu_nopiv_cntl_lapack |
fla_lu_t * | flash_lu_nopiv_cntl |
fla_blocksize_t * | flash_lu_nopiv_bsize |
void FLASH_LU_nopiv_cntl_finalize | ( | void | ) |
References FLA_Blocksize_free(), and FLA_Cntl_obj_free().
Referenced by FLA_Cntl_finalize_flash().
00071 { 00072 FLA_Cntl_obj_free( flash_lu_nopiv_cntl_lapack ); 00073 FLA_Cntl_obj_free( flash_lu_nopiv_cntl ); 00074 00075 FLA_Blocksize_free( flash_lu_nopiv_bsize ); 00076 }
void FLASH_LU_nopiv_cntl_init | ( | void | ) |
References FLA_Blocksize_create(), and FLA_Cntl_lu_obj_create().
Referenced by FLA_Cntl_init_flash().
00043 { 00044 // Set blocksize for hierarchical storage. 00045 flash_lu_nopiv_bsize = FLA_Blocksize_create( 1, 1, 1, 1 ); 00046 00047 // Create a control tree that assumes A is a b x b block. 00048 flash_lu_nopiv_cntl_lapack = FLA_Cntl_lu_obj_create( FLA_HIER, 00049 FLA_SUBPROBLEM, 00050 NULL, 00051 NULL, 00052 NULL, 00053 NULL, 00054 NULL, 00055 NULL, 00056 NULL ); 00057 00058 // Create a control tree that assumes A is large. 00059 flash_lu_nopiv_cntl = FLA_Cntl_lu_obj_create( FLA_HIER, 00060 FLA_BLOCKED_VARIANT5, 00061 flash_lu_nopiv_bsize, 00062 flash_lu_nopiv_cntl_lapack, 00063 flash_gemm_cntl_op_bp, 00064 NULL, 00065 NULL, 00066 flash_trsm_cntl_bp, 00067 flash_trsm_cntl_bp ); 00068 }