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_handle
     class(elpa_autotune_t), pointer :: autotune_handle

     call elpa_handle%autotune_set_best (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)

   C/C++ INTERFACE
     #include <elpa/elpa.h>
     elpa_t elpa_handle;
     elpa_autotune_t autotune_handle;

     void  elpa_autotune_set_best  (elpa_t  elpa_handle,  elpa_autotune_t  auto-
     tune_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  an  ELPA  object,	obtained  before with elpa_auto-
	    tune_setup(3)

DESCRIPTION
     Sets the up-to-now best options for ELPA tunable parameters. Prior to call-
     ing 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				 Thu Nov 28 2024       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+15.1.quarterly>

home | help