|
NAMEelpa_autotune_deallocate - Deallocates an ELPA autotuning instance SYNOPSISFORTRAN INTERFACEuse elpa
callelpa%autotune_deallocate (tune_state, error)
type(elpa_autotune_t) :: tune_state ! the ELPA autotuning
object, created with elpa_autotune_setup(3)
C INTERFACE#include <elpa/elpa.h>
void elpa_autotune_deallocate (elpa_t handle,
elpa_autotune_t autotune_handle, int *error);
elpa_t handle; // the handle of an ELPA object, obtained
before with elpa_allocate(3)
DESCRIPTIONDeallocates 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 ALSOelpa_autotune_step(3) elpa_autotune_setup(3) elpa_autotune_deallocate(3)
|