libflame  revision_anchor
Functions
FLA_Axpys_check.c File Reference

(r)

Functions

FLA_Error FLA_Axpys_check (FLA_Obj alpha0, FLA_Obj alpha1, FLA_Obj A, FLA_Obj beta, FLA_Obj B)
 

Function Documentation

◆ FLA_Axpys_check()

FLA_Error FLA_Axpys_check ( FLA_Obj  alpha0,
FLA_Obj  alpha1,
FLA_Obj  A,
FLA_Obj  beta,
FLA_Obj  B 
)
14 {
15  FLA_Error e_val;
16 
17  e_val = FLA_Check_floating_object( A );
18  FLA_Check_error_code( e_val );
19 
20  e_val = FLA_Check_nonconstant_object( A );
21  FLA_Check_error_code( e_val );
22 
24  FLA_Check_error_code( e_val );
25 
26  e_val = FLA_Check_consistent_object_datatype( A, alpha0 );
27  FLA_Check_error_code( e_val );
28 
30  FLA_Check_error_code( e_val );
31 
32  e_val = FLA_Check_consistent_object_datatype( A, beta );
33  FLA_Check_error_code( e_val );
34 
35  e_val = FLA_Check_if_scalar( alpha0 );
36  FLA_Check_error_code( e_val );
37 
38  e_val = FLA_Check_if_scalar( alpha1 );
39  FLA_Check_error_code( e_val );
40 
41  e_val = FLA_Check_if_scalar( beta );
42  FLA_Check_error_code( e_val );
43 
44  e_val = FLA_Check_conformal_dims( FLA_NO_TRANSPOSE, A, B );
45  FLA_Check_error_code( e_val );
46 
47  return FLA_SUCCESS;
48 }
FLA_Error FLA_Check_if_scalar(FLA_Obj A)
Definition: FLA_Check.c:373
FLA_Error FLA_Check_conformal_dims(FLA_Trans trans, FLA_Obj A, FLA_Obj B)
Definition: FLA_Check.c:393
FLA_Error FLA_Check_consistent_object_datatype(FLA_Obj A, FLA_Obj B)
Definition: FLA_Check.c:339
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_floating_object(FLA_Obj A)
Definition: FLA_Check.c:232
int FLA_Error
Definition: FLA_type_defs.h:47
double *restrict alpha1
Definition: bl1_axpyv2bdotaxpy.c:198

References alpha1, FLA_Check_conformal_dims(), FLA_Check_consistent_object_datatype(), FLA_Check_floating_object(), FLA_Check_identical_object_datatype(), FLA_Check_if_scalar(), and FLA_Check_nonconstant_object().

Referenced by FLA_Axpys_external().