FreeBSD Manual Pages
elpa_init(3) Library Functions Manual elpa_init(3) NAME elpa_init - initializes the ELPA library SYNOPSIS FORTRAN INTERFACE use elpa error = elpa_init (api_version) With the definitions of the input and output variables: integer, intent(in) :: api_version The api version that you want to initialize, currently the version is 20171201 integer :: error The return code. If the function returns without an error, the error code will be ELPA_OK. C/C++ INTERFACE #include <elpa/elpa.h> int error = elpa_init (int api_version); With the definitions of the input and output variables: int api_version; The api version that you want to initialize currently the version is 20171201 int error; The return code. If the function returns without an error, the error code will be ELPA_OK. DESCRIPTION Initializes the ELPA library for usage. The return code should be ELPA_OK. The return code can be queried with the elpa_strerr(3) function. SEE ALSO elpa2_print_kernels(1) elpa_allocate(3) elpa_set(3) elpa_setup(3) elpa_str- err(3) elpa_eigenvalues(3) elpa_eigenvectors(3) elpa_choleksy(3) elpa_in- vert_triangular(3) elpa_solve_tridiagonal(3) elpa_hermitian_multiply(3) elpa_uninit(3) elpa_deallocate(3) ELPA Thu Nov 28 2024 elpa_init(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_init&sektion=3&manpath=FreeBSD+Ports+15.1.quarterly>
