From 130765de719a3ddc475284e13749d09ff371a8e1 Mon Sep 17 00:00:00 2001 From: Florian Fischer Date: Fri, 1 Feb 2019 16:35:20 +0100 Subject: rework build system #1 each benchmark has its own Makefile which must put it's binaries into OBJDIR which is added to the PATH during execution. --- src/loop.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/loop.py') diff --git a/src/loop.py b/src/loop.py index d58b4e2..81ddf19 100644 --- a/src/loop.py +++ b/src/loop.py @@ -9,14 +9,14 @@ class Benchmark_Loop( Benchmark ): How allocations are freed can be changed with the benchmark version""", - self.cmd = "build/bench_loop{binary_suffix} {nthreads} 1000000 {maxsize}" + self.cmd = "loop{binary_suffix} {nthreads} 1000000 {maxsize}" self.args = { "maxsize" : [2 ** x for x in range(6, 16)], "nthreads" : range(1, multiprocessing.cpu_count() * 2 + 1) } - self.requirements = ["build/bench_loop"] + self.requirements = ["loop"] super().__init__() def summary(self): -- cgit v1.2.3