|
NAMEelpa_deallocate - deallocate an instance of the ELPA library after usage SYNOPSISFORTRAN INTERFACEuse elpa
call elpa_deallocate (class(elpa_t) elpa,
integer error)
class(elpa_t) :: elpa ! the pointer to the instance of the
ELPA library which should be deallocated
C INTERFACE#include <elpa/elpa.h>
void elpa_deallocate(elpa_t handle,
int *error^);
elpa_t handle; // the handle to the ELPA instance which
should be deallocated.
DESCRIPTIONDeallocate an ELPA object. The functions elpa_init(3) and elpa_allocate(3) must have been called BEFORE elpa_deallocate can be called. SEE ALSOelpa2_print_kernels(1) elpa_init(3) elpa_allocate(3) elpa_set(3) elpa_setup(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_uninit(3)
|