-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathBenchmark.cs
53 lines (43 loc) · 1.19 KB
/
Benchmark.cs
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
using System.Threading;
namespace Benchmarking
{
public abstract class Benchmark
{
protected const int LENGTH = int.MaxValue / 64;
public virtual string GetDescription()
{
return "Base Benchmark Class - You should never see this!";
}
public virtual ulong Run(CancellationToken cancellationToken)
{
return 0uL;
}
public virtual void Initialize()
{
}
public virtual ulong GetComparison(Options options)
{
return 0;
}
/// <summary>
/// Returns the data throughput achieved per second adjusted to the time the benchmark took, in bytes
/// </summary>
/// <returns></returns>
public virtual double GetDataThroughput(ulong iterations)
{
return 0.0d;
}
public virtual string[] GetCategories()
{
return new[] {"none"};
}
public virtual string GetName()
{
return GetType().Name.ToLowerInvariant();
}
public virtual int GetRuntimeInMilliseconds()
{
return 5000;
}
}
}