aboutsummaryrefslogtreecommitdiff
path: root/loop.py
diff options
context:
space:
mode:
authorFlorian Fischer <florian.fl.fischer@fau.de>2018-09-17 13:55:17 +0200
committerFlorian Fischer <florian.fl.fischer@fau.de>2018-09-17 13:55:17 +0200
commit05c7eb3523242133054dec3edb297b78a2fd6acd (patch)
treebb21aacece4d9089f1542eb15af0d9f46263bb51 /loop.py
parent49ff2f44c8a6af85a09e38a66af93f56256c0d91 (diff)
downloadallocbench-05c7eb3523242133054dec3edb297b78a2fd6acd.tar.gz
allocbench-05c7eb3523242133054dec3edb297b78a2fd6acd.zip
reduce loop to a simple loop of malloc/free pairs
Diffstat (limited to 'loop.py')
-rw-r--r--loop.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/loop.py b/loop.py
index 6c75a61..3f7120f 100644
--- a/loop.py
+++ b/loop.py
@@ -9,7 +9,7 @@ class Benchmark_Loop( Benchmark ):
How allocations are freed can be changed with the benchmark
version""",
- self.cmd = "build/bench_loop{binary_suffix} 1.2 {nthreads} 1000000 {maxsize} 10"
+ self.cmd = "build/bench_loop{binary_suffix} {nthreads} 1000000 {maxsize}"
self.args = {
"maxsize" : [2 ** x for x in range(6, 16)],