libflame revision_anchor
Functions
FLA_Hevd.h File Reference

(r)

Go to the source code of this file.

Functions

FLA_Error FLA_Hevd (FLA_Evd_type jobz, FLA_Uplo uplo, FLA_Obj A, FLA_Obj e)

Function Documentation

FLA_Error FLA_Hevd ( FLA_Evd_type  jobz,
FLA_Uplo  uplo,
FLA_Obj  A,
FLA_Obj  e 
)

References FLA_Check_error_level(), FLA_Hevd_check(), and FLA_Hevd_external().

{
  FLA_Error r_val;

  // Check parameters.
  if ( FLA_Check_error_level() >= FLA_MIN_ERROR_CHECKING )
    FLA_Hevd_check( jobz, uplo, A, e );

  // Invoke FLA_Hevd_external() for now.
  r_val = FLA_Hevd_external( jobz, uplo, A, e );

  return r_val;
}