libflame revision_anchor
Functions
FLA_Apply_Q_UT_check.c File Reference

(r)

Functions

FLA_Error FLA_Apply_Q_UT_check (FLA_Side side, FLA_Trans trans, FLA_Direct direct, FLA_Store storev, FLA_Obj A, FLA_Obj T, FLA_Obj W, FLA_Obj B)
 

Function Documentation

◆ FLA_Apply_Q_UT_check()

FLA_Error FLA_Apply_Q_UT_check ( FLA_Side  side,
FLA_Trans  trans,
FLA_Direct  direct,
FLA_Store  storev,
FLA_Obj  A,
FLA_Obj  T,
FLA_Obj  W,
FLA_Obj  B 
)
14{
16
19
22
25
28
31
34
37
40
43
44 if ( side == FLA_LEFT )
45 {
46 //e_val = FLA_Check_object_width_equals( T, FLA_Obj_width( A ) );
47 //FLA_Check_error_code( e_val );
48 //e_val = FLA_Check_object_width_equals( T, FLA_Obj_min_dim( A ) );
49 //FLA_Check_error_code( e_val );
50
51 if ( storev == FLA_COLUMNWISE )
52 {
55 }
56 else // if ( storev == FLA_ROWWISE )
57 {
60 }
61 }
62 else // if ( side == FLA_RIGHT )
63 {
64 //e_val = FLA_Check_object_width_equals( T, FLA_Obj_min_dim( A ) );
65 //FLA_Check_error_code( e_val );
66
67 if ( storev == FLA_COLUMNWISE )
68 {
71 }
72 else // if ( storev == FLA_ROWWISE )
73 {
76 }
77 }
78
79 return FLA_SUCCESS;
80}
FLA_Error FLA_Check_object_width_equals(FLA_Obj A, dim_t n)
Definition FLA_Check.c:1049
dim_t FLA_Obj_width(FLA_Obj obj)
Definition FLA_Query.c:123
FLA_Error FLA_Check_object_length_equals(FLA_Obj A, dim_t m)
Definition FLA_Check.c:1039
FLA_Error FLA_Check_valid_trans(FLA_Trans trans)
Definition FLA_Check.c:87
FLA_Error FLA_Check_valid_leftright_side(FLA_Side side)
Definition FLA_Check.c:1124
dim_t FLA_Obj_length(FLA_Obj obj)
Definition FLA_Query.c:116
FLA_Error FLA_Check_nonconstant_object(FLA_Obj A)
Definition FLA_Check.c:954
FLA_Error FLA_Check_identical_object_datatype(FLA_Obj A, FLA_Obj B)
Definition FLA_Check.c:967
FLA_Error FLA_Check_valid_direct(FLA_Conj direct)
Definition FLA_Check.c:123
FLA_Error FLA_Check_valid_storev(FLA_Conj storev)
Definition FLA_Check.c:134
FLA_Error FLA_Check_floating_object(FLA_Obj A)
Definition FLA_Check.c:232
int FLA_Error
Definition FLA_type_defs.h:47
int i
Definition bl1_axmyv2.c:145

References FLA_Check_floating_object(), FLA_Check_identical_object_datatype(), FLA_Check_nonconstant_object(), FLA_Check_object_length_equals(), FLA_Check_object_width_equals(), FLA_Check_valid_direct(), FLA_Check_valid_leftright_side(), FLA_Check_valid_storev(), FLA_Check_valid_trans(), FLA_Obj_length(), and FLA_Obj_width().

Referenced by FLA_Apply_Q_UT(), and FLASH_Apply_Q_UT().