aboutsummaryrefslogtreecommitdiffhomepage
path: root/bench/perf_monitoring/resources
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2019-01-29 11:53:47 +0100
committerGravatar Gael Guennebaud <g.gael@free.fr>2019-01-29 11:53:47 +0100
commitefe02292a6f45a664d2012ee208b41b28b65cb14 (patch)
tree4ed33c19abac69e8ad94f8eff3f412ee7f23b2ca /bench/perf_monitoring/resources
parent8a06c699d0f8d47f4fc4f259a21574b4719792b2 (diff)
Add recent gemm related changesets and various cleanups in perf-monitoring
Diffstat (limited to 'bench/perf_monitoring/resources')
-rw-r--r--bench/perf_monitoring/resources/chart_footer.html14
1 files changed, 9 insertions, 5 deletions
diff --git a/bench/perf_monitoring/resources/chart_footer.html b/bench/perf_monitoring/resources/chart_footer.html
index 8acc69f14..e8ef0a270 100644
--- a/bench/perf_monitoring/resources/chart_footer.html
+++ b/bench/perf_monitoring/resources/chart_footer.html
@@ -14,12 +14,16 @@
.tickFormat(function(d){return changesets[d]})
.rotateLabels(-90);
- chart.y(function(datum){ return datum.v; })
- .yAxis.options({
- axisLabel: customSettings.YLABEL || 'GFlops'/*,
- tickFormat: function(val){ return d3.format('.0f')(val) + ' GFlops'; }*/
- });
+ chart.y(function(datum){ return datum.v; })
+ .yAxis.options({
+ axisLabel: customSettings.YLABEL || 'GFlops'/*,
+ tickFormat: function(val){ return d3.format('.0f')(val) + ' GFlops'; }*/
+ });
+ chart.tooltip.headerFormatter(function(d) { return changesets[d]
+ + ' <p style="font-weight:normal;text-align: left;">'
+ + changesets_details[d] + "</p>"; });
+
//chart.useInteractiveGuideline(true);
d3.select('#chart').datum(data).call(chart);
var plot = d3.select('#chart > g');