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
61 lines (53 loc) · 1.47 KB
/
Status.cs
File metadata and controls
61 lines (53 loc) · 1.47 KB
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
using System;
using System.Collections.Generic;
using System.Text;
namespace Tensorflow
{
/// <summary>
/// TF_Status holds error information. It either has an OK code, or
/// else an error code with an associated error message.
/// </summary>
public class Status : IDisposable
{
private readonly IntPtr _handle;
/// <summary>
/// Error message
/// </summary>
public string Message => c_api.StringPiece(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);
}
/// <summary>
/// Check status
/// Throw exception with error message if code != TF_OK
/// </summary>
public void Check(bool throwException = false)
{
if(Code != TF_Code.TF_OK)
{
Console.WriteLine(Message);
if (throwException)
{
throw new Exception(Message);
}
}
}
public static implicit operator IntPtr(Status status)
{
return status._handle;
}
public void Dispose()
{
c_api.TF_DeleteStatus(_handle);
}
}
}