[pypy-commit] extradoc extradoc: ignore some benchmarks

cfbolz noreply at buildbot.pypy.org
Fri Aug 17 15:43:58 CEST 2012


Author: Carl Friedrich Bolz <cfbolz at gmx.de>
Branch: extradoc
Changeset: r4678:afb71c1c90ed
Date: 2012-08-17 14:37 +0200
http://bitbucket.org/pypy/extradoc/changeset/afb71c1c90ed/

Log:	ignore some benchmarks

diff --git a/talk/dls2012/benchmarks/parse.py b/talk/dls2012/benchmarks/parse.py
--- a/talk/dls2012/benchmarks/parse.py
+++ b/talk/dls2012/benchmarks/parse.py
@@ -19,6 +19,13 @@
     'conv3x3(3)': 'conv3x3(1000000,3)',
 }
 
+IGNORE = {
+    "conv3(1e5)",
+    "conv5(1e5)",
+    "conv5(1e6)",
+    "conv3x3(1000000,3)",
+}
+
 def main(name):
     interp = None
     res = {}
@@ -35,6 +42,8 @@
                 bench, rest = line.split(':')
                 bench = bench.replace(" ", "")
                 bench = NAME_REPL.get(bench, bench)
+                if bench in IGNORE:
+                    continue
                 if '+-' in rest:
                     a, d = rest.split('+-')
                     res.setdefault(bench, {})[interp] = float(a), float(d)


More information about the pypy-commit mailing list