FreeBSD Manual Pages
elpa_autot...deallocate(3) Library Functions Manual elpa_autot...deallocate(3) NAME elpa_autotune_deallocate - Deallocates an ELPA autotuning instance SYNOPSIS FORTRAN INTERFACE use elpa class(elpa_t), pointer :: elpa class(elpa_autotune_t), pointer :: tune_state callelpa%autotune_deallocate (tune_state, error) With the definitions of the input and output variables: type(elpa_autotune_t) :: tune_state ! the ELPA autotuning object, created with elpa_autotune_setup(3) integer, optional :: error ! the returned error code C INTERFACE #include <elpa/elpa.h> elpa_t handle; elpa_autotune_t autotune_handle; void elpa_autotune_deallocate (elpa_t handle, elpa_autotune_t autotune_handle, int *error); With the definitions of the input and output variables: elpa_t handle; // the handle of an ELPA object, obtained before with elpa_allocate(3) elpa_autotune_t autotune_handle; // the handle of an ELPA object, obtained before with elpa_autotune_setup(3) int *error; // the returned error code DESCRIPTION Deallocates an ELPA autotuning instance. Prior to calling the elpa_autotune_deallocate method, an ELPA autotuning object must have been created. See elpa_autotune_setup(3) SEE ALSO elpa_autotune_step(3) elpa_autotune_setup(3) elpa_autotune_deallocate(3) ELPA Tue Nov 28 2017 elpa_autot...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_autotune_deallocate&sektion=3&manpath=FreeBSD+Ports+14.3.quarterly>
