free_buffers() private method

private free_buffers ( ) : void
return void
        /// <summary>
        /// Frees the memory allocated to the MKL memory pool.
        /// </summary>
        public void FreeBuffers()
        {
            if (SafeNativeMethods.query_capability((int)ProviderConfig.Memory) < 1)
            {
                throw new NotSupportedException("MKL Native Provider does not support memory management functions. Consider upgrading to a newer version.");
            }

            SafeNativeMethods.free_buffers();
        }
 /// <summary>
 /// Frees the memory allocated to the MKL memory pool.
 /// </summary>
 public void FreeBuffers()
 {
     SafeNativeMethods.free_buffers();
 }