[pypy-svn] r60175 - pypy/build/benchmem

hpk at codespeak.net hpk at codespeak.net
Thu Nov 27 10:10:50 CET 2008


Author: hpk
Date: Thu Nov 27 10:10:48 2008
New Revision: 60175

Modified:
   pypy/build/benchmem/report.py
Log:
formatting/title tweaks


Modified: pypy/build/benchmem/report.py
==============================================================================
--- pypy/build/benchmem/report.py	(original)
+++ pypy/build/benchmem/report.py	Thu Nov 27 10:10:48 2008
@@ -436,7 +436,7 @@
     def run_rest(self, filename="table-appprofiles.txt"):
         p = py.path.local(filename)
         rows = self.generate_table()
-        p.write(ReSTtable("Application Benchmarks: Average and Maximum heap + dirty static data size", rows))
+        p.write(ReSTtable("Application benchmarhs: Maximum and Average interpreter data", rows))
         print "wrote", p
 
 
@@ -458,7 +458,7 @@
             row = [name]
             for executable, result in zip(executables, results):
                 assert result.executable_short == executable, "ordering assumtion"
-                row.append("%.2f/**%s**" % (result.avg, result.max))
+                row.append("**%s** / %d" % (result.max, result.avg))
             rows.append(row)
         return rows
 



More information about the Pypy-commit mailing list