mkl_free

Frees the aligned memory buffer allocated by mkl_malloc.

Syntax

FORTRAN:

call mkl_free( a_ptr )

C:

mkl_free( a_ptr );

Include Files

Input Parameters

Name

Type

Description

a_ptr

FORTRAN: POINTER

C: void*

Pointer to the buffer to be freed

Description

The function frees the buffer pointed by ptr and allocated by mkl_malloc().

See Example "mkl_malloc(), mkl_free(), mkl_mem_stat() Usage".


Submit feedback on this help topic