| 
    libflame
    12600
    
   
   | 
  
  
  
 
Functions | |
| void | FLASH_Lyap_cntl_init () | 
| void | FLASH_Lyap_cntl_finalize () | 
Variables | |
| fla_scal_t * | flash_scal_cntl | 
| fla_gemm_t * | flash_gemm_cntl_pm | 
| fla_hemm_t * | flash_hemm_cntl_mp | 
| fla_her2k_t * | flash_her2k_cntl_ip | 
| fla_sylv_t * | flash_sylv_cntl | 
| fla_lyap_t * | flash_lyap_cntl_leaf | 
| fla_lyap_t * | flash_lyap_cntl | 
| fla_blocksize_t * | flash_lyap_bsize | 
| void FLASH_Lyap_cntl_finalize | ( | void | ) | 
References FLA_Blocksize_free(), and FLA_Cntl_obj_free().
Referenced by FLA_Cntl_finalize_flash().
| void FLASH_Lyap_cntl_init | ( | void | ) | 
References FLA_Blocksize_create(), and FLA_Cntl_lyap_obj_create().
Referenced by FLA_Cntl_init_flash().
{
    // Set blocksize for hierarchical storage.
    flash_lyap_bsize       = FLA_Blocksize_create( 1, 1, 1, 1 );
    // Create a control tree that assumes A and C are b x b blocks.
    flash_lyap_cntl_leaf   = FLA_Cntl_lyap_obj_create( FLA_HIER,
                                                       FLA_SUBPROBLEM,
                                                       NULL,
                                                       NULL,
                                                       NULL,
                                                       NULL,
                                                       NULL,
                                                       NULL,
                                                       NULL,
                                                       NULL );
    // Create a control tree that assumes A is a matrix and C is a matrix.
    flash_lyap_cntl        = FLA_Cntl_lyap_obj_create( FLA_HIER, 
                                                       FLA_BLOCKED_VARIANT1,
                                                       flash_lyap_bsize,
                                                       flash_scal_cntl,
                                                       flash_lyap_cntl_leaf,
                                                       flash_sylv_cntl,
                                                       NULL, //flash_gemm_cntl_pm,
                                                       NULL, //flash_gemm_cntl_pm,
                                                       flash_hemm_cntl_mp,
                                                       flash_her2k_cntl_ip );
}
 1.7.6.1