elpa_autotune_deallocate - Man Page

Deallocates an ELPA autotuning instance

Synopsis

Fortran Interface

use elpa
class(elpa_t), pointer :: elpa class(elpa_autotune_t), pointer :: tune_state

callelpa%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

C Interface

#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

Description

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)

See Also

elpa_autotune_step(3) elpa_autotune_setup(3) elpa_autotune_deallocate(3)

Referenced By

elpa_autotune_set_best(3), elpa_autotune_setup(3), elpa_autotune_step(3).

Tue Nov 28 2017 ELPA