|
NAMEelpa_autotune_step - do 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) SYNOPSISFORTRAN INTERFACEuse elpa
unfinished = elpa%autotune_step (tune_state)
type(elpa_autotune_t) :: tune_state ! the ELPA autotuning
object, created with elpa_autotune_setup(3)
C INTERFACE#include <elpa/elpa.h>
int unfinished = elpa_autotune_step (elpa_t
handle, elpa_autotune_t autotune_handle);
elpa_t handle; // the handle of an ELPA object, obtained
before with elpa_allocate(3)
DESCRIPTIONDoes an ELPA autotuning step. Prior to calling the autotune_step, an ELPA autotune object must have been created. See elpa_autotune_setup(3) SEE ALSOelpa_autotune_setup(3) elpa_autotune_set_best(3) elpa_autotune_deallocate(3)
|