[K/N][perf] Added opportunity to set up tagged branch and added benchmarks plots for new MM

This commit is contained in:
Elena Lepilkina
2021-06-23 19:19:39 +03:00
committed by Space
parent 33a281c637
commit cdeda58ed4
6 changed files with 45 additions and 17 deletions
@@ -336,7 +336,12 @@ fun main(args: Array<String>) {
mapOf(
"normalize" to "true",
"exclude" to unstableBenchmarks.joinToString(",")
)),
),
mapOf(
"normalize" to "true",
"buildSuffix" to "(NewMM)"
)
),
"COMPILE_TIME" to listOf(mapOf(
"samples" to "HelloWorld,Videoplayer$platformSpecificBenchs",
"agr" to "samples"
@@ -418,7 +423,7 @@ fun main(args: Array<String>) {
execData = labels to values
execChart = Chartist.Line("#exec_chart",
getChartData(labels, execData.second),
getChartOptions(arrayOf("Geometric Mean (All)", "Geometric mean (Stable)"),
getChartOptions(arrayOf("Geometric Mean (All)", "Geometric mean (Stable)", "Geometric mean (New MM)"),
"Normalized time"))
buildsInfoPromise.then { builds ->
customizeChart(execChart, "exec_chart", js("$(\"#exec_chart\")"), builds, parameters)