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

hpk at codespeak.net hpk at codespeak.net
Mon Sep 22 20:45:54 CEST 2008


Author: hpk
Date: Mon Sep 22 20:45:54 2008
New Revision: 58333

Modified:
   pypy/build/benchmem/report.py
   pypy/build/benchmem/runbench.py
Log:
add module docstrings for the two scripts


Modified: pypy/build/benchmem/report.py
==============================================================================
--- pypy/build/benchmem/report.py	(original)
+++ pypy/build/benchmem/report.py	Mon Sep 22 20:45:54 2008
@@ -1,3 +1,10 @@
+"""
+  report.py 
+
+  read bench.log file and produce some overviews. 
+  xxx extend, introduce options
+
+"""
 import py
 import smaps, benchtool
 

Modified: pypy/build/benchmem/runbench.py
==============================================================================
--- pypy/build/benchmem/runbench.py	(original)
+++ pypy/build/benchmem/runbench.py	Mon Sep 22 20:45:54 2008
@@ -1,8 +1,9 @@
 #!/usr/bin/env python
 """
-  benchtool.py [options] [benchname1.py] [benchname2.py]
+  runbench.py [options] [benchname1.py] [benchname2.py]
 
-  record memory usage for given benchmarks (or all if none specified). 
+  measure memory usage for given benchmarks (or all if none specified). 
+  and append results to a log file ("bench.log" by default).
 
 """
 import py



More information about the Pypy-commit mailing list