1elpa_uninit(3) Library Functions Manual elpa_uninit(3)
2
3
4
6 elpa_uninit - uninitialize the ELPA library
7
8
10 FORTRAN INTERFACE
11 use elpa
12 class(elpa_t), pointer :: elpa
13
14 call elpa_uninit (error)
15
16 With the definitions of the input and output variables:
17
18 error integer, optional error code
19
20
21 C INTERFACE
22 #include <elpa/elpa.h>
23 elpa_t handle;
24
25 void elpa_uninit (int *error);
26
27 With the definitions of the input and output variables:
28
29 int * error : the error code
30
31
33 Uninitializes the ELPA library after usage. The function elpa_init(3)
34 must have been called BEFORE elpa_uninit can be called.
35
37 elpa2_print_kernels(1) elpa_init(3) elpa_allocate(3) elpa_set(3)
38 elpa_strerr(3) elpa_eigenvalues(3) elpa_eigenvectors(3)
39 elpa_cholesky(3) elpa_invert_triangular(3) elpa_solve_tridiagonal(3)
40 elpa_hermitian_multiply(3) elpa_setup(3) elpa_deallocate(3)
41
42
43
44ELPA Sat Jun 3 2017 elpa_uninit(3)