diff options
| author | Florian Fischer <florian.fl.fischer@fau.de> | 2018-07-17 00:37:21 +0200 |
|---|---|---|
| committer | Florian Fischer <florian.fl.fischer@fau.de> | 2018-07-17 00:37:21 +0200 |
| commit | 08cdc1d18cd8371b38ef1a6bf663ca32bb951c9e (patch) | |
| tree | 5ef5c599df2251b237782a7bc29d406bc00672ca | |
| parent | 2026047c197bcf291733f8a4b3e5361f31e5cb77 (diff) | |
| download | allocbench-08cdc1d18cd8371b38ef1a6bf663ca32bb951c9e.tar.gz allocbench-08cdc1d18cd8371b38ef1a6bf663ca32bb951c9e.zip | |
remove memusage from dependencies and add common_targets
| -rw-r--r-- | bench_conprod.py | 2 | ||||
| -rw-r--r-- | bench_loop.py | 2 | ||||
| -rw-r--r-- | common_targets.py | 3 |
3 files changed, 5 insertions, 2 deletions
diff --git a/bench_conprod.py b/bench_conprod.py index 17c98eb..21e4b13 100644 --- a/bench_conprod.py +++ b/bench_conprod.py @@ -25,7 +25,7 @@ class Benchmark_ConProd(): self.results = {} def prepare(self, verbose=False): - req = ["build/bench_conprod", "build/memusage"] + req = ["build/bench_conprod"] for r in req: if not os.path.isfile(r): print(r, "not found") diff --git a/bench_loop.py b/bench_loop.py index c55f3ad..c48e682 100644 --- a/bench_loop.py +++ b/bench_loop.py @@ -25,7 +25,7 @@ class Benchmark_Loop(): self.results = {} def prepare(self, verbose=False): - req = ["build/bench_loop", "build/memusage"] + req = ["build/bench_loop"] for r in req: if not os.path.isfile(r): print(r, "not found") diff --git a/common_targets.py b/common_targets.py new file mode 100644 index 0000000..177168b --- /dev/null +++ b/common_targets.py @@ -0,0 +1,3 @@ +common_targets = {"klmalloc" : ("", "targets/libklmalloc.so"), + "libc" : ("", ""), # libc + "tcmalloc" : ("", "targets/libtcmalloc.so")} |
