/// <summary>
 /// Releases native memory previously allocated by the allocator
 /// </summary>
 /// <param name="memory"></param>
 internal void FreeMemory(IntPtr memory)
 {
     NativeMethods.ONNXRuntimeAllocatorFree(handle, memory);
 }