Skip site navigation (1)Skip section navigation (2)

FreeBSD Manual Pages

  
 
  

home | help
elpa_autotune_set_best(3)  Library Functions Manual  elpa_autotune_set_best(3)

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)

ELPA				Tue Nov	28 2017	     elpa_autotune_set_best(3)

Want to link to this manual page? Use this URL:
<https://man.freebsd.org/cgi/man.cgi?query=elpa_autotune_set_best&sektion=3&manpath=FreeBSD+Ports+14.3.quarterly>

home | help