|
NAMEelpa_setup - setup an instance of the ELPA library SYNOPSISFORTRAN INTERFACEuse elpa
success= elpa%setup ()
integer :: succes ! the returned error code. Should normally be ELPA_OK. Can be querried with elpa_strerr(3) C INTERFACE#include <elpa/elpa.h>
int success = elpa_setup (elpa_t handle);
elpa_t handle; // the handle of an ELPA object, obtained
before with elpa_allocate(3)
DESCRIPTIONSetups an ELPA object. Prior to calling the setup, the functions elpa_init(3), elpa_allocate(3) must have been called and some parameters must have been set with elpa_set(3). SEE ALSOelpa2_print_kernels(1) elpa_init(3) elpa_allocate(3) elpa_set(3) elpa_strerr(3) elpa_eigenvalues(3) elpa_eigenvectors(3) elpa_cholesky(3) elpa_invert_triangular(3) elpa_solve_tridiagonal(3) elpa_hermitian_multiply(3) elpa_deallocate(3) elpa_uninit(3)
|