libflame  revision_anchor
Functions
FLA_Dotc_check.c File Reference

(r)

Functions

FLA_Error FLA_Dotc_check (FLA_Conj conj, FLA_Obj x, FLA_Obj y, FLA_Obj rho)
 

Function Documentation

◆ FLA_Dotc_check()

FLA_Error FLA_Dotc_check ( FLA_Conj  conj,
FLA_Obj  x,
FLA_Obj  y,
FLA_Obj  rho 
)
14 {
15  FLA_Error e_val;
16 
17  e_val = FLA_Check_valid_conj( conj );
18  FLA_Check_error_code( e_val );
19 
20  e_val = FLA_Check_floating_object( x );
21  FLA_Check_error_code( e_val );
22 
23  e_val = FLA_Check_nonconstant_object( x );
24  FLA_Check_error_code( e_val );
25 
27  FLA_Check_error_code( e_val );
28 
30  FLA_Check_error_code( e_val );
31 
32  e_val = FLA_Check_if_vector( x );
33  FLA_Check_error_code( e_val );
34 
35  e_val = FLA_Check_if_vector( y );
36  FLA_Check_error_code( e_val );
37 
38  e_val = FLA_Check_equal_vector_dims( x, y );
39  FLA_Check_error_code( e_val );
40 
41  return FLA_SUCCESS;
42 }
FLA_Error FLA_Check_nonconstant_object(FLA_Obj A)
Definition: FLA_Check.c:954
FLA_Error FLA_Check_equal_vector_dims(FLA_Obj x, FLA_Obj y)
Definition: FLA_Check.c:477
FLA_Error FLA_Check_identical_object_datatype(FLA_Obj A, FLA_Obj B)
Definition: FLA_Check.c:967
FLA_Error FLA_Check_if_vector(FLA_Obj A)
Definition: FLA_Check.c:383
FLA_Error FLA_Check_valid_conj(FLA_Conj conj)
Definition: FLA_Check.c:112
FLA_Error FLA_Check_floating_object(FLA_Obj A)
Definition: FLA_Check.c:232
int FLA_Error
Definition: FLA_type_defs.h:47
* rho
Definition: bl1_axpyv2bdotaxpy.c:322

References FLA_Check_equal_vector_dims(), FLA_Check_floating_object(), FLA_Check_identical_object_datatype(), FLA_Check_if_vector(), FLA_Check_nonconstant_object(), FLA_Check_valid_conj(), and rho.

Referenced by FLA_Dotc_external().