MathNet.Numerics.Providers.LinearAlgebra.Mkl.MklLinearAlgebraProvider.DisableMemoryPool C# (CSharp) 메소드

DisableMemoryPool() 공개 메소드

Disable the MKL memory pool. May impact performance.
public DisableMemoryPool ( ) : void
리턴 void
        public void DisableMemoryPool()
        {
            if (SafeNativeMethods.query_capability(67) < 1)
            {
                throw new NotSupportedException("MKL Native Provider does not support memory management functions. Consider upgrading to a newer version.");
            }

            SafeNativeMethods.disable_fast_mm();
        }