libflame  revision_anchor
Functions
FLA_Hevdd_check.c File Reference

(r)

Functions

FLA_Error FLA_Hevdd_check (FLA_Evd_type jobz, FLA_Uplo uplo, FLA_Obj A, FLA_Obj e)
 

Function Documentation

◆ FLA_Hevdd_check()

FLA_Error FLA_Hevdd_check ( FLA_Evd_type  jobz,
FLA_Uplo  uplo,
FLA_Obj  A,
FLA_Obj  e 
)
14 {
15  FLA_Error e_val;
16 
17  e_val = FLA_Check_valid_evd_type( jobz );
18  FLA_Check_error_code( e_val );
19 
20  e_val = FLA_Check_valid_uplo( uplo );
21  FLA_Check_error_code( e_val );
22 
23  e_val = FLA_Check_floating_object( A );
24  FLA_Check_error_code( e_val );
25 
26  e_val = FLA_Check_nonconstant_object( A );
27  FLA_Check_error_code( e_val );
28 
29  e_val = FLA_Check_real_object( e );
30  FLA_Check_error_code( e_val );
31 
33  FLA_Check_error_code( e_val );
34 
35  e_val = FLA_Check_square( A );
36  FLA_Check_error_code( e_val );
37 
38  e_val = FLA_Check_vector_dim( e, FLA_Obj_length( A ) );
39  FLA_Check_error_code( e_val );
40 
41  e_val = FLA_Check_col_storage( e );
42  FLA_Check_error_code( e_val );
43 
44  return FLA_SUCCESS;
45 }
FLA_Error FLA_Check_square(FLA_Obj A)
Definition: FLA_Check.c:363
FLA_Error FLA_Check_real_object(FLA_Obj A)
Definition: FLA_Check.c:258
FLA_Error FLA_Check_identical_object_precision(FLA_Obj A, FLA_Obj B)
Definition: FLA_Check.c:298
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_vector_dim(FLA_Obj x, dim_t expected_length)
Definition: FLA_Check.c:1213
FLA_Error FLA_Check_valid_evd_type(FLA_Evd_type evd_type)
Definition: FLA_Check.c:1243
FLA_Error FLA_Check_col_storage(FLA_Obj A)
Definition: FLA_Check.c:1325
FLA_Error FLA_Check_valid_uplo(FLA_Uplo uplo)
Definition: FLA_Check.c:76
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_col_storage(), FLA_Check_floating_object(), FLA_Check_identical_object_precision(), FLA_Check_nonconstant_object(), FLA_Check_real_object(), FLA_Check_square(), FLA_Check_valid_evd_type(), FLA_Check_valid_uplo(), FLA_Check_vector_dim(), and FLA_Obj_length().

Referenced by FLA_Hevdd_external().