Skip to content

Commit ab42e81

Browse files
author
Abduqodiri Qurbonzoda
committed
Decrease benchmark parameters to run faster on teamcity
1 parent e809c6b commit ab42e81

File tree

2 files changed

+4
-6
lines changed

2 files changed

+4
-6
lines changed

benchmarks-libraries/build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -44,16 +44,16 @@ jmh {
4444
resultFormat = "csv"
4545

4646
warmup = '500ms'
47-
warmupIterations = 10
48-
timeOnIteration = '1000ms'
49-
iterations = 20
47+
warmupIterations = 7
48+
timeOnIteration = '500ms'
49+
iterations = 10
5050

5151
benchmarkMode = ['avgt']
5252

5353
benchmarkParameters = [
5454
'size':['1', '10', '100', '1000', '10000'],
5555
// 'implementation': ['hash'],
5656
'hashCodeType':['random', 'collision'],
57-
'immutablePercentage':['0.0', '50.0', '80.0']
57+
'immutablePercentage':['0.0', '80.0']
5858
]
5959
}

benchmarks-libraries/src/main/kotlin/generators/benchmarkSourceGenerator.kt

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,6 @@ abstract class SourceGenerator {
4646

4747
fun generate(out: PrintWriter) {
4848
out.println(readCopyrightNoticeFromProfile(File(".idea/copyright/apache_2_0.xml")))
49-
// Don't include generator class name in the message: these are built-in sources,
50-
// and we don't want to scare users with any internal information about our project
5149
out.println("// Auto-generated file. DO NOT EDIT!")
5250
out.println()
5351
out.println("package ${getPackage()}")

0 commit comments

Comments
 (0)