FreeBSD Manual Pages
elpa_autotune_step(3) Library Functions Manual elpa_autotune_step(3) NAME elpa_autotune_step - does one ELPA autotuning step Before the autotuning step can be done, an instance of the ELPA autotune object has to be created, see elpa_autotune_setup(3) SYNOPSIS FORTRAN INTERFACE use elpa class(elpa_t), pointer :: elpa_handle class(elpa_autotune_t), pointer :: autotune_handle unfinished = elpa_handle%autotune_step (autotune_handle) With the definitions of the input and output variables: type(elpa_autotune_t) :: autotune_handle The ELPA autotuning object, created with elpa_autotune_setup(3) logical :: unfinished Logical, specifying whether autotuning has finished (.false.) or not (.true.) C/C++ INTERFACE #include <elpa/elpa.h> elpa_t elpa_handle; elpa_autotune_t autotune_handle; int unfinished = elpa_autotune_step (elpa_t elpa_handle, elpa_autotune_t autotune_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) elpa_autotune_t autotune_handle; The handle of the autotuning object, created with elpa_auto- tune_setup(3) int unfinished; Integer, specifying whether autotuning has finished (0) or not (1) DESCRIPTION Performs an ELPA autotuning step. Prior to calling the autotune_step, an ELPA autotune object must have been created. See elpa_autotune_setup(3) SEE ALSO elpa_autotune_setup(3) elpa_autotune_set_best(3) elpa_autotune_deallo- cate(3) ELPA Thu Nov 28 2024 elpa_autotune_step(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_step&sektion=3&manpath=FreeBSD+Ports+15.1.quarterly>
