Skip site navigation (1)Skip section navigation (2)

FreeBSD Manual Pages

  
 
  

home | help
elpa_setup(3)		    Library Functions Manual		   elpa_setup(3)

NAME
     elpa_setup - setup an instance of the ELPA library

SYNOPSIS
   FORTRAN INTERFACE
     use elpa
     class(elpa_t), pointer :: elpa_handle

     status = elpa_handle%setup()

     With the definitions of the input and output variables:

     class(elpa_t) :: elpa_handle
	    An instance of the ELPA object.

     integer :: status
	    The  returned error code. Should normally be ELPA_OK. Can be queried
	    with elpa_strerr(3)

   C/C++ INTERFACE
     #include <elpa/elpa.h>
     elpa_t elpa_handle;

     int status = elpa_setup (elpa_t elpa_handle);

     With the definitions of the input and output variables:

     elpa_t  elpa_handle;
	    The handle of an ELPA object, obtained before with elpa_allocate(3)

     int  status;
	    The returned error code. Should normally be ELPA_OK. Can be  queried
	    with elpa_strerr(3)

DESCRIPTION
     Finalizes	setting  of  the mandatory parameters and setups an ELPA object.
     Prior to calling  the setup, the functions  elpa_init(3),	elpa_allocate(3)
     must  have been called and the mandatory parameters must have been set with
     elpa_set(3).

SEE ALSO
     elpa2_print_kernels(1) elpa_init(3) elpa_allocate(3) elpa_set(3)  elpa_str-
     err(3)  elpa_eigenvalues(3)  elpa_eigenvectors(3) elpa_cholesky(3) elpa_in-
     vert_triangular(3)   elpa_solve_tridiagonal(3)   elpa_hermitian_multiply(3)
     elpa_deallocate(3) elpa_uninit(3)

ELPA				 Wed Mar 13 2024		   elpa_setup(3)

Want to link to this manual page? Use this URL:
<https://man.freebsd.org/cgi/man.cgi?query=elpa_setup&sektion=3&manpath=FreeBSD+Ports+15.1.quarterly>

home | help