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
37 lines (30 loc) · 781 Bytes
/
Context.cs
File metadata and controls
37 lines (30 loc) · 781 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
31
32
33
34
35
36
37
using System;
using System.Collections.Generic;
using System.Text;
namespace Tensorflow.Eager
{
public class Context : IDisposable
{
private IntPtr _handle;
public static int GRAPH_MODE = 0;
public static 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);
}
public void Dispose()
{
c_api.TFE_DeleteContext(_handle);
}
public bool executing_eagerly()
{
return false;
}
public static implicit operator IntPtr(Context ctx)
{
return ctx._handle;
}
}
}