elpa_autotune_set_best - Man Page
Name
elpa_autotune_set_best — Sets the tunable parameters to the up-to-now best solution
Before the autotuning options can be set, an autotuning step has to be done elpa_autotune_step(3)
Synopsis
Fortran Interface
use elpa
class(elpa_t), pointer :: elpa class(elpa_autotune_t), pointer :: tune_state
callelpa%autotune_set_best (tune_state)
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)
C Interface
#include <elpa/elpa.h>
elpa_t handle; elpa_autotune_t autotune_handle;
void elpa_autotune_set_best (elpa_t handle, elpa_autotune_t autotune_handle);
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)
Description
Sets the up-to-now best options for ELPA tunable parameters. Prior to calling the elpa_autotune_set_best method, an ELPA autotuning step must have been performed. See elpa_autotune_set_best(3)
See Also
elpa_autotune_step(3) elpa_autotune_setup(3) elpa_autotune_deallocate(3)
Referenced By
elpa_autotune_setup(3), elpa_autotune_step(3).