[pypy-commit] benchmarks multithread-runner: add configs for new benchmarks

Raemi pypy.commits at gmail.com
Thu Jul 11 04:46:46 EDT 2019


Author: Remi Meier <remi.meier at gmail.com>
Branch: multithread-runner
Changeset: r386:6ce1f76df158
Date: 2016-07-22 10:16 +0200
http://bitbucket.org/pypy/benchmarks/changeset/6ce1f76df158/

Log:	add configs for new benchmarks

diff --git a/multithread/config-all-long.json b/multithread/config-all-long.json
--- a/multithread/config-all-long.json
+++ b/multithread/config-all-long.json
@@ -61,6 +61,22 @@
             "file": "perlin_noise/perlin_noise.py",
             "PYTHONPATH": "..",
             "args": ["5"]
+        },
+
+        "regex-dna": {
+            "file": "regex-dna/regex-dna.py",
+            "PYTHONPATH": ".."
+        },
+
+        "fannkuch-redux": {
+            "file": "fannkuch-redux/fannkuch-redux.py",
+            "PYTHONPATH": "..",
+            "args": ["10"]
+        },
+
+        "k-nucleotide": {
+            "file": "k-nucleotide/k-nucleotide.py",
+            "PYTHONPATH": ".."
         }
 
     }
diff --git a/multithread/config-all-short.json b/multithread/config-all-short.json
--- a/multithread/config-all-short.json
+++ b/multithread/config-all-short.json
@@ -61,6 +61,22 @@
             "file": "perlin_noise/perlin_noise.py",
             "PYTHONPATH": "..",
             "args": ["4"]
+        },
+
+        "regex-dna": {
+            "file": "regex-dna/regex-dna.py",
+            "PYTHONPATH": ".."
+        },
+
+        "fannkuch-redux": {
+            "file": "fannkuch-redux/fannkuch-redux.py",
+            "PYTHONPATH": "..",
+            "args": ["9"]
+        },
+
+        "k-nucleotide": {
+            "file": "k-nucleotide/k-nucleotide.py",
+            "PYTHONPATH": ".."
         }
 
     }
diff --git a/multithread/config-fannkuch-redux.json b/multithread/config-fannkuch-redux.json
new file mode 100644
--- /dev/null
+++ b/multithread/config-fannkuch-redux.json
@@ -0,0 +1,21 @@
+{
+    "defaults": {
+        "file": null,
+        "threads": [1, 2, 4, 8],
+        "vmstarts": 3,
+        "warmiters": 3,
+        "PYTHONPATH": ".",
+        "args": [],
+        "cwd": "."
+    },
+
+    "benchs": {
+        "fannkuch-redux": {
+            "file": "fannkuch-redux/fannkuch-redux.py",
+            "PYTHONPATH": "..",
+            "vmstarts": 3,
+            "warmiters": 3,
+            "args": ["9"]
+        }
+    }
+}
diff --git a/multithread/config-k-nucleotide.json b/multithread/config-k-nucleotide.json
new file mode 100644
--- /dev/null
+++ b/multithread/config-k-nucleotide.json
@@ -0,0 +1,20 @@
+{
+    "defaults": {
+        "file": null,
+        "threads": [1, 2, 4, 8],
+        "vmstarts": 3,
+        "warmiters": 3,
+        "PYTHONPATH": ".",
+        "args": [],
+        "cwd": "."
+    },
+
+    "benchs": {
+        "k-nucleotide": {
+            "file": "k-nucleotide/k-nucleotide.py",
+            "PYTHONPATH": "..",
+            "vmstarts": 3,
+            "warmiters": 3
+        }
+    }
+}
diff --git a/multithread/config-regex-dna.json b/multithread/config-regex-dna.json
new file mode 100644
--- /dev/null
+++ b/multithread/config-regex-dna.json
@@ -0,0 +1,20 @@
+{
+    "defaults": {
+        "file": null,
+        "threads": [1, 2, 4, 8],
+        "vmstarts": 3,
+        "warmiters": 3,
+        "PYTHONPATH": ".",
+        "args": [],
+        "cwd": "."
+    },
+
+    "benchs": {
+        "regex-dna": {
+            "file": "regex-dna/regex-dna.py",
+            "PYTHONPATH": "..",
+            "vmstarts": 3,
+            "warmiters": 3
+        }
+    }
+}
diff --git a/multithread/config-shootout-benchs-short.json b/multithread/config-shootout-benchs-short.json
new file mode 100644
--- /dev/null
+++ b/multithread/config-shootout-benchs-short.json
@@ -0,0 +1,31 @@
+{
+    "defaults": {
+        "file": null,
+        "threads": [1, 2, 4, 8],
+        "vmstarts": 1,
+        "warmiters": 1,
+        "PYTHONPATH": ".",
+        "args": [],
+        "cwd": "."
+    },
+
+    "benchs": {
+        "regex-dna": {
+            "file": "regex-dna/regex-dna.py",
+            "PYTHONPATH": ".."
+        },
+
+        "fannkuch-redux": {
+            "file": "fannkuch-redux/fannkuch-redux.py",
+            "PYTHONPATH": "..",
+            "args": ["9"]
+        },
+
+        "k-nucleotide": {
+            "file": "k-nucleotide/k-nucleotide.py",
+            "PYTHONPATH": ".."
+        }
+
+    }
+
+}


More information about the pypy-commit mailing list