|
NAMEelpa_autotune_setup - create an instance for autotuning of the ELPA library Before the autotuning object can be created, an instance of the ELPA library has to be setup, see e.g. elpa_setup(3) SYNOPSISFORTRAN INTERFACEuse elpa
tune_state= elpa%autotune_setup (level, domain)
integer :: level ! the level of the autotuning, at the
moment ELPA_AUTOTUNE_FAST is supported
C INTERFACE#include <elpa/elpa.h>
elpa_autotune_t autotune_handle =
elpa_autotune_setup (elpa_t handle, int level, int domain);
elpa_t handle; // the handle of an ELPA object, obtained
before with elpa_allocate(3)
DESCRIPTIONCreates an ELPA autotuning object. Prior to calling the autotune_setup, an ELPA object must have been created. See elpa_setup(3) SEE ALSOelpa_autotune_step(3) elpa_autotune_set_best(3) elpa_autotune_deallocate(3)
|