Frees the aligned memory buffer allocated by mkl_malloc.
FORTRAN:
call mkl_free( a_ptr )
C:
mkl_free( a_ptr );
Name |
Type |
Description |
---|---|---|
a_ptr |
FORTRAN: POINTER C: void* |
Pointer to the buffer to be freed |
The function frees the buffer pointed by ptr and allocated by mkl_malloc().
See Example "mkl_malloc(), mkl_free(), mkl_mem_stat() Usage".