1elpa_autotune_deallocate(3)Library Functions Manualelpa_autotune_deallocate(3)
2
3
4
6 elpa_autotune_deallocate - Deallocates an ELPA autotuning instance
7
8
10 FORTRAN INTERFACE
11 use elpa
12 class(elpa_t), pointer :: elpa class(elpa_autotune_t), pointer ::
13 tune_state
14
15 callelpa%autotune_deallocate (tune_state, error)
16
17 With the definitions of the input and output variables:
18
19 type(elpa_autotune_t) :: tune_state ! the ELPA autotuning object,
20 created with elpa_autotune_setup(3)
21 integer, optional :: error ! the returned error code
22
23 C INTERFACE
24 #include <elpa/elpa.h>
25 elpa_t handle; elpa_autotune_t autotune_handle;
26
27 void elpa_autotune_deallocate (elpa_t handle, elpa_autotune_t
28 autotune_handle, int *error);
29
30 With the definitions of the input and output variables:
31
32 elpa_t handle; // the handle of an ELPA object, obtained before with
33 elpa_allocate(3)
34 elpa_autotune_t autotune_handle; // the handle of an ELPA object,
35 obtained before with elpa_autotune_setup(3)
36 int *error; // the returned error code
37
39 Deallocates an ELPA autotuning instance. Prior to calling the
40 elpa_autotune_deallocate method, an ELPA autotuning object must have
41 been created. See elpa_autotune_setup(3)
42
44 elpa_autotune_step(3) elpa_autotune_setup(3)
45 elpa_autotune_deallocate(3)
46
47
48
49
50ELPA Tue Nov 28 2017 elpa_autotune_deallocate(3)