[pypy-commit] extradoc extradoc: minor changes to parser

fijal noreply at buildbot.pypy.org
Thu Aug 16 17:35:44 CEST 2012


Author: Maciej Fijalkowski <fijall at gmail.com>
Branch: extradoc
Changeset: r4625:c4914e846b17
Date: 2012-08-16 17:30 +0200
http://bitbucket.org/pypy/extradoc/changeset/c4914e846b17/

Log:	minor changes to parser

diff --git a/talk/iwtc11/benchmarks/parse.py b/talk/iwtc11/benchmarks/parse.py
--- a/talk/iwtc11/benchmarks/parse.py
+++ b/talk/iwtc11/benchmarks/parse.py
@@ -4,7 +4,7 @@
 def main(name):
     interp = None
     res = {}
-    order = ['python2.7', 'python2.6 psyco-wrapper.py', 'pypy --jit enable_opts=intbounds:rewrite:virtualize:heap', 'pypy', 'gcc -O2', 'gcc -O3 -march=native -fno-tree-vectorize']
+    order = ['python2.7', 'pypy --jit enable_opts=intbounds:rewrite:virtualize:string:earlyforce:pure:heap:ffi', 'pypy', 'gcc -O3 -march=native -fno-tree-vectorize', 'luajit', 'luajit -O-loop']
     with open(name) as f:
         for line in f:
             line = line.strip("\n")
@@ -35,7 +35,9 @@
         print "\hline"
 
 if __name__ == '__main__':
+    if len(sys.argv) < 2:
+        print "Usage: parse.py <input file>"
     try:
-        main('new_result.txt')
+        main(sys.argv[1])
     except:
         pdb.post_mortem(sys.exc_info()[2])
diff --git a/talk/iwtc11/benchmarks/results-newer b/talk/iwtc11/benchmarks/results-newer
--- a/talk/iwtc11/benchmarks/results-newer
+++ b/talk/iwtc11/benchmarks/results-newer
@@ -87,8 +87,6 @@
 FFT(1024, 32768): 469.070852995
 FFT(1048576, 2): 58.9324650764
 
-python2.6 psyco-wrapper.py
-
 luajit
 sqrt(int): 0.834000 +- 0.006992
 sqrt(float): 0.834000 +- 0.005164


More information about the pypy-commit mailing list