forked from SciSharp/TensorFlow.NET
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStatus.cs
More file actions
37 lines (31 loc) · 800 Bytes
/
Status.cs
File metadata and controls
37 lines (31 loc) · 800 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
{
public class Status : IDisposable
{
private readonly IntPtr _handle;
public IntPtr Handle => _handle;
/// <summary>
/// Error message
/// </summary>
public string Message => c_api.TF_Message(_handle);
/// <summary>
/// Error code
/// </summary>
public TF_Code Code => c_api.TF_GetCode(_handle);
public Status()
{
_handle = c_api.TF_NewStatus();
}
public void SetStatus(TF_Code code, string msg)
{
c_api.TF_SetStatus(_handle, code, msg);
}
public void Dispose()
{
c_api.TF_DeleteStatus(_handle);
}
}
}