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

FreeBSD Manual Pages

  
 
  

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

NAME
     elpa_autotune_load_state - loads a state of an ELPA autotuning object

SYNOPSIS
   FORTRAN INTERFACE
     use elpa
     class(elpa_t),  pointer  ::  elpa_handle class(elpa_autotune_t), pointer ::
     autotune_handle

     call elpa_handle%autotune_load_state (autotune_handle, filename, error)

     With the definitions of the input and output variables:

     class(elpa_t)	    :: elpa_handle
	    An instance of the ELPA object

     class(elpa_autotune_t) :: autotune_handle
	    An instance of the ELPA autotune object

     character(*)	    :: filename
	    The filename to be used for loading the settings

     integer, optional	    :: error
	    An error return code

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

     void  elpa_autotune_load_state(elpa_t  elpa_handle,  elpa_autotune_t  auto-
     tune_handle, const char *filename, int *error);

     With the definitions of the input and output variables:

     elpa_t  elpa_handle;
	    The handle to the ELPA object

     elpa_autotune_t  autotune_handle;
	    The handle to the ELPA autotune object

     const char  *filename;
	    The filename to load the settings

     int  *error;
	    The error return code

DESCRIPTION
     Loads  a  previously  stored  state of an autotune object. With the loaded,
     state the autotuning could be resumed.

SEE ALSO
     elpa_autotune_save_state(3)

ELPA				 Thu Nov 28 2024     elpa_autotune_load_state(3)

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

home | help