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

FreeBuffers() 공개 메소드

Frees the memory allocated to the MKL memory pool.
public FreeBuffers ( ) : void
리턴 void
        public void FreeBuffers()
        {
            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.free_buffers();
        }