|
NAMEelpa_init - initialize the ELPA library SYNOPSISFORTRAN INTERFACEuse elpa
error = elpa_init (api_version)
integer, intent(in) :: api_version ! the api version that
you want to initialize, currently the version is 20171201
C INTERFACE#include <elpa/elpa.h>
int error = elpa_init (int api_version);
int api_version; // the api version that you want to
initialize currently the version is 20171201
DESCRIPTIONInitializes the ELPA library for usage. The return code shold be ELPA_OK. The return code can be querried with the elpa_strerr(3) function. SEE ALSOelpa2_print_kernels(1) elpa_allocate(3) elpa_set(3) elpa_setup(3) elpa_strerr(3) elpa_eigenvalues(3) elpa_eigenvectors(3) elpa_choleksy(3) elpa_invert_triangular(3) elpa_solve_tridiagonal(3) elpa_hermitian_multiply(3) elpa_uninit(3) elpa_deallocate(3)
|