1elpa_autotune_print_state(3)Library Functions Manualelpa_autotune_print_state(3)
2
3
4
6 elpa_autotune_print_state - prints the current state of an ELPA
7 autotuning object
8
9
11 FORTRAN INTERFACE
12 use elpa
13 class(elpa_t), pointer :: elpa class(elpa_autotune_t), pointer ::
14 autotune
15
16 call elpa%autotune_print_state (autotune, 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 integer, optional error: A error return code
24
25
26 C INTERFACE
27 #include <elpa/elpa.h>
28 elpa_t handle; elpa_autotune_t autotune_handle;
29
30 void elpa_autotune_print_state(elpa_t handle, elpa_autotune_t
31 autotune_handle, int *error):
32
33 With the definitions of the input and output variables:
34
35 elpa_t handle: The handle to the ELPA object
36
37 elpa_autotune_t handle: The handle to the ELPA autotune object
38 int *error: the error return code
39
40
41
42 DESCRIPTION
43 Prints the current state of an autotune object.
44
46 elpa_autotune_save_state(3) elpa_autotune_load_state(3)
47
48
49
50ELPA Tue Nov 13 2018 elpa_autotune_print_state(3)