1elpa_autotune_save_state(3)Library Functions Manualelpa_autotune_save_state(3)
2
3
4

NAME

6       elpa_autotune_save_state - saves the current state of an ELPA
7       autotuning object
8
9

SYNOPSIS

11   FORTRAN INTERFACE
12       use elpa
13       class(elpa_t), pointer :: elpa class(elpa_autotune_t), pointer ::
14       autotune
15
16       call elpa%autotune_save_state (autotune, filename, error)
17
18       With the definitions of the input and output variables:
19
20       class(elpa_t)          elpa         an instance of the ELPA object
21              class(elpa_autotune_t) autotune     an instance of the ELPA
22              autotune object
23              character(*)           filename:   The filename to be used for
24              storing the settings
25              integer, optional      error:      A error return code
26
27
28   C INTERFACE
29       #include <elpa/elpa.h>
30       elpa_t handle; elpa_autotune_t autotune_handle;
31
32       void elpa_autotune_save_state(elpa_t handle, elpa_autotune_t
33       autotune_handle, const char *filename, int *error):
34
35       With the definitions of the input and output variables:
36
37       elpa_t handle:                The handle to the ELPA object
38
39       elpa_autotune_t handle:       The handle to the ELPA autotune object
40
41       const char *filename:         the filename to store the settings
42              int *error:                   the error return code
43
44
45
46       DESCRIPTION
47              Saves the current state of an autotune object. The state can be
48              restored with elpa_autotune_load_state.3 and the autoutuning
49              could be resumed.
50

SEE ALSO

52       elpa_autotune_load_state(3)
53
54
55
56ELPA                            Tue Nov 13 2018    elpa_autotune_save_state(3)
Impressum