Author: Carl Friedrich Bolz <[email protected]>
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)
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to