FLA_Syrk_internal_check.c File Reference

(r)


Functions

FLA_Error FLA_Syrk_internal_check (FLA_Uplo uplo, FLA_Trans trans, FLA_Obj alpha, FLA_Obj A, FLA_Obj beta, FLA_Obj C, fla_syrk_t *cntl)

Function Documentation

FLA_Error FLA_Syrk_internal_check ( FLA_Uplo  uplo,
FLA_Trans  trans,
FLA_Obj  alpha,
FLA_Obj  A,
FLA_Obj  beta,
FLA_Obj  C,
fla_syrk_t cntl 
)

References FLA_Check_identical_object_elemtype(), FLA_Check_matrix_matrix_dims(), and FLA_Check_null_pointer().

Referenced by FLA_Syrk_internal().

00036 {
00037     FLA_Error e_val;
00038 
00039     // Abort if the control structure is NULL.
00040     e_val = FLA_Check_null_pointer( ( void* ) cntl );
00041     FLA_Check_error_code( e_val );
00042 
00043     // Verify that the object element types are identical.
00044     e_val = FLA_Check_identical_object_elemtype( A, C );
00045     FLA_Check_error_code( e_val );
00046 
00047     // Verify conformality between all the objects. This check works regardless
00048     // of whether the element type is FLA_MATRIX or FLA_SCALAR because the
00049     // element length and width are used instead of scalar length and width.
00050     if ( trans == FLA_NO_TRANSPOSE )
00051     {
00052         e_val = FLA_Check_matrix_matrix_dims( FLA_NO_TRANSPOSE, FLA_TRANSPOSE, A, A, C );
00053         FLA_Check_error_code( e_val );
00054     }
00055     else
00056     {
00057         e_val = FLA_Check_matrix_matrix_dims( FLA_TRANSPOSE, FLA_NO_TRANSPOSE, A, A, C );
00058         FLA_Check_error_code( e_val );
00059     }
00060 
00061     return FLA_SUCCESS;
00062 }


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