We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d47e288 commit 42cbc9aCopy full SHA for 42cbc9a
benchmarks-libraries/build.gradle
@@ -36,14 +36,20 @@ task generateBenchmarkSources(type: JavaExec) {
36
}
37
38
jmh {
39
- include = ['immutableList', 'immutableMap', 'immutableSet']
40
- exclude = ['builder']
+ include = ['immutableList.*.Add'/*, 'immutableMap', 'immutableSet'*/]
+ /*exclude = ['builder']*/
41
+
42
+ profilers = ['gc']
43
44
+ resultFormat = "csv"
45
46
+ warmup = '200ms'
47
+ warmupIterations = 2
48
+ timeOnIteration = '200ms'
49
+ iterations = 2
50
- warmup = '1s'
- warmupIterations = 5
- timeOnIteration = '1s'
- iterations = 5
51
benchmarkMode = ['avgt']
52
53
benchmarkParameters = [
54
'size':['10000'],
55
'implementation': ['hash'],
0 commit comments