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 : IDisposable //TODO! Eli: Shouldn't this inherieting DisposableObject?
- {
- private IntPtr _handle;
-
- public ContextOptions()
- {
- _handle = c_api.TFE_NewContextOptions();
- }
-
- public void Dispose()
- {
- c_api.TFE_DeleteContextOptions(_handle);
- }
-
- public static implicit operator IntPtr(ContextOptions opts)
- {
- return opts._handle;
- }
- }
- }
|