Enables Intel MKL to dynamically turn off memory management.
FORTRAN:
mm = mkl_disable_fast_mm
C:
mm = mkl_disable_fast_mm();
The Intel MKL memory management software is turned on by default. To turn it off dynamically before any Intel MKL function call, you can use the mkl_disable_fast_mm function similarly to the MKL_DISABLE_FAST_MM environment variable (See Intel® MKL User's Guide for details.) Run mkl_disable_fast_mm function to allocate and free memory from call to call. Note that disabling the Intel MKL memory management software negatively impacts performance of some Intel MKL routines, especially for small problem sizes.
The function return value 1 indicates that the Intel MKL memory management was turned off successfully. The function return value 0 indicates a failure.