/// <summary>
 /// Retrieves information about the MKL memory pool.
 /// </summary>
 /// <param name="allocatedBuffers">On output, returns the number of memory buffers allocated.</param>
 /// <returns>Returns the number of bytes allocated to all memory buffers.</returns>
 public long MemoryStatistics(out int allocatedBuffers)
 {
     return(MklProvider.MemoryStatistics(out allocatedBuffers));
 }