Functions | |
FLA_Error | FLA_Apply_househ2_UT_check (FLA_Obj tau, FLA_Obj u2, FLA_Obj a1t, FLA_Obj A2) |
References FLA_Check_floating_object(), FLA_Check_identical_object_datatype(), FLA_Check_if_scalar(), FLA_Check_if_vector(), FLA_Check_matrix_vector_dims(), and FLA_Check_nonconstant_object().
Referenced by FLA_Apply_househ2_UT(), and FLA_Apply_househ2_UT_opt().
00036 { 00037 FLA_Error e_val; 00038 00039 e_val = FLA_Check_floating_object( tau ); 00040 FLA_Check_error_code( e_val ); 00041 00042 e_val = FLA_Check_nonconstant_object( tau ); 00043 FLA_Check_error_code( e_val ); 00044 00045 e_val = FLA_Check_identical_object_datatype( tau, u2 ); 00046 FLA_Check_error_code( e_val ); 00047 00048 e_val = FLA_Check_identical_object_datatype( tau, a1t ); 00049 FLA_Check_error_code( e_val ); 00050 00051 e_val = FLA_Check_identical_object_datatype( tau, A2 ); 00052 FLA_Check_error_code( e_val ); 00053 00054 e_val = FLA_Check_if_scalar( tau ); 00055 FLA_Check_error_code( e_val ); 00056 00057 e_val = FLA_Check_if_vector( u2 ); 00058 FLA_Check_error_code( e_val ); 00059 00060 e_val = FLA_Check_if_vector( a1t ); 00061 FLA_Check_error_code( e_val ); 00062 00063 e_val = FLA_Check_matrix_vector_dims( FLA_TRANSPOSE, A2, u2, a1t ); 00064 FLA_Check_error_code( e_val ); 00065 00066 return FLA_SUCCESS; 00067 }