diff options
| author | Florian Fischer <florian.fl.fischer@fau.de> | 2019-08-10 21:44:25 +0200 |
|---|---|---|
| committer | Florian Fischer <florian.fl.fischer@fau.de> | 2019-08-10 21:44:25 +0200 |
| commit | 58d08e433c956af1eacb60d36134d65494007a9b (patch) | |
| tree | 95f613445b2fba940a531919f89594a5cf9495da | |
| parent | 5ad4e69fe7a0841043605b32058e87d4fd167a5d (diff) | |
| download | allocbench-58d08e433c956af1eacb60d36134d65494007a9b.tar.gz allocbench-58d08e433c956af1eacb60d36134d65494007a9b.zip | |
don't copy benchmark.allocators again
| -rw-r--r-- | src/benchmarks/mysql.py | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/benchmarks/mysql.py b/src/benchmarks/mysql.py index 8b9bd1c..a1c23f9 100644 --- a/src/benchmarks/mysql.py +++ b/src/benchmarks/mysql.py @@ -1,4 +1,3 @@ -import copy import multiprocessing import numpy as np import os @@ -31,11 +30,6 @@ class Benchmark_MYSQL(Benchmark): self.name = "mysql" self.descrition = """See sysbench documentation.""" - # mysqld fails with hoard somehow - self.allocators = copy.copy(allocators) - if "Hoard" in self.allocators: - del(self.allocators["Hoard"]) - self.args = {"nthreads": Benchmark.scale_threads_for_cpus(1)} self.cmd = cmd self.server_cmds = [server_cmd] |
