FLA_Sylv_check.c File Reference

(r)


Functions

FLA_Error FLA_Sylv_check (FLA_Trans transa, FLA_Trans transb, FLA_Obj isgn, FLA_Obj A, FLA_Obj B, FLA_Obj C, FLA_Obj scale)

Function Documentation

FLA_Error FLA_Sylv_check ( FLA_Trans  transa,
FLA_Trans  transb,
FLA_Obj  isgn,
FLA_Obj  A,
FLA_Obj  B,
FLA_Obj  C,
FLA_Obj  scale 
)

References FLA_Check_floating_object(), FLA_Check_identical_object_datatype(), FLA_Check_identical_object_precision(), FLA_Check_if_scalar(), FLA_Check_int_object(), FLA_Check_nonconstant_object(), FLA_Check_square(), FLA_Check_sylv_matrix_dims(), FLA_Check_valid_blas_trans(), and FLA_Check_valid_isgn_value().

Referenced by FLA_Sylv(), FLA_Sylv_unb_external(), and FLASH_Sylv().

00036 {
00037   FLA_Error e_val;
00038 
00039   e_val = FLA_Check_valid_blas_trans( transa );
00040   FLA_Check_error_code( e_val );
00041 
00042   e_val = FLA_Check_valid_blas_trans( transb );
00043   FLA_Check_error_code( e_val );
00044 
00045   e_val = FLA_Check_if_scalar( isgn );
00046   FLA_Check_error_code( e_val );
00047 
00048   e_val = FLA_Check_int_object( isgn );
00049   FLA_Check_error_code( e_val );
00050 
00051   e_val = FLA_Check_valid_isgn_value( isgn );
00052   FLA_Check_error_code( e_val );
00053 
00054   e_val = FLA_Check_floating_object( A );
00055   FLA_Check_error_code( e_val );
00056 
00057   e_val = FLA_Check_nonconstant_object( A );
00058   FLA_Check_error_code( e_val );
00059 
00060   e_val = FLA_Check_identical_object_datatype( A, B );
00061   FLA_Check_error_code( e_val );
00062 
00063   e_val = FLA_Check_identical_object_datatype( A, C );
00064   FLA_Check_error_code( e_val );
00065 
00066   e_val = FLA_Check_square( A );
00067   FLA_Check_error_code( e_val );
00068   
00069   e_val = FLA_Check_square( B );
00070   FLA_Check_error_code( e_val );
00071   
00072   e_val = FLA_Check_sylv_matrix_dims( A, B, C );
00073   FLA_Check_error_code( e_val );
00074 
00075   e_val = FLA_Check_if_scalar( scale );
00076   FLA_Check_error_code( e_val );
00077   
00078   e_val = FLA_Check_identical_object_precision( C, scale );
00079   FLA_Check_error_code( e_val );
00080   
00081   return FLA_SUCCESS;
00082 }


Generated on Mon Jul 6 05:45:51 2009 for libflame by  doxygen 1.5.9