forked from SciSharp/TensorFlow.NET
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathContext.cs
More file actions
30 lines (23 loc) · 811 Bytes
/
Context.cs
File metadata and controls
30 lines (23 loc) · 811 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
using System;
namespace Tensorflow.Eager
{
public class Context : DisposableObject
{
public const int GRAPH_MODE = 0;
public const int EAGER_MODE = 1;
public int default_execution_mode;
public Context(ContextOptions opts, Status status)
{
_handle = c_api.TFE_NewContext(opts, status);
status.Check(true);
}
/// <summary>
/// Dispose any unmanaged resources related to given <paramref name="handle"/>.
/// </summary>
protected sealed override void DisposeUnmanagedResources(IntPtr handle)
=> c_api.TFE_DeleteContext(_handle);
public bool executing_eagerly() => false;
public static implicit operator IntPtr(Context ctx)
=> ctx._handle;
}
}