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