|
libflame
revision_anchor
|
Functions | |
| FLA_Error | FLA_Apply_Q_UT (FLA_Side side, FLA_Trans trans, FLA_Direct direct, FLA_Store storev, FLA_Obj A, FLA_Obj T, FLA_Obj W, FLA_Obj B) |
Variables | |
| fla_apqut_t * | fla_apqut_cntl_leaf |
| fla_apqut_t * | fla_apqut_cntl |
| FLA_Error FLA_Apply_Q_UT | ( | FLA_Side | side, |
| FLA_Trans | trans, | ||
| FLA_Direct | direct, | ||
| FLA_Store | storev, | ||
| FLA_Obj | A, | ||
| FLA_Obj | T, | ||
| FLA_Obj | W, | ||
| FLA_Obj | B | ||
| ) |
References FLA_Apply_Q_UT_check(), FLA_Apply_Q_UT_internal(), and FLA_Check_error_level().
Referenced by FLA_Hess_UT_blk_var5(), FLA_LQ_UT_form_Q_blk_var1(), FLA_LQ_UT_solve(), FLA_QR_UT_form_Q_blk_var1(), and FLA_QR_UT_solve().
{
FLA_Error r_val;
// Check parameters.
if ( FLA_Check_error_level() >= FLA_MIN_ERROR_CHECKING )
FLA_Apply_Q_UT_check( side, trans, direct, storev, A, T, W, B );
// Invoke FLA_Apply_Q_UT_internal() with the standard control tree.
r_val = FLA_Apply_Q_UT_internal( side, trans, direct, storev, A, T, W, B, fla_apqut_cntl_leaf );
return r_val;
}
1.7.6.1