Add recent gemm related changesets and various cleanups in perf-monitoring

This commit is contained in:
Gael Guennebaud
2019-01-29 11:53:47 +01:00
parent 8a06c699d0
commit efe02292a6
4 changed files with 68 additions and 43 deletions

View File

@@ -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');