MathNet.Numerics.Providers.LinearAlgebra.Mkl.MklLinearAlgebraProvider.MemoryStatistics C# (CSharp) Method

MemoryStatistics() public method

Retrieves information about the MKL memory pool.
public MemoryStatistics ( int &allocatedBuffers ) : long
allocatedBuffers int On output, returns the number of memory buffers allocated.
return long
        public long MemoryStatistics(out int allocatedBuffers)
        {
            if (SafeNativeMethods.query_capability(67) < 1)
            {
                throw new NotSupportedException("MKL Native Provider does not support memory management functions. Consider upgrading to a newer version.");
            }

               return SafeNativeMethods.mem_stat(out allocatedBuffers);
        }