Skip to content

Commit

Permalink
update scripts (2)
Browse files Browse the repository at this point in the history
  • Loading branch information
bachish committed May 31, 2024
1 parent 9a4e8d3 commit 999800b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions benchmarks/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,6 @@ jmh {
failOnError = false
resultFormat = "CSV"
jvmArgs.addAll("-Xmx128g")
val buildDir = project.layout.buildDirectory.get().toString()
humanOutputFile = project.file("${buildDir}/reports/jmh/human.txt") // human-readable output file
resultsFile = project.file("${buildDir}/reports/jmh/results.txt") // results file
profilers = listOf("gc")


Expand All @@ -52,6 +49,9 @@ jmh {
} else {
val params = objects.listProperty<String>().value(getArgs(property(dataset).toString()))
benchmarkParameters.put("fileName", params)
val buildDir = project.layout.buildDirectory.get().toString()
humanOutputFile = project.file("${buildDir}/reports/jmh/$dataset/human.txt") // human-readable output file
resultsFile = project.file("${buildDir}/reports/jmh/$dataset/results.txt") // results file
}

//filter on tools
Expand Down

0 comments on commit 999800b

Please sign in to comment.