1elpa_allocate(3) Library Functions Manual elpa_allocate(3)
2
3
4
6 elpa_allocate - allocate an instance of the ELPA library
7
8
10 FORTRAN INTERFACE
11 use elpa
12 class(elpa_t), pointer :: elpa
13
14 elpa => elpa_allocate (error)
15
16 With the definitions of the input and output variables:
17
18 class(elpa_t) :: elpa ! returns an instance of the ELPA object
19 integer, optional :: error ! a returned error code
20
21 C INTERFACE
22 #include <elpa/elpa.h>
23 elpa_t handle;
24
25 elpa_t handle = elpa_allocate(int *error);
26
27 With the definitions of the input and output variables:
28
29 elpa_t handle; // returns an handle to the allocated ELPA object
30 int *error; // a returned error code
31
32
33
35 Allocate an ELPA object. The function elpa_init(3) must be called once
36 BEFORE elpa_allocate can be called.
37
39 elpa2_print_kernels(1) elpa_init(3) elpa_set(3) elpa_setup(3)
40 elpa_strerr(3) elpa_eigenvalues(3) elpa_eigenvectors(3)
41 elpa_cholesky(3) elpa_invert_triangular(3) elpa_solve_tridiagonal(3)
42 elpa_hermitian_multiply(3) elpa_uninit(3) elpa_deallocate(3)
43
44
45
46ELPA Sat Jun 3 2017 elpa_allocate(3)