|
libflame
12600
|
Functions | |
| void | FLA_Ttmm_cntl_init () |
| void | FLA_Ttmm_cntl_finalize () |
Variables | |
| fla_gemm_t * | fla_gemm_cntl_blas |
| fla_herk_t * | fla_herk_cntl_blas |
| fla_trmm_t * | fla_trmm_cntl_blas |
| fla_ttmm_t * | fla_ttmm_cntl_leaf |
| fla_ttmm_t * | fla_ttmm_cntl |
| fla_blocksize_t * | fla_ttmm_var1_bsize |
| void FLA_Ttmm_cntl_finalize | ( | void | ) |
References FLA_Blocksize_free(), and FLA_Cntl_obj_free().
Referenced by FLA_Cntl_finalize_flamec().
| void FLA_Ttmm_cntl_init | ( | void | ) |
References FLA_Cntl_ttmm_obj_create(), and FLA_Query_blocksizes().
Referenced by FLA_Cntl_init_flamec().
{
// Set blocksize with default value for conventional storage.
fla_ttmm_var1_bsize = FLA_Query_blocksizes( FLA_DIMENSION_MIN );
// Create a control tree to invoke LAPACK.
fla_ttmm_cntl_leaf = FLA_Cntl_ttmm_obj_create( FLA_FLAT,
#ifdef FLA_ENABLE_EXTERNAL_LAPACK_FOR_SUBPROBLEMS
FLA_BLOCKED_EXTERN,
#else
FLA_UNB_OPT_VARIANT2,
#endif
NULL,
NULL,
NULL,
NULL,
NULL );
// Create a control tree to invoke variant 1.
fla_ttmm_cntl = FLA_Cntl_ttmm_obj_create( FLA_FLAT,
FLA_BLOCKED_VARIANT1,
fla_ttmm_var1_bsize,
fla_ttmm_cntl_leaf,
fla_herk_cntl_blas,
fla_trmm_cntl_blas,
fla_gemm_cntl_blas );
}
Referenced by FLA_Ttmm_internal().
1.7.6.1