1elpa_autotune_set_best(3)  Library Functions Manual  elpa_autotune_set_best(3)
2
3
4

NAME

6       elpa_autotune_set_best - Sets the tunable parameters to the up-to-now
7       best solution
8
9       Before the autotuning options can be set, an autotuning step has to be
10       done elpa_autotune_step(3)
11

SYNOPSIS

13   FORTRAN INTERFACE
14       use elpa
15       class(elpa_t), pointer :: elpa class(elpa_autotune_t), pointer ::
16       tune_state
17
18       callelpa%autotune_set_best (tune_state)
19
20       With the definitions of the input and output variables:
21
22       type(elpa_autotune_t) :: tune_state  !  the ELPA autotuning object,
23       created with elpa_autotune_setup(3)
24
25   C INTERFACE
26       #include <elpa/elpa.h>
27       elpa_t handle; elpa_autotune_t autotune_handle;
28
29       void elpa_autotune_set_best (elpa_t handle, elpa_autotune_t
30       autotune_handle);
31
32       With the definitions of the input and output variables:
33
34       elpa_t handle;  // the handle of an ELPA object, obtained before with
35       elpa_allocate(3)
36       elpa_autotune_t autotune_handle;  // the handle of an ELPA object,
37       obtained before with elpa_autotune_setup(3)
38
39

DESCRIPTION

41       Sets the up-to-now best options for ELPA tunable parameters. Prior to
42       calling the elpa_autotune_set_best method, an ELPA autotuning step must
43       have been performed. See elpa_autotune_set_best(3)
44

SEE ALSO

46       elpa_autotune_step(3) elpa_autotune_setup(3)
47       elpa_autotune_deallocate(3)
48
49
50
51
52ELPA                            Tue Nov 28 2017      elpa_autotune_set_best(3)
Impressum