You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- using System;
- using System.IO;
-
- namespace Tensorflow.Eager
- {
- public class ContextOptions : DisposableObject
- {
- public ContextOptions() : base(c_api.TFE_NewContextOptions())
- { }
-
- /// <summary>
- /// Dispose any unmanaged resources related to given <paramref name="handle"/>.
- /// </summary>
- protected sealed override void DisposeUnmanagedResources(IntPtr handle)
- => c_api.TFE_DeleteContextOptions(_handle);
-
-
- public static implicit operator IntPtr(ContextOptions opts)
- => opts._handle;
- }
-
- }
|