FreeBSD Manual Pages
elpa_deallocate(3) Library Functions Manual elpa_deallocate(3) NAME elpa_deallocate - deallocates an instance of the ELPA library after usage SYNOPSIS FORTRAN INTERFACE use elpa class(elpa_t), pointer :: elpa_handle call elpa_deallocate (elpa_handle, error) With the definitions of the input and output variables: class(elpa_t) :: elpa_handle The pointer to the instance of the ELPA library that is to be deal- located integer, optional :: error The returned error code C/C++ INTERFACE #include <elpa/elpa.h> elpa_t elpa_handle; void elpa_deallocate(elpa_t elpa_handle, int *error); With the definitions of the input and output variables: elpa_t elpa_handle; The handle to the ELPA instance which should be deallocated. int *error; The returned error code DESCRIPTION Deallocate an ELPA object. The functions elpa_init(3) and elpa_allocate(3) must have been called BEFORE elpa_deallocate can be called. SEE ALSO elpa2_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) ELPA Thu Nov 28 2024 elpa_deallocate(3)
NAME | SYNOPSIS | DESCRIPTION | SEE ALSO
Want to link to this manual page? Use this URL:
<https://man.freebsd.org/cgi/man.cgi?query=elpa_deallocate&sektion=3&manpath=FreeBSD+Ports+15.1.quarterly>
