libflame revision_anchor
Functions
FLA_Trsm_llh_unb_var3.c File Reference

(r)

Functions

FLA_Error FLA_Trsm_llh_unb_var3 (FLA_Diag diagA, FLA_Obj alpha, FLA_Obj A, FLA_Obj B)
 

Function Documentation

◆ FLA_Trsm_llh_unb_var3()

FLA_Error FLA_Trsm_llh_unb_var3 ( FLA_Diag  diagA,
FLA_Obj  alpha,
FLA_Obj  A,
FLA_Obj  B 
)
16{
17 FLA_Obj BL, BR, B0, b1, B2;
18
20
21 FLA_Part_1x2( B, &BL, &BR, 0, FLA_LEFT );
22
23 while ( FLA_Obj_width( BL ) < FLA_Obj_width( B ) ){
24
25 FLA_Repart_1x2_to_1x3( BL, /**/ BR, &B0, /**/ &b1, &B2,
26 1, FLA_RIGHT );
27
28 /*------------------------------------------------------------*/
29
30 /* b1 = tril( A' ) \ b1; */
32
33 /*------------------------------------------------------------*/
34
35 FLA_Cont_with_1x3_to_1x2( &BL, /**/ &BR, B0, b1, /**/ B2,
36 FLA_LEFT );
37
38 }
39
40 return FLA_SUCCESS;
41}
FLA_Error FLA_Scal_external(FLA_Obj alpha, FLA_Obj A)
Definition FLA_Scal_external.c:13
FLA_Error FLA_Trsv_external(FLA_Uplo uplo, FLA_Trans transa, FLA_Diag diag, FLA_Obj A, FLA_Obj x)
Definition FLA_Trsv_external.c:13
FLA_Error FLA_Cont_with_1x3_to_1x2(FLA_Obj *AL, FLA_Obj *AR, FLA_Obj A0, FLA_Obj A1, FLA_Obj A2, FLA_Side side)
Definition FLA_View.c:475
dim_t FLA_Obj_width(FLA_Obj obj)
Definition FLA_Query.c:123
FLA_Error FLA_Part_1x2(FLA_Obj A, FLA_Obj *A1, FLA_Obj *A2, dim_t nb, FLA_Side side)
Definition FLA_View.c:110
FLA_Error FLA_Repart_1x2_to_1x3(FLA_Obj AL, FLA_Obj AR, FLA_Obj *A0, FLA_Obj *A1, FLA_Obj *A2, dim_t nb, FLA_Side side)
Definition FLA_View.c:267
int i
Definition bl1_axmyv2.c:145
Definition FLA_type_defs.h:159

References FLA_Cont_with_1x3_to_1x2(), FLA_Obj_width(), FLA_Part_1x2(), FLA_Repart_1x2_to_1x3(), FLA_Scal_external(), FLA_Trsv_external(), and i.

Referenced by FLA_Trsm_llh().