File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
examples/kotlin-multiplatform
runtime/commonMain/src/kotlinx/benchmark Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -80,7 +80,7 @@ benchmark {
8080 iterations = 5
8181 iterationTime = 300 // time in ms per iteration
8282 iterationTimeUnit = " ms" // time in ms per iteration
83- advanced(" nativeGCAfterIteration" , " true" )
83+ advanced(" nativeGCAfterIteration" , true )
8484 }
8585
8686 csv {
Original file line number Diff line number Diff line change @@ -175,7 +175,7 @@ private object JsonBenchmarkReportFormatter : BenchmarkReportFormatter() {
175175 ${result.params.entries.joinToString(separator = " ,\n " ) { " \" ${it.key} \" : \" ${it.value} \" " }}
176176 },
177177 "nativeFork" : "${result.config.nativeFork.toText()} ",
178- "nativeGCAfterIteration" : " ${result.config.nativeGCAfterIteration} " ,
178+ "nativeGCAfterIteration" : ${result.config.nativeGCAfterIteration} ,
179179 "primaryMetric" : {
180180 "score": ${result.score} ,
181181 "scoreError": ${result.error} ,
You can’t perform that action at this time.
0 commit comments