[mlpack-svn] r15970 - mlpack/conf/jenkins-conf/benchmark/util

fastlab-svn at coffeetalk-1.cc.gatech.edu fastlab-svn at coffeetalk-1.cc.gatech.edu
Wed Oct 9 15:46:26 EDT 2013


Author: rcurtin
Date: Wed Oct  9 15:46:26 2013
New Revision: 15970

Log:
Add overall-timing-chart type to divs that contain the overall timing charts
(the ones that show total benchmark time over builds), so that those can be
'display: none'd for the main mlpack benchmark page, because that information is
probably only useful to people actually working with the build server and not
prospective users.


Modified:
   mlpack/conf/jenkins-conf/benchmark/util/template.py

Modified: mlpack/conf/jenkins-conf/benchmark/util/template.py
==============================================================================
--- mlpack/conf/jenkins-conf/benchmark/util/template.py	(original)
+++ mlpack/conf/jenkins-conf/benchmark/util/template.py	Wed Oct  9 15:46:26 2013
@@ -22,9 +22,9 @@
 <div class="row">
 <div class="col-lg-12">
 <div class="text-center"><h4>Benchmarks</h4></div>
-<div class="container--graph collapse-group well">
+<div class="container--graph collapse-group well overall-timing-chart">
 <div class="container__topContent">
-<div><img class="center--image" src="%(topLineChart)s" alt="" style="max-width: 100%%;"></div>
+<div class="overall-timing-chart"><img class="center--image" src="%(topLineChart)s" alt="" style="max-width: 100%%;"></div>
 </div></div>%(methods)s</div></div></div>
 <div class="pagination--holder">
 <ul class="pagination">%(pagination)s</ul></div>
@@ -117,7 +117,7 @@
 
 resultsPanel = """
 <div class="panel-body">
-<div><img class="panel" src="%(lineChart)s" alt="" style="max-width: 100%%;"></div>
+<div class="overall-timing-chart"><img class="panel" src="%(lineChart)s" alt="" style="max-width: 100%%;"></div>
 <div><img class="panel" src="%(barChart)s" alt="" style="max-width: 100%%;"></div>
 <div><div class="panel">
 <table class="table table-striped">



More information about the mlpack-svn mailing list