mirror of
https://gitlab.com/libeigen/eigen.git
synced 2026-04-10 11:34:33 +08:00
Add recent gemm related changesets and various cleanups in perf-monitoring
This commit is contained in:
@@ -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');
|
||||
|
||||
Reference in New Issue
Block a user