Visible to Intel only — GUID: GUID-683DB582-85CC-43A8-9A68-25A61EE5EEDB
Visible to Intel only — GUID: GUID-683DB582-85CC-43A8-9A68-25A61EE5EEDB
DftiFreeDescriptorDM
Frees memory allocated for a descriptor.
Status = DftiFreeDescriptorDM(handle)
- mkl_cdft.f90
- handle
- The descriptor handle. Must be valid, that is, created in a call to DftiCreateDescriptorDM.
handle |
The descriptor handle. Memory allocated for the handle is released on output. |
This function frees up all memory allocated for a descriptor in a particular MPI process. Call the DftiFreeDescriptorDM function to delete the descriptor handle. Upon successful completion of DftiFreeDescriptorDM the descriptor handle is no longer valid.
The function returns DFTI_NO_ERROR when completes successfully. If the function fails, it returns a value of another error class constant (for the list of constants, refer to Error Codes).
INTERFACE DftiFreeDescriptorDM INTEGER(4) FUNCTION DftiFreeDescriptorDM(handle) TYPE(DFTI_DESCRIPTOR_DM), POINTER :: handle END FUNCTION END INTERFACE