-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathJemBenchmarkJobAttribute.cs
87 lines (76 loc) · 2.83 KB
/
JemBenchmarkJobAttribute.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
using System;
using System.Collections.Generic;
using System.Text;
using BenchmarkDotNet.Engines;
using BenchmarkDotNet.Environments;
using BenchmarkDotNet.Jobs;
using BenchmarkDotNet.Configs;
using BenchmarkDotNet.Order;
using BenchmarkDotNet.Toolchains.InProcess;
namespace jemalloc.Benchmarks
{
[AttributeUsage(AttributeTargets.Class | AttributeTargets.Assembly, AllowMultiple = false, Inherited = true)]
public class JemBenchmarkJobAttribute : Attribute, IConfigSource
{
public JemBenchmarkJobAttribute(
RunStrategy RunStrategy = RunStrategy.Throughput,
int TargetCount = DefaultValue,
int InvocationCount = DefaultValue,
int WarmupCount = DefaultValue
)
{
Job job = new Job()
.WithGcAllowVeryLargeObjects(true)
.WithId("JemBenchmark");
job.Env.Platform = Platform.X64;
job.Env.Runtime = Runtime.Core;
job.Env.Jit = Jit.RyuJit;
if (WarmupCountOverride.HasValue)
{
job.Run.WarmupCount = WarmupCountOverride.Value;
}
else if (WarmupCount != DefaultValue)
{
job.Run.WarmupCount = WarmupCount;
}
if (TargetCountOverride.HasValue)
{
job.Run.TargetCount = TargetCountOverride.Value;
}
else if (TargetCount != DefaultValue)
{
job.Run.TargetCount = TargetCount;
}
if (InvocationCountOverride.HasValue)
{
job.Run.InvocationCount = InvocationCountOverride.Value;
}
else if (InvocationCount != DefaultValue)
{
job.Run.InvocationCount = InvocationCount;
}
if (ColdStartOverride.HasValue)
{
job.Run.RunStrategy = ColdStartOverride.Value ? RunStrategy.ColdStart : RunStrategy.Throughput;
}
else
{
job.Run.RunStrategy = RunStrategy;
}
job.Infrastructure.Toolchain = new InProcessToolchain(TimeSpan.FromMinutes(TimeoutInMinutes), BenchmarkActionCodegen.ReflectionEmit, true);
Config = ManualConfig.CreateEmpty()
.With(job);
}
#region Properties
public IConfig Config { get; }
public int TimeoutInMinutes { get; set; } = 10;
public static int? TargetCountOverride { get; set; } = null;
public static int? WarmupCountOverride { get; set; } = null;
public static int? InvocationCountOverride { get; set; } = null;
public static bool? ColdStartOverride { get; set; } = null;
#endregion
#region Fields
private const int DefaultValue = -1;
#endregion
}
}