elpa_autotune_deallocate - Deallocates an ELPA autotuning instance
use elpa
class(elpa_t), pointer :: elpa class(elpa_autotune_t), pointer :: tune_state
call
elpa%autotune_deallocate (tune_state, error)
With the definitions of the input and output variables:
type(elpa_autotune_t) ::
tune_state ! the ELPA autotuning object, created
with
elpa_autotune_setup(3)
integer, optional ::
error ! the returned error code
#include <elpa/elpa.h>
elpa_t handle; elpa_autotune_t autotune_handle;
void
elpa_autotune_deallocate (
elpa_t handle,
elpa_autotune_t autotune_handle,
int *error);
With the definitions of the input and output variables:
elpa_t
handle; // the handle of an ELPA object, obtained before with
elpa_allocate(3)
elpa_autotune_t
autotune_handle; // the handle of an ELPA object,
obtained before with
elpa_autotune_setup(3)
int
*error; // the returned error code
Deallocates an ELPA autotuning instance.
Prior to calling the
elpa_autotune_deallocate method, an ELPA autotuning object must have been
created. See
elpa_autotune_setup(3)
elpa_autotune_step(3)
elpa_autotune_setup(3)
elpa_autotune_deallocate(3)