Hello everyone,
I have an application where I have to create some worker threads. These threads call a function inside a dll, where mkl is used.
I have read some articles about memory leaks, and they advise to use these functions:
MKL_Disable_Fast_MM();
mkl_disable_fast_mm();
MKL_Thread_Free_Buffers();
mkl_thread_free_buffers();
But they are not changing anything, so the memory is still not deallocated.
Any solution? There is another topic (https://software.intel.com/en-us/forums/intel-math-kernel-library/topic/...), that seems to be the same problem as mine.
Thanks you very much,