libflame  12600
Functions | Variables
FLA_Copyr.c File Reference

(r12600)

Functions

FLA_Error FLA_Copyr (FLA_Uplo uplo, FLA_Obj A, FLA_Obj B)

Variables

fla_copyr_tfla_copyr_cntl_blas

Function Documentation

FLA_Error FLA_Copyr ( FLA_Uplo  uplo,
FLA_Obj  A,
FLA_Obj  B 
)

References FLA_Check_error_level(), FLA_Copyr_external(), and FLA_Copyr_internal().

Referenced by FLA_Svd_ext_u_unb_var1(), FLA_Svd_uv_unb_var1(), and FLA_Svd_uv_unb_var2().

{
  FLA_Error r_val;

#ifdef FLA_ENABLE_BLAS1_FRONT_END_CNTL_TREES
  // Check parameters.
  if ( FLA_Check_error_level() >= FLA_MIN_ERROR_CHECKING )
    FLA_Copyr_uheck( uplo, A, B );

  // Invoke FLA_Copyr_internal() with flat control tree that simply calls
  // external wrapper.
  r_val = FLA_Copyr_internal( uplo, A, B, fla_copyr_cntl_blas );

#else
  r_val = FLA_Copyr_external( uplo, A, B );
#endif

  return r_val;
}

Variable Documentation