forked from SciSharp/TensorFlow.NET
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTFNetApiTest.cs
More file actions
37 lines (33 loc) · 866 Bytes
/
TFNetApiTest.cs
File metadata and controls
37 lines (33 loc) · 866 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 TensorFlowNET.UnitTest
{
public class TFNetApiTest
{
public bool Equal(float[] f1, float[] f2)
{
bool ret = false;
var tolerance = .000001f;
for (var i = 0; i < f1.Length; i++)
{
ret = Math.Abs(f1[i] - f2[i]) <= tolerance;
if (!ret)
break;
}
return ret;
}
public bool Equal(double[] d1, double[] d2)
{
bool ret = false;
var tolerance = .000000000000001f;
for (var i = 0; i < d1.Length; i++)
{
ret = Math.Abs(d1[i] - d2[i]) <= tolerance;
if (!ret)
break;
}
return ret;
}
}
}