elpa_allocate - Man Page

allocate an instance of the ELPA library

Synopsis

Fortran Interface

use elpa
class(elpa_t), pointer :: elpa

elpa => elpa_allocate (error)

With the definitions of the input and output variables:

class(elpa_t)     :: elpa  ! returns an instance of the ELPA object
integer, optional :: error ! a returned error code

C Interface

#include <elpa/elpa.h>
elpa_t handle;

elpa_t handle = elpa_allocate(int *error);

With the definitions of the input and output variables:

elpa_t handle;  // returns an handle to the allocated ELPA object
int *error;     // a returned error code

Description

Allocate an ELPA object. The function elpa_init(3) must be called once BEFORE elpa_allocate can be called.

See Also

elpa2_print_kernels(1) elpa_init(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) elpa_deallocate(3)

Referenced By

elpa2_print_kernels(1), elpa_autotune_deallocate(3), elpa_autotune_set_best(3), elpa_autotune_setup(3), elpa_autotune_step(3), elpa_cholesky(3), elpa_deallocate(3), elpa_eigenvalues(3), elpa_eigenvalues_double(3), elpa_eigenvalues_double_complex(3), elpa_eigenvalues_float(3), elpa_eigenvalues_float_complex(3), elpa_eigenvectors(3), elpa_eigenvectors_double(3), elpa_eigenvectors_double_complex(3), elpa_eigenvectors_float(3), elpa_eigenvectors_float_complex(3), elpa_generalized_eigenvalues(3), elpa_generalized_eigenvectors(3), elpa_hermitian_multiply(3), elpa_init(3), elpa_invert_triangular(3), elpa_set(3), elpa_setup(3), elpa_skew_eigenvalues(3), elpa_skew_eigenvectors(3), elpa_solve_tridiagonal(3), elpa_uninit(3).

Sat Jun 3 2017 ELPA