libflame  revision_anchor
Functions
FLA_QR_UT_recover_tau_check.c File Reference

(r)

Functions

FLA_Error FLA_QR_UT_recover_tau_check (FLA_Obj T, FLA_Obj tau)
 

Function Documentation

◆ FLA_QR_UT_recover_tau_check()

FLA_Error FLA_QR_UT_recover_tau_check ( FLA_Obj  T,
FLA_Obj  tau 
)
14 {
15  FLA_Error e_val;
16 
17  e_val = FLA_Check_floating_object( T );
18  FLA_Check_error_code( e_val );
19 
20  e_val = FLA_Check_consistent_object_datatype( T, tau );
21  FLA_Check_error_code( e_val );
22 
23  e_val = FLA_Check_if_vector( tau );
24  FLA_Check_error_code( e_val );
25 
26  // This is not valid anymore as T is created with a conforming width to A.
27  //e_val = FLA_Check_object_width_equals( T, FLA_Obj_vector_dim( tau ) );
28  //FLA_Check_error_code( e_val );
29 
30  return FLA_SUCCESS;
31 }
FLA_Error FLA_Check_consistent_object_datatype(FLA_Obj A, FLA_Obj B)
Definition: FLA_Check.c:339
FLA_Error FLA_Check_if_vector(FLA_Obj A)
Definition: FLA_Check.c:383
FLA_Error FLA_Check_floating_object(FLA_Obj A)
Definition: FLA_Check.c:232
int FLA_Error
Definition: FLA_type_defs.h:47

References FLA_Check_consistent_object_datatype(), FLA_Check_floating_object(), and FLA_Check_if_vector().

Referenced by FLA_QR_UT_recover_tau().